blob: ac945f6a20b9741f0cd4603b3861e8b75cef0408 [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
Andrew Geissler062316f2020-05-15 14:19:14 -05008IMAGE_FSTYPES ?= "tar.bz2 ext3 wic.bz2 wic.bmap"
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 \
Andrew Geissler062316f2020-05-15 14:19:14 -050019 overlays/disable-bt.dtbo \
Brad Bishop316dfdd2018-06-25 12:45:53 -040020 overlays/dwc2.dtbo \
Andrew Geissler11105212021-02-12 15:30:38 -060021 overlays/gpio-ir.dtbo \
22 overlays/gpio-ir-tx.dtbo \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080023 overlays/gpio-key.dtbo \
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -060024 overlays/hifiberry-amp.dtbo \
25 overlays/hifiberry-dac.dtbo \
26 overlays/hifiberry-dacplus.dtbo \
27 overlays/hifiberry-digi.dtbo \
Andrew Geissler11105212021-02-12 15:30:38 -060028 overlays/justboom-both.dtbo \
29 overlays/justboom-dac.dtbo \
30 overlays/justboom-digi.dtbo \
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -060031 overlays/i2c-rtc.dtbo \
Andrew Geissler11105212021-02-12 15:30:38 -060032 overlays/imx219.dtbo \
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -060033 overlays/iqaudio-dac.dtbo \
34 overlays/iqaudio-dacplus.dtbo \
Brad Bishop19323692019-04-05 15:28:33 -040035 overlays/mcp2515-can0.dtbo \
Andrew Geissler5d59ec72020-07-24 16:09:26 -050036 overlays/mcp2515-can1.dtbo \
Andrew Geissler11105212021-02-12 15:30:38 -060037 overlays/miniuart-bt.dtbo \
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -060038 overlays/pitft22.dtbo \
Brad Bishop1b9ee292020-01-16 09:06:00 -050039 overlays/pitft28-capacitive.dtbo \
Andrew Geissler11105212021-02-12 15:30:38 -060040 overlays/pitft28-resistive.dtbo \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050041 overlays/pitft35-resistive.dtbo \
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -060042 overlays/pps-gpio.dtbo \
43 overlays/rpi-ft5406.dtbo \
Brad Bishop9392c692018-09-07 15:37:17 +010044 overlays/rpi-poe.dtbo \
Brad Bishop26bdd442019-08-16 17:08:17 -040045 overlays/vc4-fkms-v3d.dtbo \
Andrew Geissler11105212021-02-12 15:30:38 -060046 overlays/vc4-kms-v3d.dtbo \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080047 overlays/w1-gpio.dtbo \
Andrew Geissler11105212021-02-12 15:30:38 -060048 overlays/w1-gpio-pullup.dtbo \
Brad Bishopf27bdd52018-05-07 15:42:31 +020049 "
50
51RPI_KERNEL_DEVICETREE ?= " \
Andrew Geissler11105212021-02-12 15:30:38 -060052 bcm2708-rpi-zero.dtb \
Brad Bishop26bdd442019-08-16 17:08:17 -040053 bcm2708-rpi-zero-w.dtb \
Brad Bishopf27bdd52018-05-07 15:42:31 +020054 bcm2708-rpi-b.dtb \
Andrew Geissler11105212021-02-12 15:30:38 -060055 bcm2708-rpi-b-rev1.dtb \
Brad Bishopf27bdd52018-05-07 15:42:31 +020056 bcm2708-rpi-b-plus.dtb \
57 bcm2709-rpi-2-b.dtb \
Andrew Geissler11105212021-02-12 15:30:38 -060058 bcm2710-rpi-2-b.dtb \
Brad Bishopf27bdd52018-05-07 15:42:31 +020059 bcm2710-rpi-3-b.dtb \
60 bcm2710-rpi-3-b-plus.dtb \
Brad Bishop26bdd442019-08-16 17:08:17 -040061 bcm2711-rpi-4-b.dtb \
Andrew Geissler11105212021-02-12 15:30:38 -060062 bcm2711-rpi-400.dtb \
Brad Bishopf27bdd52018-05-07 15:42:31 +020063 bcm2708-rpi-cm.dtb \
64 bcm2710-rpi-cm3.dtb \
Andrew Geissler11105212021-02-12 15:30:38 -060065 bcm2711-rpi-cm4.dtb \
Brad Bishopf27bdd52018-05-07 15:42:31 +020066 "
67
Andrew Geissler11105212021-02-12 15:30:38 -060068KERNEL_DEVICETREE ??= " \
Brad Bishopf27bdd52018-05-07 15:42:31 +020069 ${RPI_KERNEL_DEVICETREE} \
70 ${RPI_KERNEL_DEVICETREE_OVERLAYS} \
Patrick Williams8b8bc412016-08-17 15:02:23 -050071 "
Brad Bishopd7bf8c12018-02-25 22:55:05 -050072
73# By default:
74#
75# * When u-boot is disabled use the "Image" format which can be directly loaded
76# by the rpi firmware.
77#
78# * When u-boot is enabled use the "uImage" format and the "bootm" command
79# within u-boot to load the kernel.
80KERNEL_BOOTCMD ??= "bootm"
81KERNEL_IMAGETYPE_UBOOT ??= "uImage"
Brad Bishop316dfdd2018-06-25 12:45:53 -040082KERNEL_IMAGETYPE_DIRECT ??= "zImage"
83KERNEL_IMAGETYPE ?= "${@bb.utils.contains('RPI_USE_U_BOOT', '1', \
84 '${KERNEL_IMAGETYPE_UBOOT}', '${KERNEL_IMAGETYPE_DIRECT}', d)}"
Patrick Williams8b8bc412016-08-17 15:02:23 -050085
Brad Bishop85521d72019-09-17 07:33:03 -040086MACHINE_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 -050087
88# Raspberry Pi has no hardware clock
89MACHINE_FEATURES_BACKFILL_CONSIDERED = "rtc"
90
Andrew Geissler062316f2020-05-15 14:19:14 -050091MACHINE_EXTRA_RRECOMMENDS += "kernel-modules udev-rules-rpi"
92MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += "${@oe.utils.conditional('ENABLE_I2C', '1', 'kernel-module-i2c-dev kernel-module-i2c-bcm2708', '', d)}"
Andrew Geissler4fc9e432020-06-27 00:13:56 -050093MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += "${@oe.utils.conditional('ENABLE_IR', '1', 'kernel-module-gpio-ir kernel-module-gpio-ir-tx', '', d)}"
Andrew Geissler062316f2020-05-15 14:19:14 -050094
Andrew Geissler5d59ec72020-07-24 16:09:26 -050095SERIAL_CONSOLES_CHECK ??= "${SERIAL_CONSOLES}"
Patrick Williams8b8bc412016-08-17 15:02:23 -050096
Andrew Geissler9d7e0aa2020-08-21 15:56:44 -050097# The name of the deploy directory for raspberry pi boot files.
98# This variable is referred to by recipes fetching / generating the files.
99BOOTFILES_DIR_NAME ?= "bootfiles"
100
Patrick Williams8b8bc412016-08-17 15:02:23 -0500101# Set Raspberrypi splash image
102SPLASH = "psplash-raspberrypi"
103
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500104def make_dtb_boot_files(d):
105 # Generate IMAGE_BOOT_FILES entries for device tree files listed in
106 # KERNEL_DEVICETREE.
107 alldtbs = d.getVar('KERNEL_DEVICETREE')
108 imgtyp = d.getVar('KERNEL_IMAGETYPE')
109
110 def transform(dtb):
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800111 base = os.path.basename(dtb)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500112 if dtb.endswith('dtb'):
113 # eg: whatever/bcm2708-rpi-b.dtb has:
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800114 # DEPLOYDIR file: bcm2708-rpi-b.dtb
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500115 # destination: bcm2708-rpi-b.dtb
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800116 return base
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500117 elif dtb.endswith('dtbo'):
118 # overlay dtb:
119 # eg: overlays/hifiberry-amp.dtbo has:
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800120 # DEPLOYDIR file: hifiberry-amp.dtbo
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500121 # destination: overlays/hifiberry-amp.dtbo
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800122 return '{};{}'.format(base, dtb)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500123
124 return ' '.join([transform(dtb) for dtb in alldtbs.split(' ') if dtb])
125
126
Andrew Geissler9d7e0aa2020-08-21 15:56:44 -0500127IMAGE_BOOT_FILES ?= "${BOOTFILES_DIR_NAME}/* \
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500128 ${@make_dtb_boot_files(d)} \
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500129 ${@bb.utils.contains('RPI_USE_U_BOOT', '1', \
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500130 '${KERNEL_IMAGETYPE} u-boot.bin;${SDIMG_KERNELIMAGE} boot.scr', \
131 '${KERNEL_IMAGETYPE};${SDIMG_KERNELIMAGE}', d)} \
132 "
133do_image_wic[depends] += " \
Andrew Geissler26e4bea2020-11-30 19:54:03 -0600134 rpi-bootfiles:do_deploy \
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500135 ${@bb.utils.contains('RPI_USE_U_BOOT', '1', 'u-boot:do_deploy', '',d)} \
136 "
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -0600137
Brad Bishop316dfdd2018-06-25 12:45:53 -0400138do_image_wic[recrdeps] = "do_build"
139
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -0600140# The kernel image is installed into the FAT32 boot partition and does not need
141# to also be installed into the rootfs.
Brad Bishop316dfdd2018-06-25 12:45:53 -0400142RDEPENDS_${KERNEL_PACKAGE_NAME}-base = ""