blob: fb21b122c5aecffb74915b27301422e897f56819 [file] [log] [blame]
Brad Bishop3a5fbf52017-12-04 02:17:07 -05001#@TYPE: Machine
2#@NAME: RaspberryPi 3 Development Board
3#@DESCRIPTION: Machine configuration for the RaspberryPi 3 in 64 bits mode
4
5MACHINEOVERRIDES = "raspberrypi3:${MACHINE}"
6
Brad Bishop316dfdd2018-06-25 12:45:53 -04007MACHINE_EXTRA_RRECOMMENDS += "\
8 linux-firmware-bcm43430 \
9 linux-firmware-bcm43455 \
10 linux-firmware-bcm43430a1-hcd \
11 linux-firmware-bcm4345c0-hcd \
12"
Brad Bishop3a5fbf52017-12-04 02:17:07 -050013
Brad Bishop3a5fbf52017-12-04 02:17:07 -050014require conf/machine/include/arm/arch-armv8.inc
15include conf/machine/include/rpi-base.inc
16
Brad Bishopf27bdd52018-05-07 15:42:31 +020017RPI_KERNEL_DEVICETREE = " \
Brad Bishop3a5fbf52017-12-04 02:17:07 -050018 broadcom/bcm2710-rpi-3-b.dtb \
Brad Bishop316dfdd2018-06-25 12:45:53 -040019 broadcom/bcm2710-rpi-3-b-plus.dtb \
Brad Bishop3a5fbf52017-12-04 02:17:07 -050020 broadcom/bcm2837-rpi-3-b.dtb \
Brad Bishop3a5fbf52017-12-04 02:17:07 -050021 "
22
23SERIAL_CONSOLE ?= "115200 ttyS0"
24VC4_CMA_SIZE ?= "cma-256"
25
26UBOOT_MACHINE = "rpi_3_config"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050027MACHINE_FEATURES_append = " vc4graphics"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050028
29# When u-boot is enabled we need to use the "Image" format and the "booti"
30# command to load the kernel
31KERNEL_IMAGETYPE_UBOOT ?= "Image"
Brad Bishop316dfdd2018-06-25 12:45:53 -040032# "zImage" not supported on arm64 and ".gz" images not supported by bootloader yet
33KERNEL_IMAGETYPE_DIRECT ?= "Image"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050034KERNEL_BOOTCMD ?= "booti"