Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2012 Freescale Semiconductor, Inc. |
| 4 | * Author: Fabio Estevam <fabio.estevam@freescale.com> |
| 5 | * |
Matthias Schiffer | a5e3052 | 2021-11-02 11:36:46 +0100 | [diff] [blame] | 6 | * Copyright (C) 2013, 2014 TQ-Systems (ported SabreSD to TQMa6x) |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 7 | * Author: Markus Niebel <markus.niebel@tq-group.com> |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 8 | */ |
| 9 | |
Simon Glass | 5255932 | 2019-11-14 12:57:46 -0700 | [diff] [blame] | 10 | #include <init.h> |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 11 | #include <asm/arch/clock.h> |
| 12 | #include <asm/arch/mx6-pins.h> |
| 13 | #include <asm/arch/imx-regs.h> |
| 14 | #include <asm/arch/iomux.h> |
| 15 | #include <asm/arch/sys_proto.h> |
Simon Glass | 9fb625c | 2019-08-01 09:46:51 -0600 | [diff] [blame] | 16 | #include <env.h> |
Simon Glass | 4d72caa | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 17 | #include <fdt_support.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 18 | #include <asm/global_data.h> |
Masahiro Yamada | 1221ce4 | 2016-09-21 11:28:55 +0900 | [diff] [blame] | 19 | #include <linux/errno.h> |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 20 | #include <asm/gpio.h> |
| 21 | #include <asm/io.h> |
Stefano Babic | 552a848 | 2017-06-29 10:16:06 +0200 | [diff] [blame] | 22 | #include <asm/mach-imx/mxc_i2c.h> |
| 23 | #include <asm/mach-imx/spi.h> |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 24 | #include <common.h> |
Yangbo Lu | e37ac71 | 2019-06-21 11:42:28 +0800 | [diff] [blame] | 25 | #include <fsl_esdhc_imx.h> |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 26 | #include <linux/libfdt.h> |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 27 | #include <i2c.h> |
| 28 | #include <mmc.h> |
| 29 | #include <power/pfuze100_pmic.h> |
| 30 | #include <power/pmic.h> |
Stefan Roese | 8b8ca0d | 2015-08-05 10:50:50 +0200 | [diff] [blame] | 31 | #include <spi_flash.h> |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 32 | |
| 33 | #include "tqma6_bb.h" |
| 34 | |
| 35 | DECLARE_GLOBAL_DATA_PTR; |
| 36 | |
| 37 | #define USDHC_CLK_PAD_CTRL (PAD_CTL_PUS_47K_UP | PAD_CTL_SPEED_LOW | \ |
| 38 | PAD_CTL_DSE_40ohm | PAD_CTL_SRE_FAST | PAD_CTL_HYS) |
| 39 | |
| 40 | #define USDHC_PAD_CTRL (PAD_CTL_PUS_47K_UP | PAD_CTL_SPEED_LOW | \ |
| 41 | PAD_CTL_DSE_80ohm | PAD_CTL_SRE_FAST | PAD_CTL_HYS) |
| 42 | |
| 43 | #define GPIO_OUT_PAD_CTRL (PAD_CTL_PUS_100K_UP | PAD_CTL_SPEED_LOW | \ |
| 44 | PAD_CTL_DSE_40ohm | PAD_CTL_HYS) |
| 45 | |
| 46 | #define GPIO_IN_PAD_CTRL (PAD_CTL_PUS_100K_UP | PAD_CTL_SPEED_LOW | \ |
| 47 | PAD_CTL_DSE_40ohm | PAD_CTL_HYS) |
| 48 | |
| 49 | #define SPI_PAD_CTRL (PAD_CTL_PUS_100K_UP | PAD_CTL_SPEED_MED | \ |
| 50 | PAD_CTL_DSE_80ohm | PAD_CTL_SRE_FAST | PAD_CTL_HYS) |
| 51 | |
| 52 | #define I2C_PAD_CTRL (PAD_CTL_PUS_100K_UP | PAD_CTL_SPEED_MED | \ |
Markus Niebel | 03cfff0 | 2017-02-03 16:24:59 +0100 | [diff] [blame] | 53 | PAD_CTL_DSE_80ohm | PAD_CTL_HYS | \ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 54 | PAD_CTL_ODE | PAD_CTL_SRE_FAST) |
| 55 | |
| 56 | int dram_init(void) |
| 57 | { |
Markus Niebel | b6d7810 | 2014-11-18 13:22:57 +0100 | [diff] [blame] | 58 | gd->ram_size = imx_ddr_size(); |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 59 | |
| 60 | return 0; |
| 61 | } |
| 62 | |
| 63 | static const uint16_t tqma6_emmc_dsr = 0x0100; |
| 64 | |
Michael Krummsdorf | b7c1447 | 2020-04-09 15:21:41 +0200 | [diff] [blame] | 65 | #ifndef CONFIG_DM_MMC |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 66 | /* eMMC on USDHCI3 always present */ |
| 67 | static iomux_v3_cfg_t const tqma6_usdhc3_pads[] = { |
| 68 | NEW_PAD_CTRL(MX6_PAD_SD3_CLK__SD3_CLK, USDHC_PAD_CTRL), |
| 69 | NEW_PAD_CTRL(MX6_PAD_SD3_CMD__SD3_CMD, USDHC_PAD_CTRL), |
| 70 | NEW_PAD_CTRL(MX6_PAD_SD3_DAT0__SD3_DATA0, USDHC_PAD_CTRL), |
| 71 | NEW_PAD_CTRL(MX6_PAD_SD3_DAT1__SD3_DATA1, USDHC_PAD_CTRL), |
| 72 | NEW_PAD_CTRL(MX6_PAD_SD3_DAT2__SD3_DATA2, USDHC_PAD_CTRL), |
| 73 | NEW_PAD_CTRL(MX6_PAD_SD3_DAT3__SD3_DATA3, USDHC_PAD_CTRL), |
| 74 | NEW_PAD_CTRL(MX6_PAD_SD3_DAT4__SD3_DATA4, USDHC_PAD_CTRL), |
| 75 | NEW_PAD_CTRL(MX6_PAD_SD3_DAT5__SD3_DATA5, USDHC_PAD_CTRL), |
| 76 | NEW_PAD_CTRL(MX6_PAD_SD3_DAT6__SD3_DATA6, USDHC_PAD_CTRL), |
| 77 | NEW_PAD_CTRL(MX6_PAD_SD3_DAT7__SD3_DATA7, USDHC_PAD_CTRL), |
| 78 | /* eMMC reset */ |
| 79 | NEW_PAD_CTRL(MX6_PAD_SD3_RST__SD3_RESET, GPIO_OUT_PAD_CTRL), |
| 80 | }; |
| 81 | |
| 82 | /* |
| 83 | * According to board_mmc_init() the following map is done: |
Bin Meng | a187559 | 2016-02-05 19:30:11 -0800 | [diff] [blame] | 84 | * (U-Boot device node) (Physical Port) |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 85 | * mmc0 eMMC (SD3) on TQMa6 |
| 86 | * mmc1 .. n optional slots used on baseboard |
| 87 | */ |
| 88 | struct fsl_esdhc_cfg tqma6_usdhc_cfg = { |
| 89 | .esdhc_base = USDHC3_BASE_ADDR, |
| 90 | .max_bus_width = 8, |
| 91 | }; |
| 92 | |
| 93 | int board_mmc_getcd(struct mmc *mmc) |
| 94 | { |
| 95 | struct fsl_esdhc_cfg *cfg = (struct fsl_esdhc_cfg *)mmc->priv; |
| 96 | int ret = 0; |
| 97 | |
| 98 | if (cfg->esdhc_base == USDHC3_BASE_ADDR) |
| 99 | /* eMMC/uSDHC3 is always present */ |
| 100 | ret = 1; |
| 101 | else |
| 102 | ret = tqma6_bb_board_mmc_getcd(mmc); |
| 103 | |
| 104 | return ret; |
| 105 | } |
| 106 | |
| 107 | int board_mmc_getwp(struct mmc *mmc) |
| 108 | { |
| 109 | struct fsl_esdhc_cfg *cfg = (struct fsl_esdhc_cfg *)mmc->priv; |
| 110 | int ret = 0; |
| 111 | |
| 112 | if (cfg->esdhc_base == USDHC3_BASE_ADDR) |
| 113 | /* eMMC/uSDHC3 is always present */ |
| 114 | ret = 0; |
| 115 | else |
| 116 | ret = tqma6_bb_board_mmc_getwp(mmc); |
| 117 | |
| 118 | return ret; |
| 119 | } |
| 120 | |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 121 | int board_mmc_init(struct bd_info *bis) |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 122 | { |
| 123 | imx_iomux_v3_setup_multiple_pads(tqma6_usdhc3_pads, |
| 124 | ARRAY_SIZE(tqma6_usdhc3_pads)); |
| 125 | tqma6_usdhc_cfg.sdhc_clk = mxc_get_clock(MXC_ESDHC3_CLK); |
| 126 | if (fsl_esdhc_initialize(bis, &tqma6_usdhc_cfg)) { |
| 127 | puts("Warning: failed to initialize eMMC dev\n"); |
| 128 | } else { |
| 129 | struct mmc *mmc = find_mmc_device(0); |
| 130 | if (mmc) |
| 131 | mmc_set_dsr(mmc, tqma6_emmc_dsr); |
| 132 | } |
| 133 | |
| 134 | tqma6_bb_board_mmc_init(bis); |
| 135 | |
| 136 | return 0; |
| 137 | } |
Michael Krummsdorf | b7c1447 | 2020-04-09 15:21:41 +0200 | [diff] [blame] | 138 | #endif |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 139 | |
Michael Krummsdorf | b7c1447 | 2020-04-09 15:21:41 +0200 | [diff] [blame] | 140 | #ifndef CONFIG_DM_SPI |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 141 | static iomux_v3_cfg_t const tqma6_ecspi1_pads[] = { |
| 142 | /* SS1 */ |
| 143 | NEW_PAD_CTRL(MX6_PAD_EIM_D19__GPIO3_IO19, SPI_PAD_CTRL), |
| 144 | NEW_PAD_CTRL(MX6_PAD_EIM_D16__ECSPI1_SCLK, SPI_PAD_CTRL), |
| 145 | NEW_PAD_CTRL(MX6_PAD_EIM_D17__ECSPI1_MISO, SPI_PAD_CTRL), |
| 146 | NEW_PAD_CTRL(MX6_PAD_EIM_D18__ECSPI1_MOSI, SPI_PAD_CTRL), |
| 147 | }; |
| 148 | |
Markus Niebel | 1719d49 | 2014-10-23 15:47:05 +0200 | [diff] [blame] | 149 | #define TQMA6_SF_CS_GPIO IMX_GPIO_NR(3, 19) |
| 150 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 151 | static unsigned const tqma6_ecspi1_cs[] = { |
Markus Niebel | 1719d49 | 2014-10-23 15:47:05 +0200 | [diff] [blame] | 152 | TQMA6_SF_CS_GPIO, |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 153 | }; |
| 154 | |
Stefan Roese | 34ee786 | 2015-03-12 13:34:30 +0100 | [diff] [blame] | 155 | __weak void tqma6_iomuxc_spi(void) |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 156 | { |
| 157 | unsigned i; |
| 158 | |
| 159 | for (i = 0; i < ARRAY_SIZE(tqma6_ecspi1_cs); ++i) |
| 160 | gpio_direction_output(tqma6_ecspi1_cs[i], 1); |
| 161 | imx_iomux_v3_setup_multiple_pads(tqma6_ecspi1_pads, |
| 162 | ARRAY_SIZE(tqma6_ecspi1_pads)); |
| 163 | } |
| 164 | |
Patrick Delaunay | 9309aad | 2019-02-27 15:20:35 +0100 | [diff] [blame] | 165 | #if defined(CONFIG_SF_DEFAULT_BUS) && defined(CONFIG_SF_DEFAULT_CS) |
Markus Niebel | 1719d49 | 2014-10-23 15:47:05 +0200 | [diff] [blame] | 166 | int board_spi_cs_gpio(unsigned bus, unsigned cs) |
| 167 | { |
| 168 | return ((bus == CONFIG_SF_DEFAULT_BUS) && |
| 169 | (cs == CONFIG_SF_DEFAULT_CS)) ? TQMA6_SF_CS_GPIO : -1; |
| 170 | } |
Patrick Delaunay | 9309aad | 2019-02-27 15:20:35 +0100 | [diff] [blame] | 171 | #endif |
Michael Krummsdorf | b7c1447 | 2020-04-09 15:21:41 +0200 | [diff] [blame] | 172 | #endif |
Markus Niebel | 1719d49 | 2014-10-23 15:47:05 +0200 | [diff] [blame] | 173 | |
Tom Rini | 55dabcc | 2021-08-18 23:12:24 -0400 | [diff] [blame] | 174 | #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY) |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 175 | static struct i2c_pads_info tqma6_i2c3_pads = { |
| 176 | /* I2C3: on board LM75, M24C64, */ |
| 177 | .scl = { |
| 178 | .i2c_mode = NEW_PAD_CTRL(MX6_PAD_GPIO_5__I2C3_SCL, |
| 179 | I2C_PAD_CTRL), |
| 180 | .gpio_mode = NEW_PAD_CTRL(MX6_PAD_GPIO_5__GPIO1_IO05, |
| 181 | I2C_PAD_CTRL), |
| 182 | .gp = IMX_GPIO_NR(1, 5) |
| 183 | }, |
| 184 | .sda = { |
| 185 | .i2c_mode = NEW_PAD_CTRL(MX6_PAD_GPIO_6__I2C3_SDA, |
| 186 | I2C_PAD_CTRL), |
| 187 | .gpio_mode = NEW_PAD_CTRL(MX6_PAD_GPIO_6__GPIO1_IO06, |
| 188 | I2C_PAD_CTRL), |
| 189 | .gp = IMX_GPIO_NR(1, 6) |
| 190 | } |
| 191 | }; |
| 192 | |
| 193 | static void tqma6_setup_i2c(void) |
| 194 | { |
Markus Niebel | fd53ec5 | 2014-11-18 13:22:56 +0100 | [diff] [blame] | 195 | int ret; |
| 196 | /* |
| 197 | * use logical index for bus, e.g. I2C1 -> 0 |
| 198 | * warn on error |
| 199 | */ |
| 200 | ret = setup_i2c(2, CONFIG_SYS_I2C_SPEED, 0x7f, &tqma6_i2c3_pads); |
| 201 | if (ret) |
| 202 | printf("setup I2C3 failed: %d\n", ret); |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 203 | } |
Michael Krummsdorf | b7c1447 | 2020-04-09 15:21:41 +0200 | [diff] [blame] | 204 | #endif |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 205 | |
| 206 | int board_early_init_f(void) |
| 207 | { |
| 208 | return tqma6_bb_board_early_init_f(); |
| 209 | } |
| 210 | |
| 211 | int board_init(void) |
| 212 | { |
| 213 | /* address of boot parameters */ |
| 214 | gd->bd->bi_boot_params = PHYS_SDRAM + 0x100; |
| 215 | |
Michael Krummsdorf | b7c1447 | 2020-04-09 15:21:41 +0200 | [diff] [blame] | 216 | #ifndef CONFIG_DM_SPI |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 217 | tqma6_iomuxc_spi(); |
Michael Krummsdorf | b7c1447 | 2020-04-09 15:21:41 +0200 | [diff] [blame] | 218 | #endif |
Tom Rini | 55dabcc | 2021-08-18 23:12:24 -0400 | [diff] [blame] | 219 | #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY) |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 220 | tqma6_setup_i2c(); |
Michael Krummsdorf | b7c1447 | 2020-04-09 15:21:41 +0200 | [diff] [blame] | 221 | #endif |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 222 | |
| 223 | tqma6_bb_board_init(); |
| 224 | |
| 225 | return 0; |
| 226 | } |
| 227 | |
| 228 | static const char *tqma6_get_boardname(void) |
| 229 | { |
| 230 | u32 cpurev = get_cpu_rev(); |
| 231 | |
| 232 | switch ((cpurev & 0xFF000) >> 12) { |
| 233 | case MXC_CPU_MX6SOLO: |
| 234 | return "TQMa6S"; |
| 235 | break; |
| 236 | case MXC_CPU_MX6DL: |
| 237 | return "TQMa6DL"; |
| 238 | break; |
| 239 | case MXC_CPU_MX6D: |
| 240 | return "TQMa6D"; |
| 241 | break; |
| 242 | case MXC_CPU_MX6Q: |
| 243 | return "TQMa6Q"; |
| 244 | break; |
| 245 | default: |
| 246 | return "??"; |
| 247 | }; |
| 248 | } |
| 249 | |
Simon Glass | 9d8665b | 2021-08-08 12:20:27 -0600 | [diff] [blame] | 250 | #if CONFIG_IS_ENABLED(POWER_LEGACY) |
Markus Niebel | d7d8e8e | 2017-02-03 16:24:58 +0100 | [diff] [blame] | 251 | /* setup board specific PMIC */ |
| 252 | int power_init_board(void) |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 253 | { |
| 254 | struct pmic *p; |
Markus Niebel | d7d8e8e | 2017-02-03 16:24:58 +0100 | [diff] [blame] | 255 | u32 reg, rev; |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 256 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 257 | power_pfuze100_init(TQMA6_PFUZE100_I2C_BUS); |
Fabio Estevam | 676ac24 | 2014-08-01 08:50:03 -0300 | [diff] [blame] | 258 | p = pmic_get("PFUZE100"); |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 259 | if (p && !pmic_probe(p)) { |
| 260 | pmic_reg_read(p, PFUZE100_DEVICEID, ®); |
Markus Niebel | d7d8e8e | 2017-02-03 16:24:58 +0100 | [diff] [blame] | 261 | pmic_reg_read(p, PFUZE100_REVID, &rev); |
| 262 | printf("PMIC: PFUZE100 ID=0x%02x REV=0x%02x\n", reg, rev); |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 263 | } |
| 264 | |
Markus Niebel | d7d8e8e | 2017-02-03 16:24:58 +0100 | [diff] [blame] | 265 | return 0; |
| 266 | } |
Michael Krummsdorf | b7c1447 | 2020-04-09 15:21:41 +0200 | [diff] [blame] | 267 | #endif |
Markus Niebel | d7d8e8e | 2017-02-03 16:24:58 +0100 | [diff] [blame] | 268 | |
| 269 | int board_late_init(void) |
| 270 | { |
Simon Glass | 382bee5 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 271 | env_set("board_name", tqma6_get_boardname()); |
Markus Niebel | d7d8e8e | 2017-02-03 16:24:58 +0100 | [diff] [blame] | 272 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 273 | tqma6_bb_board_late_init(); |
| 274 | |
| 275 | return 0; |
| 276 | } |
| 277 | |
| 278 | int checkboard(void) |
| 279 | { |
| 280 | printf("Board: %s on a %s\n", tqma6_get_boardname(), |
| 281 | tqma6_bb_get_boardname()); |
| 282 | return 0; |
| 283 | } |
| 284 | |
| 285 | /* |
| 286 | * Device Tree Support |
| 287 | */ |
| 288 | #if defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_OF_LIBFDT) |
Markus Niebel | 468fb1e | 2017-02-28 16:37:33 +0100 | [diff] [blame] | 289 | #define MODELSTRLEN 32u |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 290 | int ft_board_setup(void *blob, struct bd_info *bd) |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 291 | { |
Markus Niebel | 468fb1e | 2017-02-28 16:37:33 +0100 | [diff] [blame] | 292 | char modelstr[MODELSTRLEN]; |
| 293 | |
| 294 | snprintf(modelstr, MODELSTRLEN, "TQ %s on %s", tqma6_get_boardname(), |
| 295 | tqma6_bb_get_boardname()); |
| 296 | do_fixup_by_path_string(blob, "/", "model", modelstr); |
| 297 | fdt_fixup_memory(blob, (u64)PHYS_SDRAM, (u64)gd->ram_size); |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 298 | /* bring in eMMC dsr settings */ |
| 299 | do_fixup_by_path_u32(blob, |
| 300 | "/soc/aips-bus@02100000/usdhc@02198000", |
| 301 | "dsr", tqma6_emmc_dsr, 2); |
| 302 | tqma6_bb_ft_board_setup(blob, bd); |
Simon Glass | e895a4b | 2014-10-23 18:58:47 -0600 | [diff] [blame] | 303 | |
| 304 | return 0; |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 305 | } |
| 306 | #endif /* defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_OF_LIBFDT) */ |