Merge tag 'u-boot-atmel-fixes-2020.07-a' of https://gitlab.denx.de/u-boot/custodians...
[oweals/u-boot.git] / arch / arm / cpu / arm926ejs / spear / spr_misc.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2009
4  * Vipin Kumar, ST Micoelectronics, vipin.kumar@st.com.
5  */
6
7 #include <common.h>
8 #include <command.h>
9 #include <cpu_func.h>
10 #include <env.h>
11 #include <i2c.h>
12 #include <init.h>
13 #include <net.h>
14 #include <linux/mtd/st_smi.h>
15 #include <asm/io.h>
16 #include <asm/arch/hardware.h>
17 #include <asm/arch/spr_emi.h>
18 #include <asm/arch/spr_defs.h>
19
20 #define CPU             0
21 #define DDR             1
22 #define SRAM_REL        0xD2801000
23
24 DECLARE_GLOBAL_DATA_PTR;
25
26 #if defined(CONFIG_CMD_NET)
27 static int i2c_read_mac(uchar *buffer);
28 #endif
29
30 int dram_init(void)
31 {
32         /* Store complete RAM size and return */
33         gd->ram_size = get_ram_size(PHYS_SDRAM_1, PHYS_SDRAM_1_MAXSIZE);
34
35         return 0;
36 }
37
38 int dram_init_banksize(void)
39 {
40         gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
41         gd->bd->bi_dram[0].size = gd->ram_size;
42
43         return 0;
44 }
45
46 int board_early_init_f()
47 {
48 #if defined(CONFIG_ST_SMI)
49         smi_init();
50 #endif
51         return 0;
52 }
53 int misc_init_r(void)
54 {
55 #if defined(CONFIG_CMD_NET)
56         uchar mac_id[6];
57
58         if (!eth_env_get_enetaddr("ethaddr", mac_id) && !i2c_read_mac(mac_id))
59                 eth_env_set_enetaddr("ethaddr", mac_id);
60 #endif
61         env_set("verify", "n");
62
63 #if defined(CONFIG_SPEAR_USBTTY)
64         env_set("stdin", "usbtty");
65         env_set("stdout", "usbtty");
66         env_set("stderr", "usbtty");
67
68 #ifndef CONFIG_SYS_NO_DCACHE
69         dcache_enable();
70 #endif
71 #endif
72         return 0;
73 }
74
75 #ifdef CONFIG_SPEAR_EMI
76 struct cust_emi_para {
77         unsigned int tap;
78         unsigned int tsdp;
79         unsigned int tdpw;
80         unsigned int tdpr;
81         unsigned int tdcs;
82 };
83
84 /* EMI timing setting of m28w640hc of linux kernel */
85 const struct cust_emi_para emi_timing_m28w640hc = {
86         .tap = 0x10,
87         .tsdp = 0x05,
88         .tdpw = 0x0a,
89         .tdpr = 0x0a,
90         .tdcs = 0x05,
91 };
92
93 /* EMI timing setting of bootrom */
94 const struct cust_emi_para emi_timing_bootrom = {
95         .tap = 0xf,
96         .tsdp = 0x0,
97         .tdpw = 0xff,
98         .tdpr = 0x111,
99         .tdcs = 0x02,
100 };
101
102 void spear_emi_init(void)
103 {
104         const struct cust_emi_para *p = &emi_timing_m28w640hc;
105         struct emi_regs *emi_regs_p = (struct emi_regs *)CONFIG_SPEAR_EMIBASE;
106         unsigned int cs;
107         unsigned int val, tmp;
108
109         val = readl(CONFIG_SPEAR_RASBASE);
110
111         if (val & EMI_ACKMSK)
112                 tmp = 0x3f;
113         else
114                 tmp = 0x0;
115
116         writel(tmp, &emi_regs_p->ack);
117
118         for (cs = 0; cs < CONFIG_SYS_MAX_FLASH_BANKS; cs++) {
119                 writel(p->tap, &emi_regs_p->bank_regs[cs].tap);
120                 writel(p->tsdp, &emi_regs_p->bank_regs[cs].tsdp);
121                 writel(p->tdpw, &emi_regs_p->bank_regs[cs].tdpw);
122                 writel(p->tdpr, &emi_regs_p->bank_regs[cs].tdpr);
123                 writel(p->tdcs, &emi_regs_p->bank_regs[cs].tdcs);
124                 writel(EMI_CNTL_ENBBYTERW | ((val & 0x18) >> 3),
125                        &emi_regs_p->bank_regs[cs].control);
126         }
127 }
128 #endif
129
130 int spear_board_init(ulong mach_type)
131 {
132         gd->bd->bi_arch_number = mach_type;
133
134         /* adress of boot parameters */
135         gd->bd->bi_boot_params = CONFIG_BOOT_PARAMS_ADDR;
136
137 #ifdef CONFIG_SPEAR_EMI
138         spear_emi_init();
139 #endif
140         return 0;
141 }
142
143 #if defined(CONFIG_CMD_NET)
144 static int i2c_read_mac(uchar *buffer)
145 {
146         u8 buf[2];
147
148         i2c_read(CONFIG_I2C_CHIPADDRESS, MAGIC_OFF, 1, buf, MAGIC_LEN);
149
150         /* Check if mac in i2c memory is valid */
151         if ((buf[0] == MAGIC_BYTE0) && (buf[1] == MAGIC_BYTE1)) {
152                 /* Valid mac address is saved in i2c eeprom */
153                 i2c_read(CONFIG_I2C_CHIPADDRESS, MAC_OFF, 1, buffer, MAC_LEN);
154                 return 0;
155         }
156
157         return -1;
158 }
159
160 static int write_mac(uchar *mac)
161 {
162         u8 buf[2];
163
164         buf[0] = (u8)MAGIC_BYTE0;
165         buf[1] = (u8)MAGIC_BYTE1;
166         i2c_write(CONFIG_I2C_CHIPADDRESS, MAGIC_OFF, 1, buf, MAGIC_LEN);
167
168         buf[0] = (u8)~MAGIC_BYTE0;
169         buf[1] = (u8)~MAGIC_BYTE1;
170
171         i2c_read(CONFIG_I2C_CHIPADDRESS, MAGIC_OFF, 1, buf, MAGIC_LEN);
172
173         /* check if valid MAC address is saved in I2C EEPROM or not? */
174         if ((buf[0] == MAGIC_BYTE0) && (buf[1] == MAGIC_BYTE1)) {
175                 i2c_write(CONFIG_I2C_CHIPADDRESS, MAC_OFF, 1, mac, MAC_LEN);
176                 puts("I2C EEPROM written with mac address \n");
177                 return 0;
178         }
179
180         puts("I2C EEPROM writing failed\n");
181         return -1;
182 }
183 #endif
184
185 int do_chip_config(struct cmd_tbl *cmdtp, int flag, int argc,
186                    char *const argv[])
187 {
188         void (*sram_setfreq) (unsigned int, unsigned int);
189         unsigned int frequency;
190 #if defined(CONFIG_CMD_NET)
191         unsigned char mac[6];
192 #endif
193
194         if ((argc > 3) || (argc < 2))
195                 return cmd_usage(cmdtp);
196
197         if ((!strcmp(argv[1], "cpufreq")) || (!strcmp(argv[1], "ddrfreq"))) {
198
199                 frequency = simple_strtoul(argv[2], NULL, 0);
200
201                 if (frequency > 333) {
202                         printf("Frequency is limited to 333MHz\n");
203                         return 1;
204                 }
205
206                 sram_setfreq = memcpy((void *)SRAM_REL, setfreq, setfreq_sz);
207
208                 if (!strcmp(argv[1], "cpufreq")) {
209                         sram_setfreq(CPU, frequency);
210                         printf("CPU frequency changed to %u\n", frequency);
211                 } else {
212                         sram_setfreq(DDR, frequency);
213                         printf("DDR frequency changed to %u\n", frequency);
214                 }
215
216                 return 0;
217
218 #if defined(CONFIG_CMD_NET)
219         } else if (!strcmp(argv[1], "ethaddr")) {
220
221                 u32 reg;
222                 char *e, *s = argv[2];
223                 for (reg = 0; reg < 6; ++reg) {
224                         mac[reg] = s ? simple_strtoul(s, &e, 16) : 0;
225                         if (s)
226                                 s = (*e) ? e + 1 : e;
227                 }
228                 write_mac(mac);
229
230                 return 0;
231 #endif
232         } else if (!strcmp(argv[1], "print")) {
233 #if defined(CONFIG_CMD_NET)
234                 if (!i2c_read_mac(mac)) {
235                         printf("Ethaddr (from i2c mem) = %pM\n", mac);
236                 } else {
237                         printf("Ethaddr (from i2c mem) = Not set\n");
238                 }
239 #endif
240                 return 0;
241         }
242
243         return cmd_usage(cmdtp);
244 }
245
246 U_BOOT_CMD(chip_config, 3, 1, do_chip_config,
247            "configure chip",
248            "chip_config cpufreq/ddrfreq frequency\n"
249 #if defined(CONFIG_CMD_NET)
250            "chip_config ethaddr XX:XX:XX:XX:XX:XX\n"
251 #endif
252            "chip_config print");