Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Breno Lima | 792f186 | 2016-11-25 16:56:57 -0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2014-2015 Freescale Semiconductor, Inc. |
| 4 | * Copyright Jasbir Matharu |
| 5 | * Copyright 2015 UDOO Team |
| 6 | * |
| 7 | * Configuration settings for the UDOO NEO board. |
Breno Lima | 792f186 | 2016-11-25 16:56:57 -0200 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #ifndef __CONFIG_H |
| 11 | #define __CONFIG_H |
| 12 | |
Breno Lima | 792f186 | 2016-11-25 16:56:57 -0200 | [diff] [blame] | 13 | #include "mx6_common.h" |
| 14 | |
| 15 | #include "imx6_spl.h" |
| 16 | |
| 17 | /* Size of malloc() pool */ |
| 18 | #define CONFIG_SYS_MALLOC_LEN (3 * SZ_1M) |
Breno Lima | 792f186 | 2016-11-25 16:56:57 -0200 | [diff] [blame] | 19 | |
| 20 | /* MMC Configuration */ |
| 21 | #define CONFIG_SYS_FSL_ESDHC_ADDR USDHC2_BASE_ADDR |
| 22 | |
| 23 | /* Command definition */ |
| 24 | #define CONFIG_MXC_UART_BASE UART1_BASE |
Breno Lima | 792f186 | 2016-11-25 16:56:57 -0200 | [diff] [blame] | 25 | |
| 26 | /* Linux only */ |
Breno Lima | 792f186 | 2016-11-25 16:56:57 -0200 | [diff] [blame] | 27 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Peter Robinson | f902802 | 2017-02-14 13:10:10 +0000 | [diff] [blame] | 28 | "console=ttymxc0,115200\0" \ |
Breno Lima | 792f186 | 2016-11-25 16:56:57 -0200 | [diff] [blame] | 29 | "fdt_high=0xffffffff\0" \ |
| 30 | "initrd_high=0xffffffff\0" \ |
Fabio Estevam | 5d3a28a | 2016-12-15 20:10:08 -0200 | [diff] [blame] | 31 | "fdtfile=undefined\0" \ |
Breno Lima | 792f186 | 2016-11-25 16:56:57 -0200 | [diff] [blame] | 32 | "fdt_addr=0x83000000\0" \ |
Breno Lima | 8df93b1 | 2017-01-10 16:32:38 -0200 | [diff] [blame] | 33 | "fdt_addr_r=0x83000000\0" \ |
Breno Lima | 792f186 | 2016-11-25 16:56:57 -0200 | [diff] [blame] | 34 | "ip_dyn=yes\0" \ |
| 35 | "mmcdev=0\0" \ |
| 36 | "mmcrootfstype=ext4\0" \ |
Breno Lima | 792f186 | 2016-11-25 16:56:57 -0200 | [diff] [blame] | 37 | "findfdt="\ |
| 38 | "if test $board_name = BASIC; then " \ |
Fabio Estevam | 5d3a28a | 2016-12-15 20:10:08 -0200 | [diff] [blame] | 39 | "setenv fdtfile imx6sx-udoo-neo-basic.dtb; fi; " \ |
Breno Lima | 792f186 | 2016-11-25 16:56:57 -0200 | [diff] [blame] | 40 | "if test $board_name = BASICKS; then " \ |
Fabio Estevam | 5d3a28a | 2016-12-15 20:10:08 -0200 | [diff] [blame] | 41 | "setenv fdtfile imx6sx-udoo-neo-basic.dtb; fi; " \ |
Breno Lima | 792f186 | 2016-11-25 16:56:57 -0200 | [diff] [blame] | 42 | "if test $board_name = FULL; then " \ |
Fabio Estevam | 5d3a28a | 2016-12-15 20:10:08 -0200 | [diff] [blame] | 43 | "setenv fdtfile imx6sx-udoo-neo-full.dtb; fi; " \ |
Breno Lima | 792f186 | 2016-11-25 16:56:57 -0200 | [diff] [blame] | 44 | "if test $board_name = EXTENDED; then " \ |
Fabio Estevam | 5d3a28a | 2016-12-15 20:10:08 -0200 | [diff] [blame] | 45 | "setenv fdtfile imx6sx-udoo-neo-extended.dtb; fi; " \ |
| 46 | "if test $fdtfile = UNDEFINED; then " \ |
Breno Lima | d8e1388 | 2017-01-10 16:32:39 -0200 | [diff] [blame] | 47 | "echo WARNING: Could not determine dtb to use; fi\0" \ |
Breno Lima | 792f186 | 2016-11-25 16:56:57 -0200 | [diff] [blame] | 48 | "kernel_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \ |
| 49 | "pxefile_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \ |
Peter Robinson | 276ad06 | 2017-02-14 13:10:11 +0000 | [diff] [blame] | 50 | "ramdisk_addr_r=0x84000000\0" \ |
Breno Lima | 792f186 | 2016-11-25 16:56:57 -0200 | [diff] [blame] | 51 | "scriptaddr=" __stringify(CONFIG_LOADADDR) "\0" \ |
| 52 | BOOTENV |
| 53 | |
| 54 | #define BOOT_TARGET_DEVICES(func) \ |
Breno Lima | a11e30f | 2016-12-06 15:38:26 -0200 | [diff] [blame] | 55 | func(MMC, mmc, 0) \ |
| 56 | func(DHCP, dhcp, na) |
Breno Lima | 792f186 | 2016-11-25 16:56:57 -0200 | [diff] [blame] | 57 | |
Breno Lima | 792f186 | 2016-11-25 16:56:57 -0200 | [diff] [blame] | 58 | #include <config_distro_bootcmd.h> |
| 59 | |
| 60 | /* Miscellaneous configurable options */ |
Breno Lima | 792f186 | 2016-11-25 16:56:57 -0200 | [diff] [blame] | 61 | |
| 62 | /* Physical Memory Map */ |
Breno Lima | 792f186 | 2016-11-25 16:56:57 -0200 | [diff] [blame] | 63 | #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR |
| 64 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM |
| 65 | #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR |
| 66 | #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE |
| 67 | |
| 68 | #define CONFIG_SYS_INIT_SP_OFFSET \ |
| 69 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
| 70 | #define CONFIG_SYS_INIT_SP_ADDR \ |
| 71 | (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) |
| 72 | |
Breno Lima | 21729bc | 2016-12-06 15:38:25 -0200 | [diff] [blame] | 73 | /* PMIC */ |
| 74 | #define CONFIG_POWER |
| 75 | #define CONFIG_POWER_I2C |
| 76 | #define CONFIG_POWER_PFUZE3000 |
| 77 | #define CONFIG_POWER_PFUZE3000_I2C_ADDR 0x08 |
| 78 | #define PFUZE3000_I2C_BUS 0 |
| 79 | |
Breno Lima | 792f186 | 2016-11-25 16:56:57 -0200 | [diff] [blame] | 80 | #endif /* __CONFIG_H */ |