Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 2 | /* |
| 3 | * board/renesas/blanche/blanche.c |
| 4 | * This file is blanche board support. |
| 5 | * |
| 6 | * Copyright (C) 2016 Renesas Electronics Corporation |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Simon Glass | 9a3b4ce | 2019-12-28 10:45:01 -0700 | [diff] [blame] | 10 | #include <cpu_func.h> |
Simon Glass | 691d719 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 11 | #include <init.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 12 | #include <net.h> |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 13 | #include <asm/arch/mmc.h> |
| 14 | #include <asm/arch/rcar-mstp.h> |
| 15 | #include <asm/arch/rmobile.h> |
| 16 | #include <asm/arch/sh_sdhi.h> |
| 17 | #include <asm/arch/sys_proto.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 18 | #include <asm/global_data.h> |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 19 | #include <asm/gpio.h> |
| 20 | #include <asm/io.h> |
| 21 | #include <asm/mach-types.h> |
| 22 | #include <asm/processor.h> |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 23 | #include <dm.h> |
| 24 | #include <dm/platform_data/serial_sh.h> |
Simon Glass | 9fb625c | 2019-08-01 09:46:51 -0600 | [diff] [blame] | 25 | #include <env.h> |
Marek Vasut | 4666521 | 2020-03-21 16:57:58 +0100 | [diff] [blame] | 26 | #include <hang.h> |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 27 | #include <i2c.h> |
Simon Glass | cd93d62 | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 28 | #include <linux/bitops.h> |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 29 | #include <linux/errno.h> |
| 30 | #include <malloc.h> |
| 31 | #include <miiphy.h> |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 32 | #include <mmc.h> |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 33 | #include <netdev.h> |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 34 | #include "qos.h" |
| 35 | |
| 36 | DECLARE_GLOBAL_DATA_PTR; |
| 37 | |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 38 | #define CPG_PLL1CR 0xE6150028 |
| 39 | #define CPG_PLL3CR 0xE61500DC |
| 40 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 41 | #define TMU0_MSTP125 BIT(25) |
| 42 | #define QSPI_MSTP917 BIT(17) |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 43 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 44 | struct reg_config { |
| 45 | u16 off; |
| 46 | u32 val; |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 47 | }; |
| 48 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 49 | static void blanche_init_sys(void) |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 50 | { |
| 51 | struct rcar_rwdt *rwdt = (struct rcar_rwdt *)RWDT_BASE; |
| 52 | struct rcar_swdt *swdt = (struct rcar_swdt *)SWDT_BASE; |
| 53 | u32 cpu_type; |
| 54 | |
| 55 | cpu_type = rmobile_get_cpu_type(); |
| 56 | if (cpu_type == 0x4A) { |
| 57 | writel(0x4D000000, CPG_PLL1CR); |
| 58 | writel(0x4F000000, CPG_PLL3CR); |
| 59 | } |
| 60 | |
| 61 | /* Watchdog init */ |
| 62 | writel(0xA5A5A500, &rwdt->rwtcsra); |
| 63 | writel(0xA5A5A500, &swdt->swtcsra); |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 64 | } |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 65 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 66 | static void blanche_init_pfc(void) |
| 67 | { |
| 68 | static const struct reg_config pfc_with_unlock[] = { |
| 69 | { 0x0004, 0x0bffffff }, |
| 70 | { 0x0008, 0x002fffff }, |
| 71 | { 0x0014, 0x00000fff }, |
| 72 | { 0x0018, 0x00010fff }, |
| 73 | { 0x001c, 0x00010fff }, |
| 74 | { 0x0020, 0x00010fff }, |
| 75 | { 0x0024, 0x00010fff }, |
| 76 | { 0x0028, 0x00010fff }, |
| 77 | { 0x002c, 0x04006000 }, |
| 78 | { 0x0030, 0x303fefe0 }, |
| 79 | { 0x0058, 0x0002000e }, |
| 80 | }; |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 81 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 82 | static const struct reg_config pfc_without_unlock[] = { |
| 83 | { 0x0108, 0x00000000 }, |
| 84 | { 0x010c, 0x0803FF40 }, |
| 85 | { 0x0110, 0x0000FFFF }, |
| 86 | { 0x0114, 0x00010FFF }, |
| 87 | { 0x011c, 0x0001AFFF }, |
| 88 | { 0x0124, 0x0001CFFF }, |
| 89 | { 0x0128, 0xC0438001 }, |
| 90 | { 0x012c, 0x0FC00007 }, |
| 91 | }; |
| 92 | |
| 93 | static const u32 pfc_base = 0xe6060000; |
| 94 | |
| 95 | unsigned int i; |
| 96 | |
| 97 | for (i = 0; i < ARRAY_SIZE(pfc_with_unlock); i++) { |
| 98 | writel(~pfc_with_unlock[i].val, pfc_base); |
| 99 | writel(pfc_with_unlock[i].val, |
| 100 | pfc_base | pfc_with_unlock[i].off); |
| 101 | } |
| 102 | |
| 103 | for (i = 0; i < ARRAY_SIZE(pfc_without_unlock); i++) |
| 104 | writel(pfc_without_unlock[i].val, |
| 105 | pfc_base | pfc_without_unlock[i].off); |
| 106 | } |
| 107 | |
| 108 | static void blanche_init_lbsc(void) |
| 109 | { |
| 110 | static const struct reg_config lbsc_config[] = { |
| 111 | { 0x00, 0x00000020 }, |
| 112 | { 0x08, 0x00002020 }, |
| 113 | { 0x30, 0x2a103320 }, |
| 114 | { 0x38, 0x19102110 }, |
| 115 | }; |
| 116 | |
| 117 | static const u32 lbsc_base = 0xfec00200; |
| 118 | |
| 119 | unsigned int i; |
| 120 | |
| 121 | for (i = 0; i < ARRAY_SIZE(lbsc_config); i++) { |
| 122 | writel(lbsc_config[i].val, |
| 123 | lbsc_base | lbsc_config[i].off); |
| 124 | writel(lbsc_config[i].val, |
| 125 | lbsc_base | (lbsc_config[i].off + 4)); |
| 126 | } |
| 127 | } |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 128 | |
Masahiro Yamada | e856bdc | 2017-02-11 22:43:54 +0900 | [diff] [blame] | 129 | #if defined(CONFIG_MTD_NOR_FLASH) |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 130 | static void dbsc_wait(u16 reg) |
| 131 | { |
| 132 | static const u32 dbsc3_0_base = DBSC3_0_BASE; |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 133 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 134 | while (!(readl(dbsc3_0_base + reg) & BIT(0))) |
| 135 | ; |
| 136 | } |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 137 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 138 | static void blanche_init_dbsc(void) |
| 139 | { |
| 140 | static const struct reg_config dbsc_config1[] = { |
| 141 | { 0x0280, 0x0000a55a }, |
| 142 | { 0x0018, 0x21000000 }, |
| 143 | { 0x0018, 0x11000000 }, |
| 144 | { 0x0018, 0x10000000 }, |
| 145 | { 0x0290, 0x00000001 }, |
| 146 | { 0x02a0, 0x80000000 }, |
| 147 | { 0x0290, 0x00000004 }, |
| 148 | }; |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 149 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 150 | static const struct reg_config dbsc_config2[] = { |
| 151 | { 0x0290, 0x00000006 }, |
| 152 | { 0x02a0, 0x0001c000 }, |
| 153 | }; |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 154 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 155 | static const struct reg_config dbsc_config4[] = { |
| 156 | { 0x0290, 0x0000000f }, |
| 157 | { 0x02a0, 0x00181ee4 }, |
| 158 | { 0x0290, 0x00000010 }, |
| 159 | { 0x02a0, 0xf00464db }, |
| 160 | { 0x0290, 0x00000061 }, |
| 161 | { 0x02a0, 0x0000008d }, |
| 162 | { 0x0290, 0x00000001 }, |
| 163 | { 0x02a0, 0x00000073 }, |
| 164 | { 0x0020, 0x00000007 }, |
| 165 | { 0x0024, 0x0f030a02 }, |
| 166 | { 0x0030, 0x00000001 }, |
| 167 | { 0x00b0, 0x00000000 }, |
| 168 | { 0x0040, 0x0000000b }, |
| 169 | { 0x0044, 0x00000008 }, |
| 170 | { 0x0048, 0x00000000 }, |
| 171 | { 0x0050, 0x0000000b }, |
| 172 | { 0x0054, 0x000c000b }, |
| 173 | { 0x0058, 0x00000027 }, |
| 174 | { 0x005c, 0x0000001c }, |
| 175 | { 0x0060, 0x00000006 }, |
| 176 | { 0x0064, 0x00000020 }, |
| 177 | { 0x0068, 0x00000008 }, |
| 178 | { 0x006c, 0x0000000c }, |
| 179 | { 0x0070, 0x00000009 }, |
| 180 | { 0x0074, 0x00000012 }, |
| 181 | { 0x0078, 0x000000d0 }, |
| 182 | { 0x007c, 0x00140005 }, |
| 183 | { 0x0080, 0x00050004 }, |
| 184 | { 0x0084, 0x70233005 }, |
| 185 | { 0x0088, 0x000c0000 }, |
| 186 | { 0x008c, 0x00000300 }, |
| 187 | { 0x0090, 0x00000040 }, |
| 188 | { 0x0100, 0x00000001 }, |
| 189 | { 0x00c0, 0x00020001 }, |
| 190 | { 0x00c8, 0x20082004 }, |
| 191 | { 0x0380, 0x00020002 }, |
| 192 | { 0x0390, 0x0000001f }, |
| 193 | }; |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 194 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 195 | static const struct reg_config dbsc_config5[] = { |
| 196 | { 0x0244, 0x00000011 }, |
| 197 | { 0x0290, 0x00000003 }, |
| 198 | { 0x02a0, 0x0300c4e1 }, |
| 199 | { 0x0290, 0x00000023 }, |
| 200 | { 0x02a0, 0x00fcdb60 }, |
| 201 | { 0x0290, 0x00000011 }, |
| 202 | { 0x02a0, 0x1000040b }, |
| 203 | { 0x0290, 0x00000012 }, |
| 204 | { 0x02a0, 0x9d9cbb66 }, |
| 205 | { 0x0290, 0x00000013 }, |
| 206 | { 0x02a0, 0x1a868400 }, |
| 207 | { 0x0290, 0x00000014 }, |
| 208 | { 0x02a0, 0x300214d8 }, |
| 209 | { 0x0290, 0x00000015 }, |
| 210 | { 0x02a0, 0x00000d70 }, |
| 211 | { 0x0290, 0x00000016 }, |
| 212 | { 0x02a0, 0x00000004 }, |
| 213 | { 0x0290, 0x00000017 }, |
| 214 | { 0x02a0, 0x00000018 }, |
| 215 | { 0x0290, 0x0000001a }, |
| 216 | { 0x02a0, 0x910035c7 }, |
| 217 | { 0x0290, 0x00000004 }, |
| 218 | }; |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 219 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 220 | static const struct reg_config dbsc_config6[] = { |
| 221 | { 0x0290, 0x00000001 }, |
| 222 | { 0x02a0, 0x00000181 }, |
| 223 | { 0x0018, 0x11000000 }, |
| 224 | { 0x0290, 0x00000004 }, |
| 225 | }; |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 226 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 227 | static const struct reg_config dbsc_config7[] = { |
| 228 | { 0x0290, 0x00000001 }, |
| 229 | { 0x02a0, 0x0000fe01 }, |
| 230 | { 0x0304, 0x00000000 }, |
| 231 | { 0x00f4, 0x01004c20 }, |
| 232 | { 0x00f8, 0x014000aa }, |
| 233 | { 0x00e0, 0x00000140 }, |
| 234 | { 0x00e4, 0x00081860 }, |
| 235 | { 0x00e8, 0x00010000 }, |
| 236 | { 0x0290, 0x00000004 }, |
| 237 | }; |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 238 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 239 | static const struct reg_config dbsc_config8[] = { |
| 240 | { 0x0014, 0x00000001 }, |
| 241 | { 0x0010, 0x00000001 }, |
| 242 | { 0x0280, 0x00000000 }, |
| 243 | }; |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 244 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 245 | static const u32 dbsc3_0_base = DBSC3_0_BASE; |
| 246 | unsigned int i; |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 247 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 248 | for (i = 0; i < ARRAY_SIZE(dbsc_config1); i++) |
| 249 | writel(dbsc_config1[i].val, dbsc3_0_base | dbsc_config1[i].off); |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 250 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 251 | dbsc_wait(0x2a0); |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 252 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 253 | for (i = 0; i < ARRAY_SIZE(dbsc_config2); i++) |
| 254 | writel(dbsc_config2[i].val, dbsc3_0_base | dbsc_config2[i].off); |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 255 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 256 | for (i = 0; i < ARRAY_SIZE(dbsc_config4); i++) |
| 257 | writel(dbsc_config4[i].val, dbsc3_0_base | dbsc_config4[i].off); |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 258 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 259 | dbsc_wait(0x240); |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 260 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 261 | for (i = 0; i < ARRAY_SIZE(dbsc_config5); i++) |
| 262 | writel(dbsc_config5[i].val, dbsc3_0_base | dbsc_config5[i].off); |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 263 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 264 | dbsc_wait(0x2a0); |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 265 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 266 | for (i = 0; i < ARRAY_SIZE(dbsc_config6); i++) |
| 267 | writel(dbsc_config6[i].val, dbsc3_0_base | dbsc_config6[i].off); |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 268 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 269 | dbsc_wait(0x2a0); |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 270 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 271 | for (i = 0; i < ARRAY_SIZE(dbsc_config7); i++) |
| 272 | writel(dbsc_config7[i].val, dbsc3_0_base | dbsc_config7[i].off); |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 273 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 274 | dbsc_wait(0x2a0); |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 275 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 276 | for (i = 0; i < ARRAY_SIZE(dbsc_config8); i++) |
| 277 | writel(dbsc_config8[i].val, dbsc3_0_base | dbsc_config8[i].off); |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 278 | |
| 279 | } |
| 280 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 281 | static void s_init_wait(volatile unsigned int cnt) |
| 282 | { |
| 283 | volatile u32 i = cnt * 0x10000; |
| 284 | |
| 285 | while (i-- > 0) |
| 286 | ; |
| 287 | } |
| 288 | #endif |
| 289 | |
| 290 | void s_init(void) |
| 291 | { |
| 292 | blanche_init_sys(); |
| 293 | qos_init(); |
| 294 | blanche_init_pfc(); |
| 295 | blanche_init_lbsc(); |
| 296 | #if defined(CONFIG_MTD_NOR_FLASH) |
| 297 | s_init_wait(10); |
| 298 | blanche_init_dbsc(); |
| 299 | #endif /* CONFIG_MTD_NOR_FLASH */ |
| 300 | } |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 301 | |
| 302 | int board_early_init_f(void) |
| 303 | { |
| 304 | /* TMU0 */ |
| 305 | mstp_clrbits_le32(MSTPSR1, SMSTPCR1, TMU0_MSTP125); |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 306 | /* QSPI */ |
| 307 | mstp_clrbits_le32(MSTPSR9, SMSTPCR9, QSPI_MSTP917); |
| 308 | |
| 309 | return 0; |
| 310 | } |
| 311 | |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 312 | int board_init(void) |
| 313 | { |
| 314 | /* adress of boot parameters */ |
Tom Rini | aa6e94d | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 315 | gd->bd->bi_boot_params = CFG_SYS_SDRAM_BASE + 0x100; |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 316 | |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 317 | return 0; |
| 318 | } |
| 319 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 320 | /* Added for BLANCHE(R-CarV2H board) */ |
Marek Vasut | 264398b | 2020-03-21 17:38:57 +0100 | [diff] [blame] | 321 | #ifndef CONFIG_DM_ETH |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 322 | int board_eth_init(struct bd_info *bis) |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 323 | { |
| 324 | int rc = 0; |
| 325 | |
| 326 | #ifdef CONFIG_SMC911X |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 327 | struct eth_device *dev; |
| 328 | uchar eth_addr[6]; |
| 329 | |
Tom Rini | 6e7df1d | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 330 | rc = smc911x_initialize(0, CFG_SMC911X_BASE); |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 331 | |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 332 | if (!eth_env_get_enetaddr("ethaddr", eth_addr)) { |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 333 | dev = eth_get_dev_by_index(0); |
| 334 | if (dev) { |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 335 | eth_env_set_enetaddr("ethaddr", dev->enetaddr); |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 336 | } else { |
| 337 | printf("blanche: Couldn't get eth device\n"); |
| 338 | rc = -1; |
| 339 | } |
| 340 | } |
| 341 | |
| 342 | #endif |
| 343 | |
| 344 | return rc; |
| 345 | } |
Marek Vasut | 264398b | 2020-03-21 17:38:57 +0100 | [diff] [blame] | 346 | #endif |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 347 | |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 348 | int dram_init(void) |
| 349 | { |
Siva Durga Prasad Paladugu | 12308b1 | 2018-07-16 15:56:11 +0530 | [diff] [blame] | 350 | if (fdtdec_setup_mem_size_base() != 0) |
Marek Vasut | e9c891f | 2018-04-30 14:10:36 +0200 | [diff] [blame] | 351 | return -EINVAL; |
| 352 | |
| 353 | return 0; |
| 354 | } |
| 355 | |
| 356 | int dram_init_banksize(void) |
| 357 | { |
| 358 | fdtdec_setup_memory_banksize(); |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 359 | |
| 360 | return 0; |
| 361 | } |
| 362 | |
Harald Seiler | 35b65dd | 2020-12-15 16:47:52 +0100 | [diff] [blame] | 363 | void reset_cpu(void) |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 364 | { |
Marek Vasut | 4666521 | 2020-03-21 16:57:58 +0100 | [diff] [blame] | 365 | struct udevice *dev; |
| 366 | const u8 pmic_bus = 6; |
| 367 | const u8 pmic_addr = 0x58; |
| 368 | u8 data; |
| 369 | int ret; |
| 370 | |
| 371 | ret = i2c_get_chip_for_busnum(pmic_bus, pmic_addr, 1, &dev); |
| 372 | if (ret) |
| 373 | hang(); |
| 374 | |
| 375 | ret = dm_i2c_read(dev, 0x13, &data, 1); |
| 376 | if (ret) |
| 377 | hang(); |
| 378 | |
| 379 | data |= BIT(1); |
| 380 | |
| 381 | ret = dm_i2c_write(dev, 0x13, &data, 1); |
| 382 | if (ret) |
| 383 | hang(); |
masakazu.mochizuki.wd@hitachi.com | 6f107e4 | 2016-04-12 17:11:41 +0900 | [diff] [blame] | 384 | } |