cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

sama5d4.c (7505B)


      1// SPDX-License-Identifier: GPL-2.0
      2#include <linux/clk-provider.h>
      3#include <linux/mfd/syscon.h>
      4#include <linux/slab.h>
      5
      6#include <dt-bindings/clock/at91.h>
      7
      8#include "pmc.h"
      9
     10static DEFINE_SPINLOCK(mck_lock);
     11
     12static const struct clk_master_characteristics mck_characteristics = {
     13	.output = { .min = 125000000, .max = 200000000 },
     14	.divisors = { 1, 2, 4, 3 },
     15};
     16
     17static u8 plla_out[] = { 0 };
     18
     19static u16 plla_icpll[] = { 0 };
     20
     21static const struct clk_range plla_outputs[] = {
     22	{ .min = 600000000, .max = 1200000000 },
     23};
     24
     25static const struct clk_pll_characteristics plla_characteristics = {
     26	.input = { .min = 12000000, .max = 12000000 },
     27	.num_output = ARRAY_SIZE(plla_outputs),
     28	.output = plla_outputs,
     29	.icpll = plla_icpll,
     30	.out = plla_out,
     31};
     32
     33static const struct clk_pcr_layout sama5d4_pcr_layout = {
     34	.offset = 0x10c,
     35	.cmd = BIT(12),
     36	.pid_mask = GENMASK(6, 0),
     37};
     38
     39static const struct {
     40	char *n;
     41	char *p;
     42	u8 id;
     43} sama5d4_systemck[] = {
     44	{ .n = "ddrck", .p = "masterck_div", .id = 2 },
     45	{ .n = "lcdck", .p = "masterck_div", .id = 3 },
     46	{ .n = "smdck", .p = "smdclk",       .id = 4 },
     47	{ .n = "uhpck", .p = "usbck",        .id = 6 },
     48	{ .n = "udpck", .p = "usbck",        .id = 7 },
     49	{ .n = "pck0",  .p = "prog0",        .id = 8 },
     50	{ .n = "pck1",  .p = "prog1",        .id = 9 },
     51	{ .n = "pck2",  .p = "prog2",        .id = 10 },
     52};
     53
     54static const struct {
     55	char *n;
     56	u8 id;
     57} sama5d4_periph32ck[] = {
     58	{ .n = "pioD_clk", .id = 5 },
     59	{ .n = "usart0_clk", .id = 6 },
     60	{ .n = "usart1_clk", .id = 7 },
     61	{ .n = "icm_clk", .id = 9 },
     62	{ .n = "aes_clk", .id = 12 },
     63	{ .n = "tdes_clk", .id = 14 },
     64	{ .n = "sha_clk", .id = 15 },
     65	{ .n = "matrix1_clk", .id = 17 },
     66	{ .n = "hsmc_clk", .id = 22 },
     67	{ .n = "pioA_clk", .id = 23 },
     68	{ .n = "pioB_clk", .id = 24 },
     69	{ .n = "pioC_clk", .id = 25 },
     70	{ .n = "pioE_clk", .id = 26 },
     71	{ .n = "uart0_clk", .id = 27 },
     72	{ .n = "uart1_clk", .id = 28 },
     73	{ .n = "usart2_clk", .id = 29 },
     74	{ .n = "usart3_clk", .id = 30 },
     75	{ .n = "usart4_clk", .id = 31 },
     76	{ .n = "twi0_clk", .id = 32 },
     77	{ .n = "twi1_clk", .id = 33 },
     78	{ .n = "twi2_clk", .id = 34 },
     79	{ .n = "mci0_clk", .id = 35 },
     80	{ .n = "mci1_clk", .id = 36 },
     81	{ .n = "spi0_clk", .id = 37 },
     82	{ .n = "spi1_clk", .id = 38 },
     83	{ .n = "spi2_clk", .id = 39 },
     84	{ .n = "tcb0_clk", .id = 40 },
     85	{ .n = "tcb1_clk", .id = 41 },
     86	{ .n = "tcb2_clk", .id = 42 },
     87	{ .n = "pwm_clk", .id = 43 },
     88	{ .n = "adc_clk", .id = 44 },
     89	{ .n = "dbgu_clk", .id = 45 },
     90	{ .n = "uhphs_clk", .id = 46 },
     91	{ .n = "udphs_clk", .id = 47 },
     92	{ .n = "ssc0_clk", .id = 48 },
     93	{ .n = "ssc1_clk", .id = 49 },
     94	{ .n = "trng_clk", .id = 53 },
     95	{ .n = "macb0_clk", .id = 54 },
     96	{ .n = "macb1_clk", .id = 55 },
     97	{ .n = "fuse_clk", .id = 57 },
     98	{ .n = "securam_clk", .id = 59 },
     99	{ .n = "smd_clk", .id = 61 },
    100	{ .n = "twi3_clk", .id = 62 },
    101	{ .n = "catb_clk", .id = 63 },
    102};
    103
    104static const struct {
    105	char *n;
    106	u8 id;
    107} sama5d4_periphck[] = {
    108	{ .n = "dma0_clk", .id = 8 },
    109	{ .n = "cpkcc_clk", .id = 10 },
    110	{ .n = "aesb_clk", .id = 13 },
    111	{ .n = "mpddr_clk", .id = 16 },
    112	{ .n = "matrix0_clk", .id = 18 },
    113	{ .n = "vdec_clk", .id = 19 },
    114	{ .n = "dma1_clk", .id = 50 },
    115	{ .n = "lcdc_clk", .id = 51 },
    116	{ .n = "isi_clk", .id = 52 },
    117};
    118
    119static void __init sama5d4_pmc_setup(struct device_node *np)
    120{
    121	struct clk_range range = CLK_RANGE(0, 0);
    122	const char *slck_name, *mainxtal_name;
    123	struct pmc_data *sama5d4_pmc;
    124	const char *parent_names[5];
    125	struct regmap *regmap;
    126	struct clk_hw *hw;
    127	int i;
    128	bool bypass;
    129
    130	i = of_property_match_string(np, "clock-names", "slow_clk");
    131	if (i < 0)
    132		return;
    133
    134	slck_name = of_clk_get_parent_name(np, i);
    135
    136	i = of_property_match_string(np, "clock-names", "main_xtal");
    137	if (i < 0)
    138		return;
    139	mainxtal_name = of_clk_get_parent_name(np, i);
    140
    141	regmap = device_node_to_regmap(np);
    142	if (IS_ERR(regmap))
    143		return;
    144
    145	sama5d4_pmc = pmc_data_allocate(PMC_PLLACK + 1,
    146					nck(sama5d4_systemck),
    147					nck(sama5d4_periph32ck), 0, 3);
    148	if (!sama5d4_pmc)
    149		return;
    150
    151	hw = at91_clk_register_main_rc_osc(regmap, "main_rc_osc", 12000000,
    152					   100000000);
    153	if (IS_ERR(hw))
    154		goto err_free;
    155
    156	bypass = of_property_read_bool(np, "atmel,osc-bypass");
    157
    158	hw = at91_clk_register_main_osc(regmap, "main_osc", mainxtal_name,
    159					bypass);
    160	if (IS_ERR(hw))
    161		goto err_free;
    162
    163	parent_names[0] = "main_rc_osc";
    164	parent_names[1] = "main_osc";
    165	hw = at91_clk_register_sam9x5_main(regmap, "mainck", parent_names, 2);
    166	if (IS_ERR(hw))
    167		goto err_free;
    168
    169	hw = at91_clk_register_pll(regmap, "pllack", "mainck", 0,
    170				   &sama5d3_pll_layout, &plla_characteristics);
    171	if (IS_ERR(hw))
    172		goto err_free;
    173
    174	hw = at91_clk_register_plldiv(regmap, "plladivck", "pllack");
    175	if (IS_ERR(hw))
    176		goto err_free;
    177
    178	sama5d4_pmc->chws[PMC_PLLACK] = hw;
    179
    180	hw = at91_clk_register_utmi(regmap, NULL, "utmick", "mainck");
    181	if (IS_ERR(hw))
    182		goto err_free;
    183
    184	sama5d4_pmc->chws[PMC_UTMI] = hw;
    185
    186	parent_names[0] = slck_name;
    187	parent_names[1] = "mainck";
    188	parent_names[2] = "plladivck";
    189	parent_names[3] = "utmick";
    190	hw = at91_clk_register_master_pres(regmap, "masterck_pres", 4,
    191					   parent_names,
    192					   &at91sam9x5_master_layout,
    193					   &mck_characteristics, &mck_lock);
    194	if (IS_ERR(hw))
    195		goto err_free;
    196
    197	hw = at91_clk_register_master_div(regmap, "masterck_div",
    198					  "masterck_pres",
    199					  &at91sam9x5_master_layout,
    200					  &mck_characteristics, &mck_lock,
    201					  CLK_SET_RATE_GATE, 0);
    202	if (IS_ERR(hw))
    203		goto err_free;
    204
    205	sama5d4_pmc->chws[PMC_MCK] = hw;
    206
    207	hw = at91_clk_register_h32mx(regmap, "h32mxck", "masterck_div");
    208	if (IS_ERR(hw))
    209		goto err_free;
    210
    211	sama5d4_pmc->chws[PMC_MCK2] = hw;
    212
    213	parent_names[0] = "plladivck";
    214	parent_names[1] = "utmick";
    215	hw = at91sam9x5_clk_register_usb(regmap, "usbck", parent_names, 2);
    216	if (IS_ERR(hw))
    217		goto err_free;
    218
    219	parent_names[0] = "plladivck";
    220	parent_names[1] = "utmick";
    221	hw = at91sam9x5_clk_register_smd(regmap, "smdclk", parent_names, 2);
    222	if (IS_ERR(hw))
    223		goto err_free;
    224
    225	parent_names[0] = slck_name;
    226	parent_names[1] = "mainck";
    227	parent_names[2] = "plladivck";
    228	parent_names[3] = "utmick";
    229	parent_names[4] = "masterck_div";
    230	for (i = 0; i < 3; i++) {
    231		char name[6];
    232
    233		snprintf(name, sizeof(name), "prog%d", i);
    234
    235		hw = at91_clk_register_programmable(regmap, name,
    236						    parent_names, 5, i,
    237						    &at91sam9x5_programmable_layout,
    238						    NULL);
    239		if (IS_ERR(hw))
    240			goto err_free;
    241
    242		sama5d4_pmc->pchws[i] = hw;
    243	}
    244
    245	for (i = 0; i < ARRAY_SIZE(sama5d4_systemck); i++) {
    246		hw = at91_clk_register_system(regmap, sama5d4_systemck[i].n,
    247					      sama5d4_systemck[i].p,
    248					      sama5d4_systemck[i].id);
    249		if (IS_ERR(hw))
    250			goto err_free;
    251
    252		sama5d4_pmc->shws[sama5d4_systemck[i].id] = hw;
    253	}
    254
    255	for (i = 0; i < ARRAY_SIZE(sama5d4_periphck); i++) {
    256		hw = at91_clk_register_sam9x5_peripheral(regmap, &pmc_pcr_lock,
    257							 &sama5d4_pcr_layout,
    258							 sama5d4_periphck[i].n,
    259							 "masterck_div",
    260							 sama5d4_periphck[i].id,
    261							 &range, INT_MIN);
    262		if (IS_ERR(hw))
    263			goto err_free;
    264
    265		sama5d4_pmc->phws[sama5d4_periphck[i].id] = hw;
    266	}
    267
    268	for (i = 0; i < ARRAY_SIZE(sama5d4_periph32ck); i++) {
    269		hw = at91_clk_register_sam9x5_peripheral(regmap, &pmc_pcr_lock,
    270							 &sama5d4_pcr_layout,
    271							 sama5d4_periph32ck[i].n,
    272							 "h32mxck",
    273							 sama5d4_periph32ck[i].id,
    274							 &range, INT_MIN);
    275		if (IS_ERR(hw))
    276			goto err_free;
    277
    278		sama5d4_pmc->phws[sama5d4_periph32ck[i].id] = hw;
    279	}
    280
    281	of_clk_add_hw_provider(np, of_clk_hw_pmc_get, sama5d4_pmc);
    282
    283	return;
    284
    285err_free:
    286	kfree(sama5d4_pmc);
    287}
    288
    289CLK_OF_DECLARE(sama5d4_pmc, "atmel,sama5d4-pmc", sama5d4_pmc_setup);