1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * AM62X specific device platform data
4 *
5 * This file is auto generated. Please do not hand edit and report any issues
6 * to Dave Gerlach <d-gerlach@ti.com>.
7 *
8 * Copyright (C) 2020-2022 Texas Instruments Incorporated - https://www.ti.com/
9 */
10
11#include "k3-dev.h"
12
13static struct ti_psc soc_psc_list[] = {
14	[0] = PSC(0, 0x04000000),
15	[1] = PSC(1, 0x00400000),
16};
17
18static struct ti_pd soc_pd_list[] = {
19	[0] = PSC_PD(0, &soc_psc_list[1], NULL),
20	[1] = PSC_PD(2, &soc_psc_list[1], &soc_pd_list[0]),
21	[2] = PSC_PD(3, &soc_psc_list[1], &soc_pd_list[0]),
22	[3] = PSC_PD(4, &soc_psc_list[1], &soc_pd_list[2]),
23	[4] = PSC_PD(5, &soc_psc_list[1], &soc_pd_list[2]),
24};
25
26static struct ti_lpsc soc_lpsc_list[] = {
27	[0] = PSC_LPSC(0, &soc_psc_list[1], &soc_pd_list[0], NULL),
28	[1] = PSC_LPSC(9, &soc_psc_list[1], &soc_pd_list[0], &soc_lpsc_list[11]),
29	[2] = PSC_LPSC(10, &soc_psc_list[1], &soc_pd_list[0], &soc_lpsc_list[1]),
30	[3] = PSC_LPSC(11, &soc_psc_list[1], &soc_pd_list[0], &soc_lpsc_list[2]),
31	[4] = PSC_LPSC(12, &soc_psc_list[1], &soc_pd_list[0], &soc_lpsc_list[8]),
32	[5] = PSC_LPSC(13, &soc_psc_list[1], &soc_pd_list[0], &soc_lpsc_list[9]),
33	[6] = PSC_LPSC(20, &soc_psc_list[1], &soc_pd_list[0], &soc_lpsc_list[11]),
34	[7] = PSC_LPSC(21, &soc_psc_list[1], &soc_pd_list[0], &soc_lpsc_list[11]),
35	[8] = PSC_LPSC(23, &soc_psc_list[1], &soc_pd_list[0], &soc_lpsc_list[11]),
36	[9] = PSC_LPSC(24, &soc_psc_list[1], &soc_pd_list[0], &soc_lpsc_list[11]),
37	[10] = PSC_LPSC(28, &soc_psc_list[1], &soc_pd_list[0], &soc_lpsc_list[11]),
38	[11] = PSC_LPSC(34, &soc_psc_list[1], &soc_pd_list[0], &soc_lpsc_list[11]),
39	[12] = PSC_LPSC(41, &soc_psc_list[1], &soc_pd_list[1], &soc_lpsc_list[11]),
40	[13] = PSC_LPSC(42, &soc_psc_list[1], &soc_pd_list[2], &soc_lpsc_list[11]),
41	[14] = PSC_LPSC(45, &soc_psc_list[1], &soc_pd_list[3], &soc_lpsc_list[13]),
42	[15] = PSC_LPSC(46, &soc_psc_list[1], &soc_pd_list[4], &soc_lpsc_list[13]),
43};
44
45static struct ti_dev soc_dev_list[] = {
46	PSC_DEV(16, &soc_lpsc_list[0]),
47	PSC_DEV(77, &soc_lpsc_list[0]),
48	PSC_DEV(61, &soc_lpsc_list[0]),
49	PSC_DEV(95, &soc_lpsc_list[0]),
50	PSC_DEV(107, &soc_lpsc_list[0]),
51	PSC_DEV(170, &soc_lpsc_list[1]),
52	PSC_DEV(177, &soc_lpsc_list[2]),
53	PSC_DEV(55, &soc_lpsc_list[3]),
54	PSC_DEV(178, &soc_lpsc_list[4]),
55	PSC_DEV(179, &soc_lpsc_list[5]),
56	PSC_DEV(57, &soc_lpsc_list[6]),
57	PSC_DEV(58, &soc_lpsc_list[7]),
58	PSC_DEV(161, &soc_lpsc_list[8]),
59	PSC_DEV(162, &soc_lpsc_list[9]),
60	PSC_DEV(75, &soc_lpsc_list[10]),
61	PSC_DEV(36, &soc_lpsc_list[11]),
62	PSC_DEV(102, &soc_lpsc_list[11]),
63	PSC_DEV(146, &soc_lpsc_list[11]),
64	PSC_DEV(13, &soc_lpsc_list[12]),
65	PSC_DEV(166, &soc_lpsc_list[13]),
66	PSC_DEV(135, &soc_lpsc_list[14]),
67	PSC_DEV(136, &soc_lpsc_list[15]),
68};
69
70const struct ti_k3_pd_platdata am62x_pd_platdata = {
71	.psc = soc_psc_list,
72	.pd = soc_pd_list,
73	.lpsc = soc_lpsc_list,
74	.devs = soc_dev_list,
75	.num_psc = ARRAY_SIZE(soc_psc_list),
76	.num_pd = ARRAY_SIZE(soc_pd_list),
77	.num_lpsc = ARRAY_SIZE(soc_lpsc_list),
78	.num_devs = ARRAY_SIZE(soc_dev_list),
79};
80