1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (c) 2017 Toradex, Inc.
5 * Configuration settings for the Toradex Apalis TK1 modules.
11 #include <linux/sizes.h>
13 #include "tegra124-common.h"
15 /* Board-specific serial config */
16 #define CONFIG_TEGRA_ENABLE_UARTA
17 #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
19 #define FDT_MODULE "apalis-v1.2"
20 #define FDT_MODULE_V1_0 "apalis"
22 /* PCI host support */
23 #undef CONFIG_PCI_SCAN_SHOW
25 /* PCI networking support */
26 #define CONFIG_E1000_NO_NVM
29 * Custom Distro Boot configuration:
30 * 1. 8bit SD port (MMC1)
31 * 2. 4bit SD port (MMC2)
34 #define BOOT_TARGET_DEVICES(func) \
43 #define CONFIG_IPADDR 192.168.10.2
44 #define CONFIG_NETMASK 255.255.255.0
45 #undef CONFIG_SERVERIP
46 #define CONFIG_SERVERIP 192.168.10.1
48 #define DFU_ALT_EMMC_INFO "apalis-tk1.img raw 0x0 0x500 mmcpart 1; " \
49 "boot part 0 1 mmcpart 0; " \
50 "rootfs part 0 2 mmcpart 0; " \
51 "zImage fat 0 1 mmcpart 0; " \
52 "tegra124-apalis-eval.dtb fat 0 1 mmcpart 0"
54 #define UBOOT_UPDATE \
57 "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
58 "setexpr blkcnt ${blkcnt} / 0x200\0" \
59 "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
60 "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \
62 #define BOARD_EXTRA_ENV_SETTINGS \
63 "boot_file=zImage\0" \
64 "boot_script_dhcp=boot.scr\0" \
66 "defargs=lp0_vec=2064@0xf46ff000 core_edp_mv=1150 core_edp_ma=4000 " \
67 "usb_port_owner_info=2 lane_owner_info=6 emc_max_dvfs=0 " \
68 "user_debug=30 pcie_aspm=off\0" \
69 "dfu_alt_info=" DFU_ALT_EMMC_INFO "\0" \
72 "fdt_module=" FDT_MODULE "\0" \
74 "setethupdate=if env exists ethaddr; then; else setenv ethaddr " \
75 "00:14:2d:00:00:00; fi; pci enum && tftpboot ${loadaddr} " \
76 "flash_eth.img && source ${loadaddr}\0" \
77 "setsdupdate=setenv interface mmc; setenv drive 1; mmc rescan; " \
78 "load ${interface} ${drive}:1 ${loadaddr} flash_blk.img " \
79 "|| setenv drive 2; mmc rescan; load ${interface} ${drive}:1 " \
80 "${loadaddr} flash_blk.img && " \
81 "source ${loadaddr}\0" \
82 "setup=setenv setupargs igb_mac=${ethaddr} " \
83 "consoleblank=0 no_console_suspend=1 console=tty1 " \
84 "console=${console},${baudrate}n8 debug_uartport=lsport,0 " \
86 "setupdate=run setsdupdate || run setusbupdate || run setethupdate\0" \
87 "setusbupdate=usb start && setenv interface usb; setenv drive 0; " \
88 "load ${interface} ${drive}:1 ${loadaddr} flash_blk.img && " \
89 "source ${loadaddr}\0" \
90 "vidargs=fbcon=map:1\0"
92 #include "tegra-common-post.h"
94 #endif /* __CONFIG_H */