Merge tag 'u-boot-stm32-20200117' of https://gitlab.denx.de/u-boot/custodians/u-boot-stm
[oweals/u-boot.git] / board / esd / vme8349 / vme8349.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * vme8349.c -- esd VME8349 board support
4  *
5  * Copyright (c) 2008-2009 esd gmbh.
6  *
7  * (C) Copyright 2006
8  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
9  *
10  * Reinhard Arlt <reinhard.arlt@esd-electronics.com>
11  * Based on board/mpc8349emds/mpc8349emds.c (and previous 834x releases.)
12  */
13
14 #include <common.h>
15 #include <fdt_support.h>
16 #include <init.h>
17 #include <ioports.h>
18 #include <mpc83xx.h>
19 #include <asm/mpc8349_pci.h>
20 #if defined(CONFIG_OF_LIBFDT)
21 #include <linux/libfdt.h>
22 #endif
23 #include <asm/io.h>
24 #include <asm/mmu.h>
25 #include <spd.h>
26 #include <spd_sdram.h>
27 #include <i2c.h>
28 #include <netdev.h>
29
30 DECLARE_GLOBAL_DATA_PTR;
31
32 void ddr_enable_ecc(unsigned int dram_size);
33
34 int dram_init(void)
35 {
36         volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
37         u32 msize = 0;
38
39         if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32)im)
40                 return -ENXIO;
41
42         /* DDR SDRAM - Main memory */
43         im->sysconf.ddrlaw[0].bar = CONFIG_SYS_SDRAM_BASE & LAWBAR_BAR;
44
45         msize = spd_sdram();
46
47 #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
48         /*
49          * Initialize and enable DDR ECC.
50          */
51         ddr_enable_ecc(msize * 1024 * 1024);
52 #endif
53
54         /* Now check memory size (after ECC is initialized) */
55         msize = get_ram_size(0, msize);
56
57         /* return total bus SDRAM size(bytes)  -- DDR */
58         gd->ram_size = msize * 1024 * 1024;
59
60         return 0;
61 }
62
63 int checkboard(void)
64 {
65 #ifdef CONFIG_TARGET_CADDY2
66         puts("Board: esd VME-CADDY/2\n");
67 #else
68         puts("Board: esd VME-CPU/8349\n");
69 #endif
70
71         return 0;
72 }
73
74 #ifdef CONFIG_TARGET_CADDY2
75 int board_eth_init(bd_t *bis)
76 {
77         return pci_eth_init(bis);
78 }
79 #endif
80
81 #if defined(CONFIG_OF_BOARD_SETUP)
82 int ft_board_setup(void *blob, bd_t *bd)
83 {
84         ft_cpu_setup(blob, bd);
85
86 #ifdef CONFIG_PCI
87         ft_pci_setup(blob, bd);
88 #endif
89
90         return 0;
91 }
92 #endif
93
94 int misc_init_r()
95 {
96         immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
97
98         clrsetbits_be32(&im->im_lbc.lcrr, LBCR_LDIS, 0);
99
100         return 0;
101 }
102
103 /*
104  * Provide SPD values for spd_sdram(). Both boards (VME-CADDY/2
105  * and VME-CADDY/2) have different SDRAM configurations.
106  */
107 #ifdef CONFIG_TARGET_CADDY2
108 #define SMALL_RAM       0xff
109 #define LARGE_RAM       0x00
110 #else
111 #define SMALL_RAM       0x00
112 #define LARGE_RAM       0xff
113 #endif
114
115 #define SPD_VAL(a, b)   (((a) & SMALL_RAM) | ((b) & LARGE_RAM))
116
117 static spd_eeprom_t default_spd_eeprom = {
118         SPD_VAL(0x80, 0x80),    /* 00 use 128 Bytes */
119         SPD_VAL(0x07, 0x07),    /* 01 use 128 Bytes */
120         SPD_MEMTYPE_DDR2,       /* 02 type is DDR2 */
121         SPD_VAL(0x0d, 0x0d),    /* 03 rows: 13 */
122         SPD_VAL(0x09, 0x0a),    /* 04 cols:  9 / 10 */
123         SPD_VAL(0x00, 0x00),    /* 05 */
124         SPD_VAL(0x40, 0x40),    /* 06 */
125         SPD_VAL(0x00, 0x00),    /* 07 */
126         SPD_VAL(0x05, 0x05),    /* 08 */
127         SPD_VAL(0x30, 0x30),    /* 09 */
128         SPD_VAL(0x45, 0x45),    /* 10 */
129         SPD_VAL(0x02, 0x02),    /* 11 ecc used */
130         SPD_VAL(0x82, 0x82),    /* 12 */
131         SPD_VAL(0x10, 0x10),    /* 13 */
132         SPD_VAL(0x08, 0x08),    /* 14 */
133         SPD_VAL(0x00, 0x00),    /* 15 */
134         SPD_VAL(0x0c, 0x0c),    /* 16 */
135         SPD_VAL(0x04, 0x08),    /* 17 banks: 4 / 8 */
136         SPD_VAL(0x38, 0x38),    /* 18 */
137         SPD_VAL(0x00, 0x00),    /* 19 */
138         SPD_VAL(0x02, 0x02),    /* 20 */
139         SPD_VAL(0x00, 0x00),    /* 21 */
140         SPD_VAL(0x03, 0x03),    /* 22 */
141         SPD_VAL(0x3d, 0x3d),    /* 23 */
142         SPD_VAL(0x45, 0x45),    /* 24 */
143         SPD_VAL(0x50, 0x50),    /* 25 */
144         SPD_VAL(0x45, 0x45),    /* 26 */
145         SPD_VAL(0x3c, 0x3c),    /* 27 */
146         SPD_VAL(0x28, 0x28),    /* 28 */
147         SPD_VAL(0x3c, 0x3c),    /* 29 */
148         SPD_VAL(0x2d, 0x2d),    /* 30 */
149         SPD_VAL(0x20, 0x80),    /* 31 */
150         SPD_VAL(0x20, 0x20),    /* 32 */
151         SPD_VAL(0x27, 0x27),    /* 33 */
152         SPD_VAL(0x10, 0x10),    /* 34 */
153         SPD_VAL(0x17, 0x17),    /* 35 */
154         SPD_VAL(0x3c, 0x3c),    /* 36 */
155         SPD_VAL(0x1e, 0x1e),    /* 37 */
156         SPD_VAL(0x1e, 0x1e),    /* 38 */
157         SPD_VAL(0x00, 0x00),    /* 39 */
158         SPD_VAL(0x00, 0x06),    /* 40 */
159         SPD_VAL(0x37, 0x37),    /* 41 */
160         SPD_VAL(0x4b, 0x7f),    /* 42 */
161         SPD_VAL(0x80, 0x80),    /* 43 */
162         SPD_VAL(0x18, 0x18),    /* 44 */
163         SPD_VAL(0x22, 0x22),    /* 45 */
164         SPD_VAL(0x00, 0x00),    /* 46 */
165         { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
166         SPD_VAL(0x10, 0x10),    /* 62 */
167         SPD_VAL(0x7e, 0x1d),    /* 63 */
168         { 'e', 's', 'd', '-', 'g', 'm', 'b', 'h' },
169         SPD_VAL(0x00, 0x00),    /* 72 */
170 #ifdef CONFIG_TARGET_CADDY2
171         { "vme-caddy/2 ram   " }
172 #else
173         { "vme-cpu/2 ram     " }
174 #endif
175 };
176
177 int vme8349_read_spd(uchar chip, uint addr, int alen, uchar *buffer, int len)
178 {
179         int old_bus = i2c_get_bus_num();
180         unsigned int l, sum;
181         int valid = 0;
182
183         i2c_set_bus_num(0);
184
185         if (i2c_read(chip, addr, alen, buffer, len) == 0)
186                 if (memcmp(&buffer[64], &default_spd_eeprom.mid[0], 8) == 0) {
187                         sum = 0;
188                         for (l = 0; l < 63; l++)
189                                 sum = (sum + buffer[l]) & 0xff;
190                         if (sum == buffer[63])
191                                 valid = 1;
192                         else
193                                 printf("Invalid checksum in EEPROM %02x %02x\n",
194                                        sum, buffer[63]);
195                 }
196
197         if (valid == 0) {
198                 memcpy(buffer, (void *)&default_spd_eeprom, len);
199                 sum = 0;
200                 for (l = 0; l < 63; l++)
201                         sum = (sum + buffer[l]) & 0xff;
202                 if (sum != buffer[63])
203                         printf("Invalid checksum in FLASH %02x %02x\n",
204                                sum, buffer[63]);
205                 buffer[63] = sum;
206         }
207
208         i2c_set_bus_num(old_bus);
209
210         return 0;
211 }