]> git.karo-electronics.de Git - karo-tx-redboot.git/blobdiff - packages/hal/arm/mx35/evb/v2_0/include/fsl_board.h
Initial revision
[karo-tx-redboot.git] / packages / hal / arm / mx35 / evb / v2_0 / include / fsl_board.h
diff --git a/packages/hal/arm/mx35/evb/v2_0/include/fsl_board.h b/packages/hal/arm/mx35/evb/v2_0/include/fsl_board.h
new file mode 100644 (file)
index 0000000..00d0699
--- /dev/null
@@ -0,0 +1,95 @@
+#ifndef CYGONCE_FSL_BOARD_H
+#define CYGONCE_FSL_BOARD_H
+
+//=============================================================================
+//
+//      Platform specific support (register layout, etc)
+//
+//=============================================================================
+//####ECOSGPLCOPYRIGHTBEGIN####
+// -------------------------------------------
+// This file is part of eCos, the Embedded Configurable Operating System.
+// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
+//
+// eCos is free software; you can redistribute it and/or modify it under
+// the terms of the GNU General Public License as published by the Free
+// Software Foundation; either version 2 or (at your option) any later version.
+//
+// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
+// WARRANTY; without even the implied warranty of MERCHANTABILITY or
+// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+// for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with eCos; if not, write to the Free Software Foundation, Inc.,
+// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+//
+// As a special exception, if other files instantiate templates or use macros
+// or inline functions from this file, or you compile this file and link it
+// with other works to produce a work based on this file, this file does not
+// by itself cause the resulting work to be covered by the GNU General Public
+// License. However the source code for this file must still be made available
+// in accordance with section (3) of the GNU General Public License.
+//
+// This exception does not invalidate any other reasons why a work based on
+// this file might be covered by the GNU General Public License.
+//
+// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
+// at http://sources.redhat.com/ecos/ecos-license/
+// -------------------------------------------
+//####ECOSGPLCOPYRIGHTEND####
+//===========================================================================
+
+#include <cyg/hal/hal_soc.h>        // Hardware definitions
+
+#define PMIC_SPI_BASE            CSPI2_BASE_ADDR
+#define PMIC_SPI_CHIP_SELECT_NO  SPI_CTRL_CS2
+
+#define PBC_BASE                    CS4_BASE_ADDR    /* Peripheral Bus Controller */
+#define PBC_VERSION             (PBC_BASE + 0x00000)
+#define PBC_CTRL1_SET           (PBC_BASE + 0x00008)
+#define PBC_CTRL1_CLR           (PBC_BASE + 0x0000C)
+#define PBC_CTRL2_SET           (PBC_BASE + 0x00010)
+#define PBC_CTRL2_CLR           (PBC_BASE + 0x00014)
+#define PBC_IMASK1_SET          (PBC_BASE + 0x00018)
+#define PBC_IMASK1_CLR          (PBC_BASE + 0x0001C)
+#define PBC_IMASK2_SET          (PBC_BASE + 0x00020)
+#define PBC_IMASK2_CLR          (PBC_BASE + 0x00024)
+#define PBC_STAT               (PBC_BASE + 0x00028)
+#define PBC_INT_STAT            (PBC_BASE + 0x0002C)
+
+#define BOARD_CS_UART_BASE          (PBC_BASE + 0x20000)
+#define BOARD_CS_LAN_BASE           (PBC_BASE + 0x40000)
+
+#define LAN92XX_REG_BASE           BOARD_CS_LAN_BASE
+       
+#define REDBOOT_IMAGE_SIZE          0x40000
+
+#define EXT_UART_x16
+/* MX31 ADS SDRAM is from 0x80000000, 128M */
+#define BOARD_FLASH_START           CS0_BASE_ADDR
+#define SDRAM_BASE_ADDR             CSD1_BASE_ADDR
+#define SDRAM_SIZE                  0x08000000
+#define RAM_BANK0_BASE              CSD0_BASE_ADDR
+#define RAM_BANK1_BASE              CSD1_BASE_ADDR
+
+#define FEC_PHY_ADDR   0
+
+#define LED_MAX_NUM    8
+//#define LED_IS_ON(n)    ((readw(PBC_LED_CTRL) & (1<<(n))) != 0)
+//#define TURN_LED_ON(n)  writew((readw(PBC_LED_CTRL)|(1<<(n))), PBC_LED_CTRL)
+//#define TURN_LED_OFF(n) writew((readw(PBC_LED_CTRL)&(~(1<<(n)))), PBC_LED_CTRL)
+
+#define BOARD_DEBUG_LED(n)                     
+#if 0
+#define BOARD_DEBUG_LED(n)                     \
+    CYG_MACRO_START                            \
+        if (n >= 0 && n < LED_MAX_NUM) {       \
+               if (LED_IS_ON(n))               \
+                       TURN_LED_OFF(n);        \
+               else                            \
+                       TURN_LED_ON(n);         \
+       }                                       \
+    CYG_MACRO_END
+#endif
+#endif /* CYGONCE_FSL_BOARD_H */