Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015 Technexion Ltd. |
| 4 | * |
| 5 | * Configuration settings for the Technexion PICO-IMX6UL-EMMC board. |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 6 | */ |
| 7 | #ifndef __PICO_IMX6UL_CONFIG_H |
| 8 | #define __PICO_IMX6UL_CONFIG_H |
| 9 | |
| 10 | |
| 11 | #include <asm/arch/imx-regs.h> |
| 12 | #include <linux/sizes.h> |
| 13 | #include "mx6_common.h" |
Stefano Babic | 552a848 | 2017-06-29 10:16:06 +0200 | [diff] [blame] | 14 | #include <asm/mach-imx/gpio.h> |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 15 | |
Diego Dorta | 6d7aa51 | 2016-06-10 12:07:29 -0300 | [diff] [blame] | 16 | /* Network support */ |
| 17 | |
| 18 | #define CONFIG_FEC_MXC |
Diego Dorta | 6d7aa51 | 2016-06-10 12:07:29 -0300 | [diff] [blame] | 19 | #define IMX_FEC_BASE ENET2_BASE_ADDR |
| 20 | #define CONFIG_FEC_MXC_PHYADDR 0x1 |
| 21 | #define CONFIG_FEC_XCV_TYPE RMII |
Diego Dorta | 6d7aa51 | 2016-06-10 12:07:29 -0300 | [diff] [blame] | 22 | |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 23 | /* Size of malloc() pool */ |
Vanessa Maegima | af07d15 | 2016-06-15 12:48:14 -0300 | [diff] [blame] | 24 | #define CONFIG_SYS_MALLOC_LEN (35 * SZ_1M) /* Increase due to DFU */ |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 25 | |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 26 | #define CONFIG_MXC_UART |
| 27 | #define CONFIG_MXC_UART_BASE UART6_BASE_ADDR |
| 28 | |
| 29 | /* MMC Configs */ |
| 30 | #define CONFIG_FSL_USDHC |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 31 | #define CONFIG_SYS_FSL_ESDHC_ADDR USDHC1_BASE_ADDR |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 32 | #define CONFIG_SUPPORT_EMMC_BOOT |
| 33 | |
| 34 | /* USB Configs */ |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 35 | #define CONFIG_EHCI_HCD_INIT_AFTER_RESET |
| 36 | #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
| 37 | #define CONFIG_MXC_USB_FLAGS 0 |
Vanessa Maegima | ca103e0 | 2016-06-13 13:01:38 -0300 | [diff] [blame] | 38 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 2 |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 39 | |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 40 | #define CONFIG_USBD_HS |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 41 | |
Vanessa Maegima | af07d15 | 2016-06-15 12:48:14 -0300 | [diff] [blame] | 42 | #define CONFIG_SYS_DFU_DATA_BUF_SIZE SZ_16M |
| 43 | #define DFU_DEFAULT_POLL_TIMEOUT 300 |
| 44 | |
Fabio Berton | 9cc71cf | 2017-11-16 09:59:44 -0200 | [diff] [blame] | 45 | #define CONFIG_DFU_ENV_SETTINGS \ |
Fabio Berton | d93ab9b | 2017-11-16 09:59:46 -0200 | [diff] [blame] | 46 | "dfu_alt_info=uboot raw 0x2 0x400 mmcpart 1;" \ |
| 47 | "boot part 0 1;" \ |
| 48 | "/zImage ext4 0 1;" \ |
| 49 | "/imx6ul-pico-hobbit.dtb ext4 0 1;" \ |
| 50 | "rootfs part 0 2\0" \ |
Fabio Berton | 9cc71cf | 2017-11-16 09:59:44 -0200 | [diff] [blame] | 51 | |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 52 | #define CONFIG_SYS_MMC_IMG_LOAD_PART 1 |
| 53 | |
| 54 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Fabio Estevam | 636941f | 2018-09-04 10:23:07 -0300 | [diff] [blame^] | 55 | "script=boot.scr\0" \ |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 56 | "image=zImage\0" \ |
| 57 | "console=ttymxc5\0" \ |
| 58 | "fdt_high=0xffffffff\0" \ |
| 59 | "initrd_high=0xffffffff\0" \ |
Fabio Estevam | 636941f | 2018-09-04 10:23:07 -0300 | [diff] [blame^] | 60 | "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \ |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 61 | "fdt_addr=0x83000000\0" \ |
Fabio Estevam | 636941f | 2018-09-04 10:23:07 -0300 | [diff] [blame^] | 62 | "fdt_addr_r=0x83000000\0" \ |
| 63 | "kernel_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \ |
| 64 | "pxefile_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \ |
| 65 | "ramdisk_addr_r=0x83000000\0" \ |
| 66 | "ramdiskaddr=0x83000000\0" \ |
| 67 | "scriptaddr=" __stringify(CONFIG_LOADADDR) "\0" \ |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 68 | "mmcautodetect=yes\0" \ |
Fabio Berton | 9cc71cf | 2017-11-16 09:59:44 -0200 | [diff] [blame] | 69 | CONFIG_DFU_ENV_SETTINGS \ |
Fabio Estevam | 636941f | 2018-09-04 10:23:07 -0300 | [diff] [blame^] | 70 | "finduuid=part uuid mmc 0:1 uuid\0" \ |
Fabio Berton | db430cd | 2017-11-16 09:59:47 -0200 | [diff] [blame] | 71 | "partitions=" \ |
| 72 | "uuid_disk=${uuid_gpt_disk};" \ |
Fabio Estevam | 636941f | 2018-09-04 10:23:07 -0300 | [diff] [blame^] | 73 | "name=rootfs,size=0,uuid=${uuid_gpt_rootfs}\0" \ |
| 74 | "fastboot_partition_alias_system=rootfs\0" \ |
| 75 | "setup_emmc=mmc dev 0; gpt write mmc 0 $partitions; reset;\0" \ |
| 76 | BOOTENV |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 77 | |
Fabio Estevam | 636941f | 2018-09-04 10:23:07 -0300 | [diff] [blame^] | 78 | #define BOOT_TARGET_DEVICES(func) \ |
| 79 | func(MMC, mmc, 0) \ |
| 80 | func(DHCP, dhcp, na) |
| 81 | |
| 82 | #include <config_distro_bootcmd.h> |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 83 | |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 84 | #define CONFIG_SYS_MEMTEST_START 0x80000000 |
| 85 | #define CONFIG_SYS_MEMTEST_END CONFIG_SYS_MEMTEST_START + SZ_128M |
| 86 | |
| 87 | #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR |
| 88 | #define CONFIG_SYS_HZ 1000 |
| 89 | |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 90 | /* Physical Memory Map */ |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 91 | #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR |
| 92 | |
| 93 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM |
| 94 | #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR |
| 95 | #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE |
| 96 | |
| 97 | #define CONFIG_SYS_INIT_SP_OFFSET \ |
| 98 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
| 99 | #define CONFIG_SYS_INIT_SP_ADDR \ |
| 100 | (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) |
| 101 | |
Vanessa Maegima | 88e4774 | 2016-07-13 14:27:32 -0300 | [diff] [blame] | 102 | /* I2C configs */ |
| 103 | #define CONFIG_SYS_I2C |
| 104 | #define CONFIG_SYS_I2C_MXC |
| 105 | #define CONFIG_SYS_I2C_MXC_I2C1 |
| 106 | #define CONFIG_SYS_I2C_SPEED 100000 |
| 107 | |
| 108 | /* PMIC */ |
| 109 | #define CONFIG_POWER |
| 110 | #define CONFIG_POWER_I2C |
| 111 | #define CONFIG_POWER_PFUZE3000 |
| 112 | #define CONFIG_POWER_PFUZE3000_I2C_ADDR 0x08 |
| 113 | |
Masahiro Yamada | e856bdc | 2017-02-11 22:43:54 +0900 | [diff] [blame] | 114 | /* environment organization */ |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 115 | #define CONFIG_ENV_SIZE SZ_8K |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 116 | #define CONFIG_ENV_OFFSET (8 * SZ_64K) |
| 117 | |
| 118 | #define CONFIG_SYS_MMC_ENV_DEV 0 |
| 119 | #define CONFIG_SYS_MMC_ENV_PART 0 |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 120 | |
Fabio Estevam | 69cc7db | 2016-04-18 09:56:16 -0300 | [diff] [blame] | 121 | #endif /* __PICO_IMX6UL_CONFIG_H */ |