Linux kernel & device driver programming

Cross-Referenced Linux and Device Driver Code

[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ]
Version: [ 2.6.11.8 ] [ 2.6.25 ] [ 2.6.25.8 ] [ 2.6.31.13 ] Architecture: [ i386 ]
  1 /*
  2  * linux/include/asm-arm/arch-omap/board-innovator.h
  3  *
  4  * Copyright (C) 2001 RidgeRun, Inc.
  5  *
  6  * This program is free software; you can redistribute it and/or modify it
  7  * under the terms of the GNU General Public License as published by the
  8  * Free Software Foundation; either version 2 of the License, or (at your
  9  * option) any later version.
 10  *
 11  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
 12  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 13  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
 14  * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 15  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 16  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
 17  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
 18  * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 19  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 20  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 21  *
 22  * You should have received a copy of the GNU General Public License along
 23  * with this program; if not, write to the Free Software Foundation, Inc.,
 24  * 675 Mass Ave, Cambridge, MA 02139, USA.
 25  */
 26 #ifndef __ASM_ARCH_OMAP_INNOVATOR_H
 27 #define __ASM_ARCH_OMAP_INNOVATOR_H
 28 
 29 #if defined (CONFIG_ARCH_OMAP15XX)
 30 
 31 #ifndef OMAP_SDRAM_DEVICE
 32 #define OMAP_SDRAM_DEVICE                       D256M_1X16_4B
 33 #endif
 34 
 35 #define OMAP1510P1_IMIF_PRI_VALUE               0x00
 36 #define OMAP1510P1_EMIFS_PRI_VALUE              0x00
 37 #define OMAP1510P1_EMIFF_PRI_VALUE              0x00
 38 
 39 #define NR_FPGA_IRQS            24
 40 #define NR_IRQS                 (IH_BOARD_BASE + NR_FPGA_IRQS)
 41 
 42 #ifndef __ASSEMBLY__
 43 void fpga_write(unsigned char val, int reg);
 44 unsigned char fpga_read(int reg);
 45 #endif
 46 
 47 #endif /* CONFIG_ARCH_OMAP15XX */
 48 
 49 #if defined (CONFIG_ARCH_OMAP16XX)
 50 
 51 /* At OMAP1610 Innovator the Ethernet is directly connected to CS1 */
 52 #define INNOVATOR1610_ETHR_START        0x04000300
 53 
 54 #endif /* CONFIG_ARCH_OMAP1610 */
 55 #endif /* __ASM_ARCH_OMAP_INNOVATOR_H */
 56 
  This page was automatically generated by the LXR engine.