blob: 044f09df293c3769182f10a4aa1155286289b1e9 [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 \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080021 overlays/gpio-key.dtbo \
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -060022 overlays/hifiberry-amp.dtbo \
23 overlays/hifiberry-dac.dtbo \
24 overlays/hifiberry-dacplus.dtbo \
25 overlays/hifiberry-digi.dtbo \
26 overlays/i2c-rtc.dtbo \
27 overlays/iqaudio-dac.dtbo \
28 overlays/iqaudio-dacplus.dtbo \
Andrew Geissler062316f2020-05-15 14:19:14 -050029 overlays/miniuart-bt.dtbo \
Brad Bishop19323692019-04-05 15:28:33 -040030 overlays/mcp2515-can0.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 \
Andrew Geissler2127dd92020-06-05 18:09:33 -050042 overlays/gpio-ir.dtbo \
43 overlays/gpio-ir-tx.dtbo \
Brad Bishopf27bdd52018-05-07 15:42:31 +020044 "
45
46RPI_KERNEL_DEVICETREE ?= " \
Brad Bishop26bdd442019-08-16 17:08:17 -040047 bcm2708-rpi-zero-w.dtb \
Brad Bishopf27bdd52018-05-07 15:42:31 +020048 bcm2708-rpi-b.dtb \
49 bcm2708-rpi-b-plus.dtb \
50 bcm2709-rpi-2-b.dtb \
51 bcm2710-rpi-3-b.dtb \
52 bcm2710-rpi-3-b-plus.dtb \
Brad Bishop26bdd442019-08-16 17:08:17 -040053 bcm2711-rpi-4-b.dtb \
Brad Bishopf27bdd52018-05-07 15:42:31 +020054 bcm2708-rpi-cm.dtb \
55 bcm2710-rpi-cm3.dtb \
56 "
57
58KERNEL_DEVICETREE ?= " \
59 ${RPI_KERNEL_DEVICETREE} \
60 ${RPI_KERNEL_DEVICETREE_OVERLAYS} \
Patrick Williams8b8bc412016-08-17 15:02:23 -050061 "
Brad Bishopd7bf8c12018-02-25 22:55:05 -050062
63# By default:
64#
65# * When u-boot is disabled use the "Image" format which can be directly loaded
66# by the rpi firmware.
67#
68# * When u-boot is enabled use the "uImage" format and the "bootm" command
69# within u-boot to load the kernel.
70KERNEL_BOOTCMD ??= "bootm"
71KERNEL_IMAGETYPE_UBOOT ??= "uImage"
Brad Bishop316dfdd2018-06-25 12:45:53 -040072KERNEL_IMAGETYPE_DIRECT ??= "zImage"
73KERNEL_IMAGETYPE ?= "${@bb.utils.contains('RPI_USE_U_BOOT', '1', \
74 '${KERNEL_IMAGETYPE_UBOOT}', '${KERNEL_IMAGETYPE_DIRECT}', d)}"
Patrick Williams8b8bc412016-08-17 15:02:23 -050075
Brad Bishop85521d72019-09-17 07:33:03 -040076MACHINE_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 -050077
78# Raspberry Pi has no hardware clock
79MACHINE_FEATURES_BACKFILL_CONSIDERED = "rtc"
80
Andrew Geissler062316f2020-05-15 14:19:14 -050081MACHINE_EXTRA_RRECOMMENDS += "kernel-modules udev-rules-rpi"
82MACHINE_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 -050083MACHINE_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 -050084
Patrick Williams8b8bc412016-08-17 15:02:23 -050085
86# Set Raspberrypi splash image
87SPLASH = "psplash-raspberrypi"
88
Brad Bishop6e60e8b2018-02-01 10:27:11 -050089def make_dtb_boot_files(d):
90 # Generate IMAGE_BOOT_FILES entries for device tree files listed in
91 # KERNEL_DEVICETREE.
92 alldtbs = d.getVar('KERNEL_DEVICETREE')
93 imgtyp = d.getVar('KERNEL_IMAGETYPE')
94
95 def transform(dtb):
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080096 base = os.path.basename(dtb)
Brad Bishop6e60e8b2018-02-01 10:27:11 -050097 if dtb.endswith('dtb'):
98 # eg: whatever/bcm2708-rpi-b.dtb has:
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080099 # DEPLOYDIR file: bcm2708-rpi-b.dtb
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500100 # destination: bcm2708-rpi-b.dtb
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800101 return base
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500102 elif dtb.endswith('dtbo'):
103 # overlay dtb:
104 # eg: overlays/hifiberry-amp.dtbo has:
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800105 # DEPLOYDIR file: hifiberry-amp.dtbo
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500106 # destination: overlays/hifiberry-amp.dtbo
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800107 return '{};{}'.format(base, dtb)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500108
109 return ' '.join([transform(dtb) for dtb in alldtbs.split(' ') if dtb])
110
111
112IMAGE_BOOT_FILES ?= "bcm2835-bootfiles/* \
113 ${@make_dtb_boot_files(d)} \
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500114 ${@bb.utils.contains('RPI_USE_U_BOOT', '1', \
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500115 '${KERNEL_IMAGETYPE} u-boot.bin;${SDIMG_KERNELIMAGE} boot.scr', \
116 '${KERNEL_IMAGETYPE};${SDIMG_KERNELIMAGE}', d)} \
117 "
118do_image_wic[depends] += " \
119 bcm2835-bootfiles:do_deploy \
120 ${@bb.utils.contains('RPI_USE_U_BOOT', '1', 'u-boot:do_deploy', '',d)} \
121 "
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -0600122
Brad Bishop316dfdd2018-06-25 12:45:53 -0400123do_image_wic[recrdeps] = "do_build"
124
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -0600125# The kernel image is installed into the FAT32 boot partition and does not need
126# to also be installed into the rootfs.
Brad Bishop316dfdd2018-06-25 12:45:53 -0400127RDEPENDS_${KERNEL_PACKAGE_NAME}-base = ""