Merge tag 'efi-2020-07-rc2-4' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
[oweals/u-boot.git] / include / configs / mx53ppd.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2011 Freescale Semiconductor, Inc.
4  * Jason Liu <r64343@freescale.com>
5  *
6  * Configuration settings for Freescale MX53 low cost board.
7  */
8
9 #ifndef __CONFIG_H
10 #define __CONFIG_H
11
12 #include <asm/arch/imx-regs.h>
13
14 #define CONFIG_CMDLINE_TAG
15 #define CONFIG_SETUP_MEMORY_TAGS
16 #define CONFIG_INITRD_TAG
17
18 #define CONFIG_SYS_FSL_CLK
19
20 /* Size of malloc() pool */
21 #define CONFIG_SYS_MALLOC_LEN           (10 * 1024 * 1024)
22
23 #define CONFIG_BOARD_LATE_INIT
24 #define CONFIG_REVISION_TAG
25
26 /* USB Configs */
27 #define CONFIG_USB_HOST_ETHER
28 #define CONFIG_USB_ETHER_ASIX
29 #define CONFIG_USB_ETHER_MCS7830
30 #define CONFIG_USB_ETHER_SMSC95XX
31 #define CONFIG_MXC_USB_PORT     1
32 #define CONFIG_MXC_USB_PORTSC   (PORT_PTS_UTMI | PORT_PTS_PTW)
33 #define CONFIG_MXC_USB_FLAGS    0
34
35 /* allow to overwrite serial and ethaddr */
36 #define CONFIG_ENV_OVERWRITE
37 #define CONFIG_BAUDRATE                 115200
38
39 /* Command definition */
40
41 #define CONFIG_LOADADDR         0x72000000      /* loadaddr env var */
42
43 #define PPD_CONFIG_NFS \
44         "nfsserver=192.168.252.95\0" \
45         "gatewayip=192.168.252.95\0" \
46         "netmask=255.255.255.0\0" \
47         "ipaddr=192.168.252.99\0" \
48         "kernsize=0x2000\0" \
49         "use_dhcp=0\0" \
50         "nfsroot=/opt/springdale/rd\0" \
51         "bootargs_nfs=setenv bootargs ${bootargs} root=/dev/nfs " \
52                 "${kern_ipconf} nfsroot=${nfsserver}:${nfsroot},v3,tcp rw\0" \
53         "choose_ip=if test $use_dhcp = 1; then setenv kern_ipconf ip=dhcp; " \
54                 "setenv getcmd dhcp; else setenv kern_ipconf " \
55                 "ip=${ipaddr}:${nfsserver}:${gatewayip}:${netmask}::eth0:off; " \
56                 "setenv getcmd tftp; fi\0" \
57         "nfs=run choose_ip setargs bootargs_nfs; ${getcmd} ${loadaddr} " \
58                 "${nfsserver}:${image}; bootm ${loadaddr}\0" \
59
60 #define CONFIG_EXTRA_ENV_SETTINGS \
61         PPD_CONFIG_NFS \
62         "image=/boot/fitImage\0" \
63         "dev=mmc\0" \
64         "devnum=2\0" \
65         "rootdev=mmcblk0p\0" \
66         "quiet=quiet loglevel=0\0" \
67         "lvds=ldb\0" \
68         "setargs=setenv bootargs ${lvds} jtag=on mem=2G " \
69                 "vt.global_cursor_default=0 bootcause=${bootcause} ${quiet}\0" \
70         "bootargs_emmc=setenv bootargs root=/dev/${rootdev}${partnum} ro " \
71                 "rootwait ${bootargs}\0" \
72         "doquiet=if ext2load ${dev} ${devnum}:5 0x7000A000 /boot/console; " \
73                 "then setenv quiet; fi\0" \
74         "hasfirstboot=" \
75                 "test -e ${dev} ${devnum}:${partnum} /boot/bootcause/firstboot\0" \
76         "swappartitions=setexpr partnum 3 - ${partnum}\0" \
77         "failbootcmd=" \
78                 "cls; " \
79                 "setcurs 5 4; " \
80                 "lcdputs \"Monitor failed to start. " \
81                 "Try again, or contact GE Service for support.\"; " \
82                 "bootcount reset; \0" \
83         "altbootcmd=" \
84                 "run doquiet; " \
85                 "setenv partnum 1; run hasfirstboot || setenv partnum 2; " \
86                 "run hasfirstboot || setenv partnum 0; " \
87                 "if test ${partnum} != 0; then " \
88                         "setenv bootcause REVERT; " \
89                         "run swappartitions loadimage doboot; " \
90                 "fi; " \
91                 "run failbootcmd\0" \
92         "loadimage=" \
93                 "ext2load ${dev} ${devnum}:${partnum} ${loadaddr} ${image}\0" \
94         "doboot=" \
95                 "echo Booting from ${dev}:${devnum}:${partnum} ...; " \
96                 "run setargs; " \
97                 "run bootargs_emmc; " \
98                 "bootm ${loadaddr}\0" \
99         "tryboot=" \
100                 "setenv partnum 1; run hasfirstboot || setenv partnum 2; " \
101                 "run loadimage || run swappartitions && run loadimage || " \
102                         "setenv partnum 0 && echo MISSING IMAGE;" \
103                 "run doboot; " \
104                 "run failbootcmd\0" \
105         "video-mode=" \
106                 "lcd:800x480-24@60,monitor=lcd\0" \
107
108 #define CONFIG_MMCBOOTCOMMAND \
109         "if mmc dev ${devnum}; then " \
110                 "run doquiet; " \
111                 "run tryboot; " \
112         "fi; " \
113
114 #define CONFIG_BOOTCOMMAND CONFIG_MMCBOOTCOMMAND
115
116 #define CONFIG_ARP_TIMEOUT      200UL
117
118 /* Miscellaneous configurable options */
119 #define CONFIG_SYS_CBSIZE               1024    /* Console I/O Buffer Size */
120
121 #define CONFIG_SYS_MAXARGS      48      /* max number of command args */
122 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
123
124 #define CONFIG_SYS_LOAD_ADDR            CONFIG_LOADADDR
125
126 #define CONFIG_SYS_BOOTMAPSZ (256 << 20)     /* 256M */
127
128 /* Physical Memory Map */
129 #define PHYS_SDRAM_1                    CSD0_BASE_ADDR
130 #define PHYS_SDRAM_1_SIZE               (gd->bd->bi_dram[0].size)
131 #define PHYS_SDRAM_2                    CSD1_BASE_ADDR
132 #define PHYS_SDRAM_2_SIZE               (gd->bd->bi_dram[1].size)
133 #define PHYS_SDRAM_SIZE                 (gd->ram_size)
134
135 #define CONFIG_SYS_SDRAM_BASE           (PHYS_SDRAM_1)
136 #define CONFIG_SYS_INIT_RAM_ADDR        (IRAM_BASE_ADDR)
137 #define CONFIG_SYS_INIT_RAM_SIZE        (IRAM_SIZE)
138
139 #define CONFIG_SYS_INIT_SP_OFFSET \
140         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
141 #define CONFIG_SYS_INIT_SP_ADDR \
142         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
143
144 /* FLASH and environment organization */
145 #define CONFIG_SYS_MMC_ENV_DEV 0
146
147 #define CONFIG_CMD_FUSE
148 #define CONFIG_FSL_IIM
149
150 #define CONFIG_BCH
151
152 /* Backlight Control */
153 #define CONFIG_IMX6_PWM_PER_CLK 66666000
154
155 #define CONFIG_IMX_VIDEO_SKIP
156
157 #endif                          /* __CONFIG_H */