pwm: imx: Remove unused references to CONFIG_IMX6_PWM_PER_CLK
[platform/kernel/u-boot.git] / include / configs / apalis_imx6.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2013-2019 Toradex, Inc.
4  *
5  * Configuration settings for the Toradex Apalis iMX6
6  */
7
8 #ifndef __CONFIG_H
9 #define __CONFIG_H
10
11 #include <linux/stringify.h>
12
13 #include "mx6_common.h"
14
15 #include <asm/arch/imx-regs.h>
16 #include <asm/mach-imx/gpio.h>
17
18 #define CONFIG_MXC_UART_BASE            UART1_BASE
19
20 /* MMC Configs */
21 #define CFG_SYS_FSL_ESDHC_ADDR  0
22 #define CFG_SYS_FSL_USDHC_NUM   3
23
24 /* Network */
25 #define PHY_ANEG_TIMEOUT                15000 /* PHY needs longer aneg time */
26
27 /* USB Configs */
28 /* Host */
29 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
30 #define CONFIG_MXC_USB_FLAGS            0
31 /* Client */
32 #define CONFIG_USBD_HS
33
34 /* Framebuffer and LCD */
35 #define CONFIG_IMX_HDMI
36 #define CONFIG_IMX_VIDEO_SKIP
37
38 /* Command definition */
39
40 #undef CONFIG_IPADDR
41 #define CONFIG_IPADDR                   192.168.10.2
42 #define CONFIG_NETMASK                  255.255.255.0
43 #undef CONFIG_SERVERIP
44 #define CONFIG_SERVERIP                 192.168.10.1
45
46 #define BOOT_TARGET_DEVICES(func) \
47         func(MMC, mmc, 1) \
48         func(MMC, mmc, 2) \
49         func(MMC, mmc, 0) \
50         func(USB, usb, 0) \
51         func(DHCP, dhcp, na)
52 #include <config_distro_bootcmd.h>
53 #undef BOOTENV_RUN_NET_USB_START
54 #define BOOTENV_RUN_NET_USB_START ""
55
56 #define UBOOT_UPDATE \
57         "uboot_hwpart=1\0" \
58         "uboot_blk=8a\0" \
59         "uboot_spl_blk=2\0" \
60         "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
61                 "setexpr blkcnt ${blkcnt} / 0x200\0" \
62         "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
63                 "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \
64         "update_spl=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
65                 "mmc write ${loadaddr} ${uboot_spl_blk} ${blkcnt}\0"
66
67 #define MEM_LAYOUT_ENV_SETTINGS \
68         "bootm_size=0x20000000\0" \
69         "fdt_addr_r=0x18200000\0" \
70         "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
71         "pxefile_addr_r=0x18300000\0" \
72         "ramdisk_addr_r=0x18400000\0" \
73         "scriptaddr=0x18280000\0"
74
75 #define CONFIG_EXTRA_ENV_SETTINGS \
76         BOOTENV \
77         "boot_file=zImage\0" \
78         "boot_script_dhcp=boot.scr\0" \
79         "console=ttymxc0\0" \
80         "defargs=enable_wait_mode=off vmalloc=400M\0" \
81         "fdt_board=eval\0" \
82         "fdt_fixup=;\0" \
83         MEM_LAYOUT_ENV_SETTINGS \
84         UBOOT_UPDATE \
85         "setethupdate=if env exists ethaddr; then; else setenv ethaddr " \
86                 "00:14:2d:00:00:00; fi; tftpboot ${loadaddr} " \
87                 "flash_eth.img && source ${loadaddr}\0" \
88         "setsdupdate=setenv interface mmc; setenv drive 1; mmc rescan; " \
89                 "load ${interface} ${drive}:1 ${loadaddr} flash_blk.img " \
90                 "|| setenv drive 2; mmc rescan; load ${interface} ${drive}:1" \
91                 " ${loadaddr} flash_blk.img && " \
92                 "source ${loadaddr}\0" \
93         "setup=setenv setupargs fec_mac=${ethaddr} " \
94                 "consoleblank=0 no_console_suspend=1 console=tty1 " \
95                 "console=${console},${baudrate}n8\0 " \
96         "setupdate=run setsdupdate || run setusbupdate || run setethupdate\0" \
97         "setusbupdate=usb start && setenv interface usb; setenv drive 0; " \
98                 "load ${interface} ${drive}:1 ${loadaddr} flash_blk.img && " \
99                 "source ${loadaddr}\0" \
100         "splashpos=m,m\0" \
101         "splashimage=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
102         "vidargs=mxc_hdmi.only_cea=1 fbmem=32M\0"
103
104 /* Miscellaneous configurable options */
105
106 /* Physical Memory Map */
107 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
108
109 #define CFG_SYS_SDRAM_BASE              PHYS_SDRAM
110 #define CFG_SYS_INIT_RAM_ADDR   IRAM_BASE_ADDR
111 #define CFG_SYS_INIT_RAM_SIZE   IRAM_SIZE
112
113 #endif  /* __CONFIG_H */