Permalink
Please sign in to comment.
Browse files
WIP: RPi 3 port (32-bit)
FIXME:
- Describe
NOTE: This requires the following in config.txt:
enable_uart=1
Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>- Loading branch information...
Showing
with
79 additions
and 3 deletions.
| @@ -0,0 +1,6 @@ | ||
| +RPI_3_32B BOARD | ||
| +M: Stephen Warren <swarren@wwwdotorg.org> | ||
| +S: Maintained | ||
| +F: board/raspberrypi/rpi_3_32b/ | ||
| +F: include/configs/rpi_3_32b.h | ||
| +F: configs/rpi_3_32b_defconfig |
| @@ -0,0 +1,7 @@ | ||
| +# | ||
| +# (C) Copyright 2012-2016 Stephen Warren <swarren@wwwdotorg.org> | ||
| +# | ||
| +# SPDX-License-Identifier: GPL-2.0 | ||
| +# | ||
| + | ||
| +obj-y := ../rpi/rpi.o |
| @@ -0,0 +1,11 @@ | ||
| +CONFIG_ARM=y | ||
| +CONFIG_ARCH_BCM283X=y | ||
| +CONFIG_TARGET_RPI_3_32B=y | ||
| +CONFIG_OF_BOARD_SETUP=y | ||
| +CONFIG_SYS_PROMPT="U-Boot> " | ||
| +# CONFIG_CMD_IMLS is not set | ||
| +# CONFIG_CMD_FLASH is not set | ||
| +# CONFIG_CMD_FPGA is not set | ||
| +CONFIG_CMD_GPIO=y | ||
| +CONFIG_PHYS_TO_BUS=y | ||
| +CONFIG_OF_LIBFDT=y |
| @@ -0,0 +1,16 @@ | ||
| +/* | ||
| + * (C) Copyright 2012-2016 Stephen Warren <swarren@wwwdotorg.org> | ||
| + * | ||
| + * SPDX-License-Identifier: GPL-2.0 | ||
| + */ | ||
| + | ||
| +#ifndef __CONFIG_H | ||
| +#define __CONFIG_H | ||
| + | ||
| +#define CONFIG_SKIP_LOWLEVEL_INIT | ||
| +#define CONFIG_BCM2837 | ||
| +#define CONFIG_SYS_CACHELINE_SIZE 64 | ||
| + | ||
| +#include "rpi-common.h" | ||
| + | ||
| +#endif |
0 comments on commit
97e7833