haiku/headers/private/kernel/arch/arm/bcm283X.h
Alexander von Gluck IV b1ad5660b2 arm: Prevent bcm283X inclusion from breaking other boards
* Move *_BASE into board_config.h to prevent conflicts
2015-04-04 17:44:32 -05:00

147 lines
4.3 KiB
C

/*
* Copyright (c) 2012-2015 Haiku, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files
* (the "Software"), to deal in the Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* Authors:
* Alexander von Gluck, kallisti5@unixzen.com
*/
#ifndef __PLATFORM_BCM283X_H
#define __PLATFORM_BCM283X_H
#define SIZE_4K 0x00001000
/*
* Found in:
* Broadcom BCM2835 ARM Peripherals
* - BCM2835-ARM-Peripherals.pdf
*/
// Section 1.2.2
// These board bases should go away when we start using FDT's
// (all loader drivers compiled in, drivers chosen based on FDT)
//
#define BCM283X_SDRAM_BASE 0x00000000
#define BCM2835_PERIPHERAL_BASE 0x20000000
#define BCM2836_PERIPHERAL_BASE 0x3f000000
// Added to physical addresses to select the different cache behaviours
#define BCM283X_VIDEO_CORE_L1_L2_CACHED (0 << 30)
#define BCM283X_VIDEO_CORE_L2_COHERENT (1 << 30)
#define BCM283X_VIDEO_CORE_L2_CACHED (2 << 30)
#define BCM283X_VIDEO_CORE_UNCACHED (3 << 30)
// The highest two bits are used to select aliases to the physical memory
// with different cache semantic. Clearing them converts the address to
// physical memory as seen by ARM.
#define BCM283X_BUS_TO_PHYSICAL(x) (x & ~BCM283X_VIDEO_CORE_UNCACHED)
#define ST_BASE 0x3000
// System Timer, sec 12.0, page 172
#define DMA_BASE 0x7000
// DMA Controller, sec 4.2, page 39
#define ARM_BASE 0xB000
// BCM283X ARM Control Block, sec 7.5, page 112
#define PM_BASE 0x100000
// Power Management, Reset controller and Watchdog registers
#define GPIO_BASE 0x200000
// GPIO, sec 6.1, page 90
#define UART0_BASE 0x201000
// UART 0, sec 13.4, page 177
#define MMCI0_BASE 0x202000
// MMC
#define UART1_BASE 0x215000
// UART 1, sec 2.1, page 65
#define EMMC_BASE 0x300000
// eMMC interface, sec 5, page 66
#define SMI_BASE 0x600000
// SMI Base
#define USB_BASE 0x980000
// USB Controller, 15.2, page 202
// FB_BASE will depend on memory split
// 7.5, page 112
#define ARM_CTRL_BASE (ARM_BASE + 0x000)
#define ARM_CTRL_IC_BASa (ARM_BASE + 0x200)
// Interrupt controller
#define ARM_CTRL_TIMER0_1_BASE (ARM_BASE + 0x400)
// Timer 0 and 1
#define ARM_CTRL_0_SBM_BASE (ARM_BASE + 0x800)
// ARM Semaphores, Doorbells, and Mailboxes
/* UART */
// TODO: Check these UART defines!
#define UART_RHR 0
#define UART_THR 0
#define UART_DLL 0
#define UART_IER 1
#define UART_DLH 1
#define UART_IIR 2
#define UART_FCR 2
#define UART_EFR 2
#define UART_LCR 3
#define UART_MCR 4
#define UART_LSR 5
#define UART_MSR 6
#define UART_TCR 6
#define UART_SPR 7
#define UART_TLR 7
#define UART_MDR1 8
#define UART_MDR2 9
#define UART_SFLSR 10
#define UART_RESUME 11
#define UART_TXFLL 10
#define UART_TXFLH 11
#define UART_SFREGL 12
#define UART_SFREGH 13
#define UART_RXFLL 12
#define UART_RXFLH 13
#define UART_BLR 14
#define UART_UASR 14
#define UART_ACREG 15
#define UART_SCR 16
#define UART_SSR 17
#define UART_EBLR 18
#define UART_MVR 19
#define UART_SYSC 20
/* Mailbox */
#define ARM_CTRL_0_MAILBOX_BASE (ARM_CTRL_0_SBM_BASE + 0x80)
#define ARM_MAILBOX_READ 0x00
#define ARM_MAILBOX_STATUS 0x18
#define ARM_MAILBOX_WRITE 0x20
#define ARM_MAILBOX_FULL (1 << 31)
#define ARM_MAILBOX_EMPTY (1 << 30)
#define ARM_MAILBOX_DATA_MASK 0xfffffff0
#define ARM_MAILBOX_CHANNEL_MASK 0x0000000f
#define ARM_MAILBOX_CHANNEL_FRAMEBUFFER 1
#endif /* __PLATFORM_BCM283X_H */