xref: /openbmc/linux/drivers/clk/davinci/psc-da830.c (revision c2952e27)
1c2952e27SDavid Lechner // SPDX-License-Identifier: GPL-2.0
2c2952e27SDavid Lechner /*
3c2952e27SDavid Lechner  * PSC clock descriptions for TI DA830/OMAP-L137/AM17XX
4c2952e27SDavid Lechner  *
5c2952e27SDavid Lechner  * Copyright (C) 2018 David Lechner <david@lechnology.com>
6c2952e27SDavid Lechner  */
7c2952e27SDavid Lechner 
8c2952e27SDavid Lechner #include <linux/clk-provider.h>
9c2952e27SDavid Lechner #include <linux/clk.h>
10c2952e27SDavid Lechner #include <linux/clkdev.h>
11c2952e27SDavid Lechner #include <linux/init.h>
12c2952e27SDavid Lechner #include <linux/kernel.h>
13c2952e27SDavid Lechner #include <linux/types.h>
14c2952e27SDavid Lechner 
15c2952e27SDavid Lechner #include "psc.h"
16c2952e27SDavid Lechner 
17c2952e27SDavid Lechner LPSC_CLKDEV1(spi0_clkdev,	NULL,	"spi_davinci.0");
18c2952e27SDavid Lechner LPSC_CLKDEV1(mmcsd_clkdev,	NULL,	"da830-mmc.0");
19c2952e27SDavid Lechner LPSC_CLKDEV1(uart0_clkdev,	NULL,	"serial8250.0");
20c2952e27SDavid Lechner 
21c2952e27SDavid Lechner static const struct davinci_lpsc_clk_info da830_psc0_info[] = {
22c2952e27SDavid Lechner 	LPSC(0,  0, tpcc,     pll0_sysclk2, NULL,         LPSC_ALWAYS_ENABLED),
23c2952e27SDavid Lechner 	LPSC(1,  0, tptc0,    pll0_sysclk2, NULL,         LPSC_ALWAYS_ENABLED),
24c2952e27SDavid Lechner 	LPSC(2,  0, tptc1,    pll0_sysclk2, NULL,         LPSC_ALWAYS_ENABLED),
25c2952e27SDavid Lechner 	LPSC(3,  0, aemif,    pll0_sysclk3, NULL,         LPSC_ALWAYS_ENABLED),
26c2952e27SDavid Lechner 	LPSC(4,  0, spi0,     pll0_sysclk2, spi0_clkdev,  0),
27c2952e27SDavid Lechner 	LPSC(5,  0, mmcsd,    pll0_sysclk2, mmcsd_clkdev, 0),
28c2952e27SDavid Lechner 	LPSC(6,  0, aintc,    pll0_sysclk4, NULL,         LPSC_ALWAYS_ENABLED),
29c2952e27SDavid Lechner 	LPSC(7,  0, arm_rom,  pll0_sysclk2, NULL,         LPSC_ALWAYS_ENABLED),
30c2952e27SDavid Lechner 	LPSC(8,  0, secu_mgr, pll0_sysclk4, NULL,         LPSC_ALWAYS_ENABLED),
31c2952e27SDavid Lechner 	LPSC(9,  0, uart0,    pll0_sysclk2, uart0_clkdev, 0),
32c2952e27SDavid Lechner 	LPSC(10, 0, scr0_ss,  pll0_sysclk2, NULL,         LPSC_ALWAYS_ENABLED),
33c2952e27SDavid Lechner 	LPSC(11, 0, scr1_ss,  pll0_sysclk2, NULL,         LPSC_ALWAYS_ENABLED),
34c2952e27SDavid Lechner 	LPSC(12, 0, scr2_ss,  pll0_sysclk2, NULL,         LPSC_ALWAYS_ENABLED),
35c2952e27SDavid Lechner 	LPSC(13, 0, pruss,    pll0_sysclk2, NULL,         LPSC_ALWAYS_ENABLED),
36c2952e27SDavid Lechner 	LPSC(14, 0, arm,      pll0_sysclk6, NULL,         LPSC_ALWAYS_ENABLED),
37c2952e27SDavid Lechner 	{ }
38c2952e27SDavid Lechner };
39c2952e27SDavid Lechner 
40c2952e27SDavid Lechner static int da830_psc0_init(struct device *dev, void __iomem *base)
41c2952e27SDavid Lechner {
42c2952e27SDavid Lechner 	return davinci_psc_register_clocks(dev, da830_psc0_info, 16, base);
43c2952e27SDavid Lechner }
44c2952e27SDavid Lechner 
45c2952e27SDavid Lechner static struct clk_bulk_data da830_psc0_parent_clks[] = {
46c2952e27SDavid Lechner 	{ .id = "pll0_sysclk2" },
47c2952e27SDavid Lechner 	{ .id = "pll0_sysclk3" },
48c2952e27SDavid Lechner 	{ .id = "pll0_sysclk4" },
49c2952e27SDavid Lechner 	{ .id = "pll0_sysclk6" },
50c2952e27SDavid Lechner };
51c2952e27SDavid Lechner 
52c2952e27SDavid Lechner const struct davinci_psc_init_data da830_psc0_init_data = {
53c2952e27SDavid Lechner 	.parent_clks		= da830_psc0_parent_clks,
54c2952e27SDavid Lechner 	.num_parent_clks	= ARRAY_SIZE(da830_psc0_parent_clks),
55c2952e27SDavid Lechner 	.psc_init		= &da830_psc0_init,
56c2952e27SDavid Lechner };
57c2952e27SDavid Lechner 
58c2952e27SDavid Lechner LPSC_CLKDEV2(usb0_clkdev,	NULL,	"musb-da8xx",
59c2952e27SDavid Lechner 				NULL,	"cppi41-dmaengine");
60c2952e27SDavid Lechner LPSC_CLKDEV1(usb1_clkdev,	NULL,	"ohci-da8xx");
61c2952e27SDavid Lechner /* REVISIT: gpio-davinci.c should be modified to drop con_id */
62c2952e27SDavid Lechner LPSC_CLKDEV1(gpio_clkdev,	"gpio",	NULL);
63c2952e27SDavid Lechner LPSC_CLKDEV2(emac_clkdev,	NULL,	"davinci_emac.1",
64c2952e27SDavid Lechner 				"fck",	"davinci_mdio.0");
65c2952e27SDavid Lechner LPSC_CLKDEV1(mcasp0_clkdev,	NULL,	"davinci-mcasp.0");
66c2952e27SDavid Lechner LPSC_CLKDEV1(mcasp1_clkdev,	NULL,	"davinci-mcasp.1");
67c2952e27SDavid Lechner LPSC_CLKDEV1(mcasp2_clkdev,	NULL,	"davinci-mcasp.2");
68c2952e27SDavid Lechner LPSC_CLKDEV1(spi1_clkdev,	NULL,	"spi_davinci.1");
69c2952e27SDavid Lechner LPSC_CLKDEV1(i2c1_clkdev,	NULL,	"i2c_davinci.2");
70c2952e27SDavid Lechner LPSC_CLKDEV1(uart1_clkdev,	NULL,	"serial8250.1");
71c2952e27SDavid Lechner LPSC_CLKDEV1(uart2_clkdev,	NULL,	"serial8250.2");
72c2952e27SDavid Lechner LPSC_CLKDEV1(lcdc_clkdev,	"fck",	"da8xx_lcdc.0");
73c2952e27SDavid Lechner LPSC_CLKDEV2(pwm_clkdev,	"fck",	"ehrpwm.0",
74c2952e27SDavid Lechner 				"fck",	"ehrpwm.1");
75c2952e27SDavid Lechner LPSC_CLKDEV3(ecap_clkdev,	"fck",	"ecap.0",
76c2952e27SDavid Lechner 				"fck",	"ecap.1",
77c2952e27SDavid Lechner 				"fck",	"ecap.2");
78c2952e27SDavid Lechner LPSC_CLKDEV2(eqep_clkdev,	NULL,	"eqep.0",
79c2952e27SDavid Lechner 				NULL,	"eqep.1");
80c2952e27SDavid Lechner 
81c2952e27SDavid Lechner static const struct davinci_lpsc_clk_info da830_psc1_info[] = {
82c2952e27SDavid Lechner 	LPSC(1,  0, usb0,   pll0_sysclk2, usb0_clkdev,   0),
83c2952e27SDavid Lechner 	LPSC(2,  0, usb1,   pll0_sysclk4, usb1_clkdev,   0),
84c2952e27SDavid Lechner 	LPSC(3,  0, gpio,   pll0_sysclk4, gpio_clkdev,   0),
85c2952e27SDavid Lechner 	LPSC(5,  0, emac,   pll0_sysclk4, emac_clkdev,   0),
86c2952e27SDavid Lechner 	LPSC(6,  0, emif3,  pll0_sysclk5, NULL,          LPSC_ALWAYS_ENABLED),
87c2952e27SDavid Lechner 	LPSC(7,  0, mcasp0, pll0_sysclk2, mcasp0_clkdev, 0),
88c2952e27SDavid Lechner 	LPSC(8,  0, mcasp1, pll0_sysclk2, mcasp1_clkdev, 0),
89c2952e27SDavid Lechner 	LPSC(9,  0, mcasp2, pll0_sysclk2, mcasp2_clkdev, 0),
90c2952e27SDavid Lechner 	LPSC(10, 0, spi1,   pll0_sysclk2, spi1_clkdev,   0),
91c2952e27SDavid Lechner 	LPSC(11, 0, i2c1,   pll0_sysclk4, i2c1_clkdev,   0),
92c2952e27SDavid Lechner 	LPSC(12, 0, uart1,  pll0_sysclk2, uart1_clkdev,  0),
93c2952e27SDavid Lechner 	LPSC(13, 0, uart2,  pll0_sysclk2, uart2_clkdev,  0),
94c2952e27SDavid Lechner 	LPSC(16, 0, lcdc,   pll0_sysclk2, lcdc_clkdev,   0),
95c2952e27SDavid Lechner 	LPSC(17, 0, pwm,    pll0_sysclk2, pwm_clkdev,    0),
96c2952e27SDavid Lechner 	LPSC(20, 0, ecap,   pll0_sysclk2, ecap_clkdev,   0),
97c2952e27SDavid Lechner 	LPSC(21, 0, eqep,   pll0_sysclk2, eqep_clkdev,   0),
98c2952e27SDavid Lechner 	{ }
99c2952e27SDavid Lechner };
100c2952e27SDavid Lechner 
101c2952e27SDavid Lechner static int da830_psc1_init(struct device *dev, void __iomem *base)
102c2952e27SDavid Lechner {
103c2952e27SDavid Lechner 	return davinci_psc_register_clocks(dev, da830_psc1_info, 32, base);
104c2952e27SDavid Lechner }
105c2952e27SDavid Lechner 
106c2952e27SDavid Lechner static struct clk_bulk_data da830_psc1_parent_clks[] = {
107c2952e27SDavid Lechner 	{ .id = "pll0_sysclk2" },
108c2952e27SDavid Lechner 	{ .id = "pll0_sysclk4" },
109c2952e27SDavid Lechner 	{ .id = "pll0_sysclk5" },
110c2952e27SDavid Lechner };
111c2952e27SDavid Lechner 
112c2952e27SDavid Lechner const struct davinci_psc_init_data da830_psc1_init_data = {
113c2952e27SDavid Lechner 	.parent_clks		= da830_psc1_parent_clks,
114c2952e27SDavid Lechner 	.num_parent_clks	= ARRAY_SIZE(da830_psc1_parent_clks),
115c2952e27SDavid Lechner 	.psc_init		= &da830_psc1_init,
116c2952e27SDavid Lechner };
117