blob: a784002158b0f3bfd8f9774c3978414f7530bc4b [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Marcin Niestrojc9e40e62016-12-07 16:46:33 +01002/*
3 * Copyright (C) 2015 Freescale Semiconductor, Inc.
4 * Copyright (C) 2016 Grinn
5 *
6 * Configuration settings for the Grinn liteBoard (i.MX6UL).
Marcin Niestrojc9e40e62016-12-07 16:46:33 +01007 */
8#ifndef __LITEBOARD_CONFIG_H
9#define __LITEBOARD_CONFIG_H
10
11#include <asm/arch/imx-regs.h>
12#include <linux/sizes.h>
Simon Glass1af3c7f2020-05-10 11:40:09 -060013#include <linux/stringify.h>
Marcin Niestrojc9e40e62016-12-07 16:46:33 +010014#include "mx6_common.h"
15
16/* SPL options */
17#include "imx6_spl.h"
18
Marcin Niestrojc9e40e62016-12-07 16:46:33 +010019#define CONFIG_MXC_UART_BASE UART1_BASE
20
21/* MMC Configs */
22#ifdef CONFIG_FSL_USDHC
Tom Rini6cc04542022-10-28 20:27:13 -040023#define CFG_SYS_FSL_ESDHC_ADDR USDHC1_BASE_ADDR
Marcin Niestrojc9e40e62016-12-07 16:46:33 +010024#endif
25
Marcin Niestrojc9e40e62016-12-07 16:46:33 +010026#define CONFIG_EXTRA_ENV_SETTINGS \
27 "script=boot.scr\0" \
28 "image=zImage\0" \
29 "console=ttymxc0\0" \
30 "fdt_high=0xffffffff\0" \
31 "initrd_high=0xffffffff\0" \
32 "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
33 "fdt_addr=0x83000000\0" \
34 "boot_fdt=try\0" \
35 "ip_dyn=yes\0" \
36 "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
Tom Rinide35b8f2021-12-11 14:55:52 -050037 "mmcpart=1\0" \
Peng Fanadfaa422022-04-15 12:23:41 +080038 "mmcroot=/dev/mmcblk0p2 rootwait rw\0" \
Marcin Niestrojc9e40e62016-12-07 16:46:33 +010039 "mmcautodetect=yes\0" \
40 "mmcargs=setenv bootargs console=${console},${baudrate} " \
41 "root=${mmcroot}\0" \
42 "loadbootscript=" \
43 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
44 "bootscript=echo Running bootscript from mmc ...; " \
45 "source\0" \
46 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
47 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
48 "mmcboot=echo Booting from mmc ...; " \
49 "run mmcargs; " \
50 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
51 "if run loadfdt; then " \
52 "bootz ${loadaddr} - ${fdt_addr}; " \
53 "else " \
54 "if test ${boot_fdt} = try; then " \
55 "bootz; " \
56 "else " \
57 "echo WARN: Cannot load the DT; " \
58 "fi; " \
59 "fi; " \
60 "else " \
61 "bootz; " \
62 "fi;\0" \
63 "netargs=setenv bootargs console=${console},${baudrate} " \
64 "root=/dev/nfs " \
65 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
66 "netboot=echo Booting from net ...; " \
67 "run netargs; " \
68 "if test ${ip_dyn} = yes; then " \
69 "setenv get_cmd dhcp; " \
70 "else " \
71 "setenv get_cmd tftp; " \
72 "fi; " \
73 "${get_cmd} ${image}; " \
74 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
75 "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
76 "bootz ${loadaddr} - ${fdt_addr}; " \
77 "else " \
78 "if test ${boot_fdt} = try; then " \
79 "bootz; " \
80 "else " \
81 "echo WARN: Cannot load the DT; " \
82 "fi; " \
83 "fi; " \
84 "else " \
85 "bootz; " \
86 "fi;\0"
87
Marcin Niestrojc9e40e62016-12-07 16:46:33 +010088/* Miscellaneous configurable options */
Marcin Niestrojc9e40e62016-12-07 16:46:33 +010089
Marcin Niestrojc9e40e62016-12-07 16:46:33 +010090/* Physical Memory Map */
Marcin Niestrojc9e40e62016-12-07 16:46:33 +010091#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
Marcin Niestrojc9e40e62016-12-07 16:46:33 +010097/* FLASH and environment organization */
Marcin Niestrojc9e40e62016-12-07 16:46:33 +010098
Marcin Niestrojc9e40e62016-12-07 16:46:33 +010099/* USB Configs */
100#ifdef CONFIG_CMD_USB
Marcin Niestrojc9e40e62016-12-07 16:46:33 +0100101#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
102#define CONFIG_MXC_USB_FLAGS 0
Marcin Niestrojc9e40e62016-12-07 16:46:33 +0100103#endif
104
105#ifdef CONFIG_CMD_NET
Marcin Niestrojc9e40e62016-12-07 16:46:33 +0100106#define CONFIG_FEC_ENET_DEV 0
107
Marcin Niestrojc9e40e62016-12-07 16:46:33 +0100108#define CONFIG_FEC_MXC_PHYADDR 0x0
Marcin Niestrojc9e40e62016-12-07 16:46:33 +0100109#endif
110
Marcin Niestrojc9e40e62016-12-07 16:46:33 +0100111#endif