1 /* 2 * Copyright (c) 2016-2024, Arm Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef RPI_HW_H 8 #define RPI_HW_H 9 10 #include <lib/utils_def.h> 11 12 /* 13 * Peripherals 14 */ 15 16 #define RPI_IO_BASE ULL(0x3F000000) 17 #define RPI_IO_SIZE ULL(0x01000000) 18 19 /* 20 * ARM <-> VideoCore mailboxes 21 */ 22 #define RPI3_MBOX_OFFSET ULL(0x0000B880) 23 #define RPI3_MBOX_BASE (RPI_IO_BASE + RPI3_MBOX_OFFSET) 24 25 /* 26 * Power management, reset controller, watchdog. 27 */ 28 #define RPI3_IO_PM_OFFSET ULL(0x00100000) 29 #define RPI3_PM_BASE (RPI_IO_BASE + RPI3_IO_PM_OFFSET) 30 31 /* 32 * Hardware random number generator. 33 */ 34 #define RPI3_IO_RNG_OFFSET ULL(0x00104000) 35 #define RPI3_RNG_BASE (RPI_IO_BASE + RPI3_IO_RNG_OFFSET) 36 37 /* 38 * Serial ports: 39 * 'Mini UART' in the BCM docucmentation is the 8250 compatible UART. 40 * There is also a PL011 UART, multiplexed to the same pins. 41 */ 42 #define RPI3_IO_MINI_UART_OFFSET ULL(0x00215040) 43 #define RPI3_MINI_UART_BASE (RPI_IO_BASE + RPI3_IO_MINI_UART_OFFSET) 44 #define RPI3_IO_PL011_UART_OFFSET ULL(0x00201000) 45 #define RPI3_PL011_UART_BASE (RPI_IO_BASE + RPI3_IO_PL011_UART_OFFSET) 46 #define RPI3_PL011_UART_CLOCK ULL(48000000) 47 48 /* 49 * GPIO controller 50 */ 51 #define RPI3_IO_GPIO_OFFSET ULL(0x00200000) 52 #define RPI3_GPIO_BASE (RPI_IO_BASE + RPI3_IO_GPIO_OFFSET) 53 54 /* 55 * SDHost controller 56 */ 57 #define RPI3_IO_SDHOST_OFFSET ULL(0x00202000) 58 #define RPI3_SDHOST_BASE (RPI_IO_BASE + RPI3_IO_SDHOST_OFFSET) 59 60 /* 61 * Local interrupt controller 62 */ 63 #define RPI3_INTC_BASE_ADDRESS ULL(0x40000000) 64 /* Registers on top of RPI3_INTC_BASE_ADDRESS */ 65 #define RPI3_INTC_CONTROL_OFFSET ULL(0x00000000) 66 #define RPI3_INTC_PRESCALER_OFFSET ULL(0x00000008) 67 #define RPI3_INTC_MBOX_CONTROL_OFFSET ULL(0x00000050) 68 #define RPI3_INTC_MBOX_CONTROL_SLOT3_FIQ ULL(0x00000080) 69 #define RPI3_INTC_PENDING_FIQ_OFFSET ULL(0x00000070) 70 #define RPI3_INTC_PENDING_FIQ_MBOX3 ULL(0x00000080) 71 72 #endif /* RPI_HW_H */ 73