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