Path: blob/master/arch/arm/mach-ixp4xx/include/mach/hardware.h
17687 views
/*1* arch/arm/mach-ixp4xx/include/mach/hardware.h2*3* Copyright (C) 2002 Intel Corporation.4* Copyright (C) 2003-2004 MontaVista Software, Inc.5*6* This program is free software; you can redistribute it and/or modify7* it under the terms of the GNU General Public License version 2 as8* published by the Free Software Foundation.9*10*/1112/*13* Hardware definitions for IXP4xx based systems14*/1516#ifndef __ASM_ARCH_HARDWARE_H__17#define __ASM_ARCH_HARDWARE_H__1819#define PCIBIOS_MIN_IO 0x0000100020#ifdef CONFIG_IXP4XX_INDIRECT_PCI21#define PCIBIOS_MIN_MEM 0x10000000 /* 1 GB of indirect PCI MMIO space */22#define PCIBIOS_MAX_MEM 0x4FFFFFFF23#else24#define PCIBIOS_MIN_MEM 0x48000000 /* 64 MB of PCI MMIO space */25#define PCIBIOS_MAX_MEM 0x4BFFFFFF26#endif2728#define ARCH_HAS_DMA_SET_COHERENT_MASK2930#define pcibios_assign_all_busses() 13132/* Register locations and bits */33#include "ixp4xx-regs.h"3435#ifndef __ASSEMBLER__36#include <mach/cpu.h>37#endif3839/* Platform helper functions and definitions */40#include "platform.h"4142#endif /* _ASM_ARCH_HARDWARE_H */434445