Path: blob/master/arch/arm/mach-bcmring/include/mach/hardware.h
10820 views
/*1*2* This file contains the hardware definitions of the BCMRing.3*4* Copyright (C) 1999 ARM Limited.5*6* This program is free software; you can redistribute it and/or modify7* it under the terms of the GNU General Public License as published by8* the Free Software Foundation; either version 2 of the License, or9* (at your option) any later version.10*11* This program is distributed in the hope that it will be useful,12* but WITHOUT ANY WARRANTY; without even the implied warranty of13* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14* GNU General Public License for more details.15*16* You should have received a copy of the GNU General Public License17* along with this program; if not, write to the Free Software18* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA19*/20#ifndef __ASM_ARCH_HARDWARE_H21#define __ASM_ARCH_HARDWARE_H2223#include <asm/sizes.h>24#include <mach/memory.h>25#include <cfg_global.h>26#include <mach/csp/mm_io.h>2728/* Hardware addresses of major areas.29* *_START is the physical address30* *_SIZE is the size of the region31* *_BASE is the virtual address32*/33#define RAM_START PLAT_PHYS_OFFSET3435#define RAM_SIZE (CFG_GLOBAL_RAM_SIZE-CFG_GLOBAL_RAM_SIZE_RESERVED)36#define RAM_BASE PAGE_OFFSET3738#define pcibios_assign_all_busses() 13940/* Macros to make managing spinlocks a bit more controlled in terms of naming. */41/* See reg_gpio.h, reg_irq.h, arch.c, gpio.c for example usage. */42#if defined(__KERNEL__)43#define HW_DECLARE_SPINLOCK(name) DEFINE_SPINLOCK(bcmring_##name##_reg_lock);44#define HW_EXTERN_SPINLOCK(name) extern spinlock_t bcmring_##name##_reg_lock;45#define HW_IRQ_SAVE(name, val) spin_lock_irqsave(&bcmring_##name##_reg_lock, (val))46#define HW_IRQ_RESTORE(name, val) spin_unlock_irqrestore(&bcmring_##name##_reg_lock, (val))47#else48#define HW_DECLARE_SPINLOCK(name)49#define HW_EXTERN_SPINLOCK(name)50#define HW_IRQ_SAVE(name, val) {(void)(name); (void)(val); }51#define HW_IRQ_RESTORE(name, val) {(void)(name); (void)(val); }52#endif5354#ifndef HW_IO_PHYS_TO_VIRT55#define HW_IO_PHYS_TO_VIRT MM_IO_PHYS_TO_VIRT56#endif57#define HW_IO_VIRT_TO_PHYS MM_IO_VIRT_TO_PHYS5859#endif606162