arm64: dts: Revert "specify console via command line"
[linux/fpc-iii.git] / arch / nds32 / kernel / atl2c.c
blob0c5386e72098e45f48b925efee3431bb275a1398
1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (C) 2005-2017 Andes Technology Corporation
4 #include <linux/compiler.h>
5 #include <linux/of_address.h>
6 #include <linux/of_fdt.h>
7 #include <linux/of_platform.h>
8 #include <asm/l2_cache.h>
10 void __iomem *atl2c_base;
11 static const struct of_device_id atl2c_ids[] __initconst = {
12 {.compatible = "andestech,atl2c",},
16 static int __init atl2c_of_init(void)
18 struct device_node *np;
19 struct resource res;
20 unsigned long tmp = 0;
21 unsigned long l2set, l2way, l2clsz;
23 if (!(__nds32__mfsr(NDS32_SR_MSC_CFG) & MSC_CFG_mskL2C))
24 return -ENODEV;
26 np = of_find_matching_node(NULL, atl2c_ids);
27 if (!np)
28 return -ENODEV;
30 if (of_address_to_resource(np, 0, &res))
31 return -ENODEV;
33 atl2c_base = ioremap(res.start, resource_size(&res));
34 if (!atl2c_base)
35 return -ENOMEM;
37 l2set =
38 64 << ((L2C_R_REG(L2_CA_CONF_OFF) & L2_CA_CONF_mskL2SET) >>
39 L2_CA_CONF_offL2SET);
40 l2way =
41 1 +
42 ((L2C_R_REG(L2_CA_CONF_OFF) & L2_CA_CONF_mskL2WAY) >>
43 L2_CA_CONF_offL2WAY);
44 l2clsz =
45 4 << ((L2C_R_REG(L2_CA_CONF_OFF) & L2_CA_CONF_mskL2CLSZ) >>
46 L2_CA_CONF_offL2CLSZ);
47 pr_info("L2:%luKB/%luS/%luW/%luB\n",
48 l2set * l2way * l2clsz / 1024, l2set, l2way, l2clsz);
50 tmp = L2C_R_REG(L2CC_PROT_OFF);
51 tmp &= ~L2CC_PROT_mskMRWEN;
52 L2C_W_REG(L2CC_PROT_OFF, tmp);
54 tmp = L2C_R_REG(L2CC_SETUP_OFF);
55 tmp &= ~L2CC_SETUP_mskPART;
56 L2C_W_REG(L2CC_SETUP_OFF, tmp);
58 tmp = L2C_R_REG(L2CC_CTRL_OFF);
59 tmp |= L2CC_CTRL_mskEN;
60 L2C_W_REG(L2CC_CTRL_OFF, tmp);
62 return 0;
65 subsys_initcall(atl2c_of_init);