blob: 4bbd576b99bbd94aa0720775747a8cd2438006e5 [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 \
28 overlays/lirc-rpi.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 Bishop6e60e8b2018-02-01 10:27:11 -050033 overlays/pitft35-resistive.dtbo \
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -060034 overlays/pps-gpio.dtbo \
35 overlays/rpi-ft5406.dtbo \
Brad Bishop9392c692018-09-07 15:37:17 +010036 overlays/rpi-poe.dtbo \
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -060037 overlays/vc4-kms-v3d.dtbo \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080038 overlays/w1-gpio-pullup.dtbo \
39 overlays/w1-gpio.dtbo \
Brad Bishopf27bdd52018-05-07 15:42:31 +020040 "
41
42RPI_KERNEL_DEVICETREE ?= " \
43 bcm2708-rpi-0-w.dtb \
44 bcm2708-rpi-b.dtb \
45 bcm2708-rpi-b-plus.dtb \
46 bcm2709-rpi-2-b.dtb \
47 bcm2710-rpi-3-b.dtb \
48 bcm2710-rpi-3-b-plus.dtb \
49 bcm2708-rpi-cm.dtb \
50 bcm2710-rpi-cm3.dtb \
51 "
52
53KERNEL_DEVICETREE ?= " \
54 ${RPI_KERNEL_DEVICETREE} \
55 ${RPI_KERNEL_DEVICETREE_OVERLAYS} \
Patrick Williams8b8bc412016-08-17 15:02:23 -050056 "
Brad Bishopd7bf8c12018-02-25 22:55:05 -050057
58# By default:
59#
60# * When u-boot is disabled use the "Image" format which can be directly loaded
61# by the rpi firmware.
62#
63# * When u-boot is enabled use the "uImage" format and the "bootm" command
64# within u-boot to load the kernel.
65KERNEL_BOOTCMD ??= "bootm"
66KERNEL_IMAGETYPE_UBOOT ??= "uImage"
Brad Bishop316dfdd2018-06-25 12:45:53 -040067KERNEL_IMAGETYPE_DIRECT ??= "zImage"
68KERNEL_IMAGETYPE ?= "${@bb.utils.contains('RPI_USE_U_BOOT', '1', \
69 '${KERNEL_IMAGETYPE_UBOOT}', '${KERNEL_IMAGETYPE_DIRECT}', d)}"
Patrick Williams8b8bc412016-08-17 15:02:23 -050070
71MACHINE_FEATURES += "apm usbhost keyboard vfat ext2 screen touchscreen alsa bluetooth wifi sdio"
72
73# Raspberry Pi has no hardware clock
74MACHINE_FEATURES_BACKFILL_CONSIDERED = "rtc"
75
Brad Bishop316dfdd2018-06-25 12:45:53 -040076MACHINE_EXTRA_RRECOMMENDS += " kernel-modules udev-rules-rpi"
Patrick Williams8b8bc412016-08-17 15:02:23 -050077
78# Set Raspberrypi splash image
79SPLASH = "psplash-raspberrypi"
80
Brad Bishop6e60e8b2018-02-01 10:27:11 -050081def make_dtb_boot_files(d):
82 # Generate IMAGE_BOOT_FILES entries for device tree files listed in
83 # KERNEL_DEVICETREE.
84 alldtbs = d.getVar('KERNEL_DEVICETREE')
85 imgtyp = d.getVar('KERNEL_IMAGETYPE')
86
87 def transform(dtb):
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080088 base = os.path.basename(dtb)
Brad Bishop6e60e8b2018-02-01 10:27:11 -050089 if dtb.endswith('dtb'):
90 # eg: whatever/bcm2708-rpi-b.dtb has:
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080091 # DEPLOYDIR file: bcm2708-rpi-b.dtb
Brad Bishop6e60e8b2018-02-01 10:27:11 -050092 # destination: bcm2708-rpi-b.dtb
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080093 return base
Brad Bishop6e60e8b2018-02-01 10:27:11 -050094 elif dtb.endswith('dtbo'):
95 # overlay dtb:
96 # eg: overlays/hifiberry-amp.dtbo has:
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080097 # DEPLOYDIR file: hifiberry-amp.dtbo
Brad Bishop6e60e8b2018-02-01 10:27:11 -050098 # destination: overlays/hifiberry-amp.dtbo
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080099 return '{};{}'.format(base, dtb)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500100
101 return ' '.join([transform(dtb) for dtb in alldtbs.split(' ') if dtb])
102
103
104IMAGE_BOOT_FILES ?= "bcm2835-bootfiles/* \
105 ${@make_dtb_boot_files(d)} \
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500106 ${@bb.utils.contains('RPI_USE_U_BOOT', '1', \
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500107 '${KERNEL_IMAGETYPE} u-boot.bin;${SDIMG_KERNELIMAGE} boot.scr', \
108 '${KERNEL_IMAGETYPE};${SDIMG_KERNELIMAGE}', d)} \
109 "
110do_image_wic[depends] += " \
111 bcm2835-bootfiles:do_deploy \
112 ${@bb.utils.contains('RPI_USE_U_BOOT', '1', 'u-boot:do_deploy', '',d)} \
113 "
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -0600114
Brad Bishop316dfdd2018-06-25 12:45:53 -0400115do_image_wic[recrdeps] = "do_build"
116
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -0600117# The kernel image is installed into the FAT32 boot partition and does not need
118# to also be installed into the rootfs.
Brad Bishop316dfdd2018-06-25 12:45:53 -0400119RDEPENDS_${KERNEL_PACKAGE_NAME}-base = ""