Skip to content

Commit ad4e600

Browse files
gsomlostffrdhrn
authored andcommitted
drivers/soc/litex: remove 8-bit subregister option
Since upstream LiteX recommends that Linux support be limited to designs configured with 32-bit CSR subregisters (see commit a2b71fde in upstream LiteX, https://github.com/enjoy-digital/litex), remove the option to select 8-bit subregisters, significantly reducing the complexity of LiteX CSR (MMIO register) accessor methods. NOTE: for details on the underlying mechanics of LiteX CSR registers, see https://github.com/enjoy-digital/litex/wiki/CSR-Bus or the original LiteX accessors (litex/soc/software/include/hw/common.h in the upstream repository). Signed-off-by: Gabriel Somlo <[email protected]> Cc: Stafford Horne <[email protected]> Cc: Florent Kermarrec <[email protected]> Cc: Mateusz Holenko <[email protected]> Cc: Joel Stanley <[email protected]> Reviewed-by: Joel Stanley <[email protected]> Signed-off-by: Stafford Horne <[email protected]>
1 parent 614124b commit ad4e600

File tree

3 files changed

+16
-102
lines changed

3 files changed

+16
-102
lines changed

drivers/soc/litex/Kconfig

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,4 @@ config LITEX_SOC_CONTROLLER
1717
All drivers that use functions from litex.h must depend on
1818
LITEX.
1919

20-
config LITEX_SUBREG_SIZE
21-
int "Size of a LiteX CSR subregister, in bytes"
22-
depends on LITEX
23-
range 1 4
24-
default 4
25-
help
26-
LiteX MMIO registers (referred to as Configuration and Status
27-
registers, or CSRs) are spread across adjacent 8- or 32-bit
28-
subregisters, located at 32-bit aligned MMIO addresses. Use
29-
this to select the appropriate size (1 or 4 bytes) matching
30-
your particular LiteX build.
31-
3220
endmenu

drivers/soc/litex/litex_soc_ctrl.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,7 @@ static int litex_check_csr_access(void __iomem *reg_addr)
6262
/* restore original value of the SCRATCH register */
6363
litex_write32(reg_addr + SCRATCH_REG_OFF, SCRATCH_REG_VALUE);
6464

65-
pr_info("LiteX SoC Controller driver initialized: subreg:%d, align:%d",
66-
LITEX_SUBREG_SIZE, LITEX_SUBREG_ALIGN);
65+
pr_info("LiteX SoC Controller driver initialized");
6766

6867
return 0;
6968
}

include/linux/litex.h

Lines changed: 15 additions & 88 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,6 @@
1111

1212
#include <linux/io.h>
1313

14-
/* LiteX SoCs support 8- or 32-bit CSR Bus data width (i.e., subreg. size) */
15-
#if defined(CONFIG_LITEX_SUBREG_SIZE) && \
16-
(CONFIG_LITEX_SUBREG_SIZE == 1 || CONFIG_LITEX_SUBREG_SIZE == 4)
17-
#define LITEX_SUBREG_SIZE CONFIG_LITEX_SUBREG_SIZE
18-
#else
19-
#error LiteX subregister size (LITEX_SUBREG_SIZE) must be 4 or 1!
20-
#endif
21-
#define LITEX_SUBREG_SIZE_BIT (LITEX_SUBREG_SIZE * 8)
22-
23-
/* LiteX subregisters of any width are always aligned on a 4-byte boundary */
24-
#define LITEX_SUBREG_ALIGN 0x4
25-
2614
static inline void _write_litex_subregister(u32 val, void __iomem *addr)
2715
{
2816
writel((u32 __force)cpu_to_le32(val), addr);
@@ -42,115 +30,54 @@ static inline u32 _read_litex_subregister(void __iomem *addr)
4230
* 32-bit wide logical CSR will be laid out as four 32-bit physical
4331
* subregisters, each one containing one byte of meaningful data.
4432
*
45-
* For details see: https://github.com/enjoy-digital/litex/wiki/CSR-Bus
46-
*/
47-
48-
/* number of LiteX subregisters needed to store a register of given reg_size */
49-
#define _litex_num_subregs(reg_size) \
50-
(((reg_size) - 1) / LITEX_SUBREG_SIZE + 1)
51-
52-
/*
53-
* since the number of 4-byte aligned subregisters required to store a single
54-
* LiteX CSR (MMIO) register varies with LITEX_SUBREG_SIZE, the offset of the
55-
* next adjacent LiteX CSR register w.r.t. the offset of the current one also
56-
* depends on how many subregisters the latter is spread across
57-
*/
58-
#define _next_reg_off(off, size) \
59-
((off) + _litex_num_subregs(size) * LITEX_SUBREG_ALIGN)
60-
61-
/*
62-
* The purpose of `_litex_[set|get]_reg()` is to implement the logic of
63-
* writing to/reading from the LiteX CSR in a single place that can be then
64-
* reused by all LiteX drivers via the `litex_[write|read][8|16|32|64]()`
65-
* accessors for the appropriate data width.
66-
* NOTE: direct use of `_litex_[set|get]_reg()` by LiteX drivers is strongly
67-
* discouraged, as they perform no error checking on the requested data width!
68-
*/
69-
70-
/**
71-
* _litex_set_reg() - Writes a value to the LiteX CSR (Control&Status Register)
72-
* @reg: Address of the CSR
73-
* @reg_size: The width of the CSR expressed in the number of bytes
74-
* @val: Value to be written to the CSR
33+
* For Linux support, upstream LiteX enforces a 32-bit wide CSR bus, which
34+
* means that only larger-than-32-bit CSRs will be split across multiple
35+
* subregisters (e.g., a 64-bit CSR will be spread across two consecutive
36+
* 32-bit subregisters).
7537
*
76-
* This function splits a single (possibly multi-byte) LiteX CSR write into
77-
* a series of subregister writes with a proper offset.
78-
* NOTE: caller is responsible for ensuring (0 < reg_size <= sizeof(u64)).
79-
*/
80-
static inline void _litex_set_reg(void __iomem *reg, size_t reg_size, u64 val)
81-
{
82-
u8 shift = _litex_num_subregs(reg_size) * LITEX_SUBREG_SIZE_BIT;
83-
84-
while (shift > 0) {
85-
shift -= LITEX_SUBREG_SIZE_BIT;
86-
_write_litex_subregister(val >> shift, reg);
87-
reg += LITEX_SUBREG_ALIGN;
88-
}
89-
}
90-
91-
/**
92-
* _litex_get_reg() - Reads a value of the LiteX CSR (Control&Status Register)
93-
* @reg: Address of the CSR
94-
* @reg_size: The width of the CSR expressed in the number of bytes
95-
*
96-
* Return: Value read from the CSR
97-
*
98-
* This function generates a series of subregister reads with a proper offset
99-
* and joins their results into a single (possibly multi-byte) LiteX CSR value.
100-
* NOTE: caller is responsible for ensuring (0 < reg_size <= sizeof(u64)).
38+
* For details see: https://github.com/enjoy-digital/litex/wiki/CSR-Bus
10139
*/
102-
static inline u64 _litex_get_reg(void __iomem *reg, size_t reg_size)
103-
{
104-
u64 r;
105-
u8 i;
106-
107-
r = _read_litex_subregister(reg);
108-
for (i = 1; i < _litex_num_subregs(reg_size); i++) {
109-
r <<= LITEX_SUBREG_SIZE_BIT;
110-
reg += LITEX_SUBREG_ALIGN;
111-
r |= _read_litex_subregister(reg);
112-
}
113-
return r;
114-
}
11540

11641
static inline void litex_write8(void __iomem *reg, u8 val)
11742
{
118-
_litex_set_reg(reg, sizeof(u8), val);
43+
_write_litex_subregister(val, reg);
11944
}
12045

12146
static inline void litex_write16(void __iomem *reg, u16 val)
12247
{
123-
_litex_set_reg(reg, sizeof(u16), val);
48+
_write_litex_subregister(val, reg);
12449
}
12550

12651
static inline void litex_write32(void __iomem *reg, u32 val)
12752
{
128-
_litex_set_reg(reg, sizeof(u32), val);
53+
_write_litex_subregister(val, reg);
12954
}
13055

13156
static inline void litex_write64(void __iomem *reg, u64 val)
13257
{
133-
_litex_set_reg(reg, sizeof(u64), val);
58+
_write_litex_subregister(val >> 32, reg);
59+
_write_litex_subregister(val, reg + 4);
13460
}
13561

13662
static inline u8 litex_read8(void __iomem *reg)
13763
{
138-
return _litex_get_reg(reg, sizeof(u8));
64+
return _read_litex_subregister(reg);
13965
}
14066

14167
static inline u16 litex_read16(void __iomem *reg)
14268
{
143-
return _litex_get_reg(reg, sizeof(u16));
69+
return _read_litex_subregister(reg);
14470
}
14571

14672
static inline u32 litex_read32(void __iomem *reg)
14773
{
148-
return _litex_get_reg(reg, sizeof(u32));
74+
return _read_litex_subregister(reg);
14975
}
15076

15177
static inline u64 litex_read64(void __iomem *reg)
15278
{
153-
return _litex_get_reg(reg, sizeof(u64));
79+
return ((u64)_read_litex_subregister(reg) << 32) |
80+
_read_litex_subregister(reg + 4);
15481
}
15582

15683
#endif /* _LINUX_LITEX_H */

0 commit comments

Comments
 (0)