mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
036177310b
Earlier version of driver used direct io remapped register read writes using readl/writel. But we need secure boot access which is only possible when registers are read & written using regmap. This is because the security bus/hook is written & coupled only with regmap layer. Switch the driver from direct readl/writel based register accesses to regmap based register accesses. Additionally, update the license headers to latest status. Reviewed-by: Yi xin Zhu <yzhu@maxlinear.com> Signed-off-by: Rahul Tanwar <rtanwar@maxlinear.com> Link: https://lore.kernel.org/r/2610331918206e0e3bd18babb39393a558fb34f9.1665642720.git.rtanwar@maxlinear.com Signed-off-by: Stephen Boyd <sboyd@kernel.org>
10 lines
334 B
Plaintext
10 lines
334 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config CLK_LGM_CGU
|
|
depends on OF && HAS_IOMEM && (X86 || COMPILE_TEST)
|
|
select MFD_SYSCON
|
|
select OF_EARLY_FLATTREE
|
|
bool "Clock driver for Lightning Mountain(LGM) platform"
|
|
help
|
|
Clock Generation Unit(CGU) driver for MaxLinear's x86 based
|
|
Lightning Mountain(LGM) network processor SoC.
|