summaryrefslogtreecommitdiffstats
path: root/drivers/soc/litex/litex_soc_ctrl.c
diff options
context:
space:
mode:
authorGabriel Somlo <gsomlo@gmail.com>2021-05-26 06:51:26 -0400
committerStafford Horne <shorne@gmail.com>2021-06-11 04:35:40 +0900
commitad4e600cbf897f47525b342cd4b02e88ed300a83 (patch)
tree70ccb051e4d94c05d64690be0a498aea6afbd306 /drivers/soc/litex/litex_soc_ctrl.c
parent614124bea77e452aa6df7a8714e8bc820b489922 (diff)
downloadlinux-ad4e600cbf897f47525b342cd4b02e88ed300a83.tar.gz
linux-ad4e600cbf897f47525b342cd4b02e88ed300a83.tar.xz
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 <gsomlo@gmail.com> Cc: Stafford Horne <shorne@gmail.com> Cc: Florent Kermarrec <florent@enjoy-digital.fr> Cc: Mateusz Holenko <mholenko@antmicro.com> Cc: Joel Stanley <joel@jms.id.au> Reviewed-by: Joel Stanley <joel@jms.id.au> Signed-off-by: Stafford Horne <shorne@gmail.com>
Diffstat (limited to 'drivers/soc/litex/litex_soc_ctrl.c')
-rw-r--r--drivers/soc/litex/litex_soc_ctrl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/soc/litex/litex_soc_ctrl.c b/drivers/soc/litex/litex_soc_ctrl.c
index c3e379a990f2..f75790091d38 100644
--- a/drivers/soc/litex/litex_soc_ctrl.c
+++ b/drivers/soc/litex/litex_soc_ctrl.c
@@ -62,8 +62,7 @@ static int litex_check_csr_access(void __iomem *reg_addr)
/* restore original value of the SCRATCH register */
litex_write32(reg_addr + SCRATCH_REG_OFF, SCRATCH_REG_VALUE);
- pr_info("LiteX SoC Controller driver initialized: subreg:%d, align:%d",
- LITEX_SUBREG_SIZE, LITEX_SUBREG_ALIGN);
+ pr_info("LiteX SoC Controller driver initialized");
return 0;
}