Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Carlo Caione | 4b3ab59 | 2016-06-10 20:18:22 +0200 | [diff] [blame] | 2 | /* |
Jerome Brunet | 96a739b | 2018-10-25 16:41:37 +0200 | [diff] [blame] | 3 | * Configuration for Amlogic Meson 64bits SoCs |
Carlo Caione | 4b3ab59 | 2016-06-10 20:18:22 +0200 | [diff] [blame] | 4 | * (C) Copyright 2016 Beniamino Galvani <b.galvani@gmail.com> |
Carlo Caione | 4b3ab59 | 2016-06-10 20:18:22 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
Jerome Brunet | 96a739b | 2018-10-25 16:41:37 +0200 | [diff] [blame] | 7 | #ifndef __MESON64_CONFIG_H |
| 8 | #define __MESON64_CONFIG_H |
| 9 | |
| 10 | /* Generic Interrupt Controller Definitions */ |
Neil Armstrong | 485bba3 | 2018-09-05 15:56:12 +0200 | [diff] [blame] | 11 | #if defined(CONFIG_MESON_AXG) |
| 12 | #define GICD_BASE 0xffc01000 |
| 13 | #define GICC_BASE 0xffc02000 |
| 14 | #else /* MESON GXL and GXBB */ |
Jerome Brunet | 96a739b | 2018-10-25 16:41:37 +0200 | [diff] [blame] | 15 | #define GICD_BASE 0xc4301000 |
| 16 | #define GICC_BASE 0xc4302000 |
Neil Armstrong | 485bba3 | 2018-09-05 15:56:12 +0200 | [diff] [blame] | 17 | #endif |
Carlo Caione | 4b3ab59 | 2016-06-10 20:18:22 +0200 | [diff] [blame] | 18 | |
Neil Armstrong | f0d0904 | 2018-07-26 11:45:46 +0200 | [diff] [blame] | 19 | /* For splashscreen */ |
| 20 | #ifdef CONFIG_DM_VIDEO |
| 21 | #define CONFIG_VIDEO_BMP_RLE8 |
| 22 | #define CONFIG_BMP_16BPP |
| 23 | #define CONFIG_BMP_24BPP |
| 24 | #define CONFIG_BMP_32BPP |
| 25 | #define CONFIG_SPLASH_SCREEN |
| 26 | #define CONFIG_SPLASH_SCREEN_ALIGN |
| 27 | #define STDOUT_CFG "vidconsole,serial" |
| 28 | #else |
| 29 | #define STDOUT_CFG "serial" |
| 30 | #endif |
| 31 | |
| 32 | #ifdef CONFIG_USB_KEYBOARD |
| 33 | #define STDIN_CFG "usbkbd,serial" |
| 34 | #define CONFIG_PREBOOT "usb start" |
| 35 | #else |
| 36 | #define STDIN_CFG "serial" |
| 37 | #endif |
| 38 | |
Carlo Caione | 4b3ab59 | 2016-06-10 20:18:22 +0200 | [diff] [blame] | 39 | #define CONFIG_CPU_ARMV8 |
| 40 | #define CONFIG_REMAKE_ELF |
Carlo Caione | 4b3ab59 | 2016-06-10 20:18:22 +0200 | [diff] [blame] | 41 | #define CONFIG_ENV_SIZE 0x2000 |
| 42 | #define CONFIG_SYS_MAXARGS 32 |
| 43 | #define CONFIG_SYS_MALLOC_LEN (32 << 20) |
| 44 | #define CONFIG_SYS_CBSIZE 1024 |
Carlo Caione | 4b3ab59 | 2016-06-10 20:18:22 +0200 | [diff] [blame] | 45 | |
| 46 | #define CONFIG_SYS_SDRAM_BASE 0 |
Carlo Caione | 4b3ab59 | 2016-06-10 20:18:22 +0200 | [diff] [blame] | 47 | #define CONFIG_SYS_INIT_SP_ADDR 0x20000000 |
| 48 | #define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_TEXT_BASE |
Jerome Brunet | 96a739b | 2018-10-25 16:41:37 +0200 | [diff] [blame] | 49 | #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* 64 MiB */ |
Carlo Caione | 4b3ab59 | 2016-06-10 20:18:22 +0200 | [diff] [blame] | 50 | |
Neil Armstrong | d96a782 | 2018-07-27 14:10:00 +0200 | [diff] [blame] | 51 | /* ROM USB boot support, auto-execute boot.scr at scriptaddr */ |
| 52 | #define BOOTENV_DEV_ROMUSB(devtypeu, devtypel, instance) \ |
| 53 | "bootcmd_romusb=" \ |
| 54 | "if test \"${boot_source}\" = \"usb\" && " \ |
| 55 | "test -n \"${scriptaddr}\"; then " \ |
| 56 | "echo '(ROM USB boot)'; " \ |
| 57 | "source ${scriptaddr}; " \ |
| 58 | "fi\0" |
| 59 | |
| 60 | #define BOOTENV_DEV_NAME_ROMUSB(devtypeu, devtypel, instance) \ |
| 61 | "romusb " |
| 62 | |
Neil Armstrong | 0ba089b | 2018-06-14 13:43:38 +0200 | [diff] [blame] | 63 | #ifdef CONFIG_CMD_USB |
| 64 | #define BOOT_TARGET_DEVICES_USB(func) func(USB, usb, 0) |
| 65 | #else |
| 66 | #define BOOT_TARGET_DEVICES_USB(func) |
| 67 | #endif |
| 68 | |
Jerome Brunet | 96a739b | 2018-10-25 16:41:37 +0200 | [diff] [blame] | 69 | #ifndef BOOT_TARGET_DEVICES |
Andreas Färber | 70b8bd7 | 2017-01-15 20:22:30 +0100 | [diff] [blame] | 70 | #define BOOT_TARGET_DEVICES(func) \ |
Neil Armstrong | d96a782 | 2018-07-27 14:10:00 +0200 | [diff] [blame] | 71 | func(ROMUSB, romusb, na) \ |
xypron.glpk@gmx.de | 1f677e4 | 2017-04-15 21:30:39 +0200 | [diff] [blame] | 72 | func(MMC, mmc, 0) \ |
| 73 | func(MMC, mmc, 1) \ |
| 74 | func(MMC, mmc, 2) \ |
Neil Armstrong | 0ba089b | 2018-06-14 13:43:38 +0200 | [diff] [blame] | 75 | BOOT_TARGET_DEVICES_USB(func) \ |
Vagrant Cascadian | e320d37 | 2017-05-05 14:11:26 -0700 | [diff] [blame] | 76 | func(PXE, pxe, na) \ |
Andreas Färber | 70b8bd7 | 2017-01-15 20:22:30 +0100 | [diff] [blame] | 77 | func(DHCP, dhcp, na) |
Jerome Brunet | 96a739b | 2018-10-25 16:41:37 +0200 | [diff] [blame] | 78 | #endif |
Andreas Färber | 70b8bd7 | 2017-01-15 20:22:30 +0100 | [diff] [blame] | 79 | |
Jerome Brunet | 96a739b | 2018-10-25 16:41:37 +0200 | [diff] [blame] | 80 | #ifndef CONFIG_EXTRA_ENV_SETTINGS |
Andreas Färber | 70b8bd7 | 2017-01-15 20:22:30 +0100 | [diff] [blame] | 81 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Neil Armstrong | f0d0904 | 2018-07-26 11:45:46 +0200 | [diff] [blame] | 82 | "stdin=" STDIN_CFG "\0" \ |
| 83 | "stdout=" STDOUT_CFG "\0" \ |
| 84 | "stderr=" STDOUT_CFG "\0" \ |
Jerome Brunet | f58d633 | 2018-10-24 16:27:51 +0200 | [diff] [blame] | 85 | "fdt_addr_r=0x08008000\0" \ |
| 86 | "scriptaddr=0x08000000\0" \ |
| 87 | "kernel_addr_r=0x08080000\0" \ |
Andreas Färber | 70b8bd7 | 2017-01-15 20:22:30 +0100 | [diff] [blame] | 88 | "pxefile_addr_r=0x01080000\0" \ |
xypron.glpk@gmx.de | d038574 | 2017-04-14 20:04:46 +0200 | [diff] [blame] | 89 | "ramdisk_addr_r=0x13000000\0" \ |
Jerome Brunet | e4623f7 | 2018-10-19 12:00:51 +0200 | [diff] [blame] | 90 | "fdtfile=amlogic/" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \ |
Andreas Färber | 70b8bd7 | 2017-01-15 20:22:30 +0100 | [diff] [blame] | 91 | BOOTENV |
Jerome Brunet | 96a739b | 2018-10-25 16:41:37 +0200 | [diff] [blame] | 92 | #endif |
Andreas Färber | 70b8bd7 | 2017-01-15 20:22:30 +0100 | [diff] [blame] | 93 | |
Jerome Brunet | 96a739b | 2018-10-25 16:41:37 +0200 | [diff] [blame] | 94 | #include <config_distro_bootcmd.h> |
xypron.glpk@gmx.de | cc93834 | 2017-04-14 19:54:40 +0200 | [diff] [blame] | 95 | |
Jerome Brunet | 96a739b | 2018-10-25 16:41:37 +0200 | [diff] [blame] | 96 | #endif /* __MESON64_CONFIG_H */ |