blob: 9772fd9d6555ee3862a11086325bed3b533a8e32 [file] [log] [blame]
Patrick Williams8b8bc412016-08-17 15:02:23 -05001include conf/machine/include/rpi-default-settings.inc
2include conf/machine/include/rpi-default-versions.inc
3include conf/machine/include/rpi-default-providers.inc
4
5SOC_FAMILY = "rpi"
6include conf/machine/include/soc-family.inc
7
8IMAGE_FSTYPES ?= "tar.bz2 ext3 rpi-sdimg"
Brad Bishop316dfdd2018-06-25 12:45:53 -04009WKS_FILE ?= "sdimage-raspberrypi.wks"
Patrick Williams8b8bc412016-08-17 15:02:23 -050010
11XSERVER = " \
12 xserver-xorg \
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -060013 ${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "xserver-xorg-extension-glx", "", d)} \
14 ${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "xf86-video-modesetting", "xf86-video-fbdev", d)} \
Patrick Williams8b8bc412016-08-17 15:02:23 -050015 "
16
Brad Bishopf27bdd52018-05-07 15:42:31 +020017RPI_KERNEL_DEVICETREE_OVERLAYS ?= " \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080018 overlays/at86rf233.dtbo \
Brad Bishop316dfdd2018-06-25 12:45:53 -040019 overlays/dwc2.dtbo \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080020 overlays/gpio-key.dtbo \
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -060021 overlays/hifiberry-amp.dtbo \
22 overlays/hifiberry-dac.dtbo \
23 overlays/hifiberry-dacplus.dtbo \
24 overlays/hifiberry-digi.dtbo \
25 overlays/i2c-rtc.dtbo \
26 overlays/iqaudio-dac.dtbo \
27 overlays/iqaudio-dacplus.dtbo \
Brad Bishop19323692019-04-05 15:28:33 -040028 overlays/mcp2515-can0.dtbo \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080029 overlays/pi3-disable-bt.dtbo \
30 overlays/pi3-miniuart-bt.dtbo \
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -060031 overlays/pitft22.dtbo \
32 overlays/pitft28-resistive.dtbo \
Brad Bishop1b9ee292020-01-16 09:06:00 -050033 overlays/pitft28-capacitive.dtbo \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050034 overlays/pitft35-resistive.dtbo \
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -060035 overlays/pps-gpio.dtbo \
36 overlays/rpi-ft5406.dtbo \
Brad Bishop9392c692018-09-07 15:37:17 +010037 overlays/rpi-poe.dtbo \
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -060038 overlays/vc4-kms-v3d.dtbo \
Brad Bishop26bdd442019-08-16 17:08:17 -040039 overlays/vc4-fkms-v3d.dtbo \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080040 overlays/w1-gpio-pullup.dtbo \
41 overlays/w1-gpio.dtbo \
Brad Bishopf27bdd52018-05-07 15:42:31 +020042 "
43
44RPI_KERNEL_DEVICETREE ?= " \
Brad Bishop26bdd442019-08-16 17:08:17 -040045 bcm2708-rpi-zero-w.dtb \
Brad Bishopf27bdd52018-05-07 15:42:31 +020046 bcm2708-rpi-b.dtb \
47 bcm2708-rpi-b-plus.dtb \
48 bcm2709-rpi-2-b.dtb \
49 bcm2710-rpi-3-b.dtb \
50 bcm2710-rpi-3-b-plus.dtb \
Brad Bishop26bdd442019-08-16 17:08:17 -040051 bcm2711-rpi-4-b.dtb \
Brad Bishopf27bdd52018-05-07 15:42:31 +020052 bcm2708-rpi-cm.dtb \
53 bcm2710-rpi-cm3.dtb \
54 "
55
56KERNEL_DEVICETREE ?= " \
57 ${RPI_KERNEL_DEVICETREE} \
58 ${RPI_KERNEL_DEVICETREE_OVERLAYS} \
Patrick Williams8b8bc412016-08-17 15:02:23 -050059 "
Brad Bishopd7bf8c12018-02-25 22:55:05 -050060
61# By default:
62#
63# * When u-boot is disabled use the "Image" format which can be directly loaded
64# by the rpi firmware.
65#
66# * When u-boot is enabled use the "uImage" format and the "bootm" command
67# within u-boot to load the kernel.
68KERNEL_BOOTCMD ??= "bootm"
69KERNEL_IMAGETYPE_UBOOT ??= "uImage"
Brad Bishop316dfdd2018-06-25 12:45:53 -040070KERNEL_IMAGETYPE_DIRECT ??= "zImage"
71KERNEL_IMAGETYPE ?= "${@bb.utils.contains('RPI_USE_U_BOOT', '1', \
72 '${KERNEL_IMAGETYPE_UBOOT}', '${KERNEL_IMAGETYPE_DIRECT}', d)}"
Patrick Williams8b8bc412016-08-17 15:02:23 -050073
Brad Bishop85521d72019-09-17 07:33:03 -040074MACHINE_FEATURES += "apm usbhost keyboard vfat ext2 screen touchscreen alsa bluetooth wifi sdio ${@bb.utils.contains('DISABLE_VC4GRAPHICS', '1', '', 'vc4graphics', d)}"
Patrick Williams8b8bc412016-08-17 15:02:23 -050075
76# Raspberry Pi has no hardware clock
77MACHINE_FEATURES_BACKFILL_CONSIDERED = "rtc"
78
Brad Bishop316dfdd2018-06-25 12:45:53 -040079MACHINE_EXTRA_RRECOMMENDS += " kernel-modules udev-rules-rpi"
Patrick Williams8b8bc412016-08-17 15:02:23 -050080
81# Set Raspberrypi splash image
82SPLASH = "psplash-raspberrypi"
83
Brad Bishop6e60e8b2018-02-01 10:27:11 -050084def make_dtb_boot_files(d):
85 # Generate IMAGE_BOOT_FILES entries for device tree files listed in
86 # KERNEL_DEVICETREE.
87 alldtbs = d.getVar('KERNEL_DEVICETREE')
88 imgtyp = d.getVar('KERNEL_IMAGETYPE')
89
90 def transform(dtb):
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080091 base = os.path.basename(dtb)
Brad Bishop6e60e8b2018-02-01 10:27:11 -050092 if dtb.endswith('dtb'):
93 # eg: whatever/bcm2708-rpi-b.dtb has:
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080094 # DEPLOYDIR file: bcm2708-rpi-b.dtb
Brad Bishop6e60e8b2018-02-01 10:27:11 -050095 # destination: bcm2708-rpi-b.dtb
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080096 return base
Brad Bishop6e60e8b2018-02-01 10:27:11 -050097 elif dtb.endswith('dtbo'):
98 # overlay dtb:
99 # eg: overlays/hifiberry-amp.dtbo has:
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800100 # DEPLOYDIR file: hifiberry-amp.dtbo
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500101 # destination: overlays/hifiberry-amp.dtbo
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800102 return '{};{}'.format(base, dtb)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500103
104 return ' '.join([transform(dtb) for dtb in alldtbs.split(' ') if dtb])
105
106
107IMAGE_BOOT_FILES ?= "bcm2835-bootfiles/* \
108 ${@make_dtb_boot_files(d)} \
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500109 ${@bb.utils.contains('RPI_USE_U_BOOT', '1', \
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500110 '${KERNEL_IMAGETYPE} u-boot.bin;${SDIMG_KERNELIMAGE} boot.scr', \
111 '${KERNEL_IMAGETYPE};${SDIMG_KERNELIMAGE}', d)} \
112 "
113do_image_wic[depends] += " \
114 bcm2835-bootfiles:do_deploy \
115 ${@bb.utils.contains('RPI_USE_U_BOOT', '1', 'u-boot:do_deploy', '',d)} \
116 "
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -0600117
Brad Bishop316dfdd2018-06-25 12:45:53 -0400118do_image_wic[recrdeps] = "do_build"
119
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -0600120# The kernel image is installed into the FAT32 boot partition and does not need
121# to also be installed into the rootfs.
Brad Bishop316dfdd2018-06-25 12:45:53 -0400122RDEPENDS_${KERNEL_PACKAGE_NAME}-base = ""