blob: 54775e3d41a9c590f31a949128ddee63eb32ea46 [file] [log] [blame]
Andrew Scull114096b2018-07-31 14:42:16 +01001declare_args() {
2 # Whether to include the PrimeCell UART (PL011) driver.
3 arch_aarch64_use_pl011 = false
4
5 # The base address of the PrimeCell UART (PL011) device.
6 arch_aarch64_pl011_base_address = ""
7}
8
Andrew Scull265ada92018-07-30 15:19:01 +01009assert(
10 !arch_aarch64_use_pl011 || arch_aarch64_pl011_base_address != "",
11 "Must provide the PL011 base address as \"arch_aarch64_pl011_base_address\".")