TNETV107X is a Texas Instruments SoC based on an ARM1176 core, and with a
bunch on on-chip integrated peripherals.  This patch adds support for the
TNETV107X EVM board.

Signed-off-by: Cyril Chemparathy <cy...@ti.com>
---
 MAKEALL                           |    1 +
 Makefile                          |    3 +
 board/ti/tnetv107xevm/Makefile    |   49 ++++++++
 board/ti/tnetv107xevm/config.mk   |   20 ++++
 board/ti/tnetv107xevm/sdb_board.c |   66 +++++++++++
 board/ti/tnetv107xevm/u-boot.lds  |   48 ++++++++
 include/configs/tnetv107x_evm.h   |  225 +++++++++++++++++++++++++++++++++++++
 7 files changed, 412 insertions(+), 0 deletions(-)
 create mode 100644 board/ti/tnetv107xevm/Makefile
 create mode 100644 board/ti/tnetv107xevm/config.mk
 create mode 100644 board/ti/tnetv107xevm/sdb_board.c
 create mode 100644 board/ti/tnetv107xevm/u-boot.lds
 create mode 100644 include/configs/tnetv107x_evm.h

diff --git a/MAKEALL b/MAKEALL
index a88c31e..63d8d16 100755
--- a/MAKEALL
+++ b/MAKEALL
@@ -623,6 +623,7 @@ LIST_ARM11="                        \
        mx31pdk_nand            \
        qong                    \
        smdk6400                \
+       tnetv107x_evm           \
 "
 
 #########################################################################
diff --git a/Makefile b/Makefile
index c0e73de..e723e7c 100644
--- a/Makefile
+++ b/Makefile
@@ -2936,6 +2936,9 @@ davinci_dm365evm_config : unconfig
 davinci_dm6467evm_config :     unconfig
        @$(MKCONFIG) $(@:_config=) arm arm926ejs dm6467evm davinci davinci
 
+tnetv107x_evm_config: unconfig
+       @$(MKCONFIG) $(@:_config=) arm arm1176 tnetv107xevm ti tnetv107x
+
 imx27lite_config:      unconfig
        @$(MKCONFIG) $(@:_config=) arm arm926ejs imx27lite logicpd mx27
 
diff --git a/board/ti/tnetv107xevm/Makefile b/board/ti/tnetv107xevm/Makefile
new file mode 100644
index 0000000..2446c2a
--- /dev/null
+++ b/board/ti/tnetv107xevm/Makefile
@@ -0,0 +1,49 @@
+#
+# See file CREDITS for list of people who contributed to this
+# project.
+#
+# This program 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 of the License, or
+# (at your option) any later version.
+#
+# This program 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 this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
+include $(TOPDIR)/config.mk
+
+LIB    = $(obj)lib$(BOARD).a
+
+COBJS          += sdb_board.o
+
+SRCS   := $(SOBJS:.o=.S) $(COBJS:.o=.c)
+OBJS   := $(addprefix $(obj),$(COBJS))
+SOBJS  := $(addprefix $(obj),$(SOBJS))
+
+.PHONY: all
+
+all: $(LIB)
+
+$(LIB):        $(obj).depend $(OBJS) $(SOBJS)
+       $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS)
+
+clean:
+       rm -f $(SOBJS) $(OBJS)
+
+distclean:     clean
+       rm -f $(LIB) core *.bak *~ .depend
+
+#########################################################################
+# This is for $(obj).depend target
+include $(SRCTREE)/rules.mk
+
+sinclude $(obj).depend
+
+#########################################################################
diff --git a/board/ti/tnetv107xevm/config.mk b/board/ti/tnetv107xevm/config.mk
new file mode 100644
index 0000000..d24d49a
--- /dev/null
+++ b/board/ti/tnetv107xevm/config.mk
@@ -0,0 +1,20 @@
+#
+# See file CREDITS for list of people who contributed to this
+# project.
+#
+# This program 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 of the License, or
+# (at your option) any later version.
+#
+# This program 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 this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
+TEXT_BASE = 0x83FC0000
diff --git a/board/ti/tnetv107xevm/sdb_board.c 
b/board/ti/tnetv107xevm/sdb_board.c
new file mode 100644
index 0000000..fa7b49c
--- /dev/null
+++ b/board/ti/tnetv107xevm/sdb_board.c
@@ -0,0 +1,66 @@
+/*
+ * TNETV107X-EVM: Board initialization
+ *
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * This program 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 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#include <common.h>
+#include <miiphy.h>
+#include <linux/mtd/nand.h>
+#include <asm/arch/hardware.h>
+#include <asm/arch/clock.h>
+#include <asm/io.h>
+#include <asm/mach-types.h>
+#include <asm/arch/nand_defs.h>
+
+DECLARE_GLOBAL_DATA_PTR;
+
+int board_init(void)
+{
+#ifndef CONFIG_USE_IRQ
+       __raw_writel(0, INTC_GLB_EN);           /* Global disable       */
+       __raw_writel(0, INTC_HINT_EN);          /* Disable host ints    */
+       __raw_writel(0, INTC_EN_CLR0 + 0);      /* Clear enable         */
+       __raw_writel(0, INTC_EN_CLR0 + 4);      /* Clear enable         */
+       __raw_writel(0, INTC_EN_CLR0 + 8);      /* Clear enable         */
+#endif
+
+       gd->bd->bi_arch_number = MACH_TYPE_TNETV107X;
+       gd->bd->bi_boot_params = LINUX_BOOT_PARAM_ADDR;
+
+       clk_enable(TNETV107X_LPSC_WDT_ARM);
+
+       return 0;
+}
+
+int dram_init(void)
+{
+       gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
+       gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
+
+       return 0;
+}
+
+#ifdef CONFIG_NAND_DAVINCI
+int board_nand_init(struct nand_chip *nand)
+{
+       davinci_nand_init(nand);
+
+       return 0;
+}
+#endif
diff --git a/board/ti/tnetv107xevm/u-boot.lds b/board/ti/tnetv107xevm/u-boot.lds
new file mode 100644
index 0000000..3afa17f
--- /dev/null
+++ b/board/ti/tnetv107xevm/u-boot.lds
@@ -0,0 +1,48 @@
+/*
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * This program 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 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
+OUTPUT_ARCH(arm)
+ENTRY(_start)
+SECTIONS
+{
+       . = 0x00000000;
+       . = ALIGN(4);
+       .text   :
+       {
+         cpu/arm1176/start.o   (.text)
+         *(.text)
+       }
+       . = ALIGN(4);
+       .rodata : { *(.rodata) }
+       . = ALIGN(4);
+       .data : { *(.data) }
+       . = ALIGN(4);
+       .got : { *(.got) }
+
+       . = .;
+       __u_boot_cmd_start = .;
+       .u_boot_cmd : { *(.u_boot_cmd) }
+       __u_boot_cmd_end = .;
+
+       . = ALIGN(4);
+       __bss_start = .;
+       .bss (NOLOAD) : { *(.bss) }
+       _end = .;
+}
diff --git a/include/configs/tnetv107x_evm.h b/include/configs/tnetv107x_evm.h
new file mode 100644
index 0000000..795e3f1
--- /dev/null
+++ b/include/configs/tnetv107x_evm.h
@@ -0,0 +1,225 @@
+/*
+ * Copyright (C) 2008 Texas Instruments, Inc <www.ti.com>
+ *
+ * Based on davinci_dvevm.h. Original Copyrights follow:
+ *
+ * Copyright (C) 2007 Sergey Kubushyn <k...@koi8.net>
+ *
+ * This program 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 of
+ * the License, or (at your option) any later version.
+ *
+ * This program 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 this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ */
+
+#ifndef __CONFIG_H
+#define __CONFIG_H
+
+#include <asm/sizes.h>
+#include <asm/arch/hardware.h>
+#include <asm/arch/clock.h>
+
+/****************************************************************/
+/* Architecture, CPU, etc.                                      */
+/****************************************************************/
+#define CONFIG_ARM1176
+#define CONFIG_TNETV107X
+#define CONFIG_TNETV107X_EVM
+#define CONFIG_ARCH_CPU_INIT
+#define CONFIG_SYS_UBOOT_BASE          TEXT_BASE
+#define CONFIG_DISABLE_TCM
+#define CONFIG_PERIPORT_REMAP
+#define CONFIG_PERIPORT_BASE           0x2000000
+#define CONFIG_PERIPORT_SIZE           0x10
+#define CONFIG_SYS_MON_DEBUG
+#define CONFIG_SYS_INT_OSC_FREQ                24000000
+#define CONFIG_SYS_CLK_FREQ            clk_get_rate(TNETV107X_LPSC_ARM)
+
+/****************************************************************/
+/* PLL Configuration                                            */
+/****************************************************************/
+/* SYS PLL */
+#define CONFIG_PLL_SYS_CONFIG                  0
+#define CONFIG_PLL_SYS_INT_OSC                 1
+#define CONFIG_PLL_SYS_EXT_FREQ                 25000000
+
+/* TDM PLL */
+#define CONFIG_PLL_TDM_CONFIG                  0
+#define CONFIG_PLL_TDM_INT_OSC                 1
+#define CONFIG_PLL_TDM_EXT_FREQ                 19200000
+
+/* ETH PLL */
+#define CONFIG_PLL_ETH_CONFIG                  1
+#define CONFIG_PLL_ETH_INT_OSC                 1
+#define CONFIG_PLL_ETH_EXT_FREQ                 25000000
+#define CONFIG_PLL_ETH_PLL_FREQ                500000000
+#define CONFIG_PLL_ETH_5_CLK             5000000
+#define CONFIG_PLL_ETH_50_CLK           50000000
+#define CONFIG_PLL_ETH_125_CLK         125000000
+#define CONFIG_PLL_ETH_250_CLK         250000000
+#define CONFIG_PLL_ETH_25_CLK           25000000
+
+/****************************************************************/
+/* Async EMIF Configuration                                     */
+/****************************************************************/
+#define ASYNC_EMIF_MODE_NOR            0
+#define ASYNC_EMIF_MODE_NAND           1
+#define ASYNC_EMIF_MODE_ONENAND                2
+
+#define ASYNC_EMIF_CS0_SELECT_STROBE   0
+#define ASYNC_EMIF_CS0_EXTEND_WAIT     0
+#define ASYNC_EMIF_CS0_WR_SETUP                5       /* cycles   */
+#define ASYNC_EMIF_CS0_WR_STROBE       5       /* cycles   */
+#define ASYNC_EMIF_CS0_WR_HOLD         2       /* cycles   */
+#define ASYNC_EMIF_CS0_RD_SETUP                5       /* cycles   */
+#define ASYNC_EMIF_CS0_RD_STROBE       5       /* cycles   */
+#define ASYNC_EMIF_CS0_RD_HOLD         2       /* cycles   */
+#define ASYNC_EMIF_CS0_TURN_AROUND     5       /* cycles   */
+#define ASYNC_EMIF_CS0_WIDTH           ASYNC_EMIF_8
+
+#define ASYNC_EMIF_CS1_SELECT_STROBE   0
+#define ASYNC_EMIF_CS1_EXTEND_WAIT     0
+#define ASYNC_EMIF_CS1_WR_SETUP                2       /* cycles   */
+#define ASYNC_EMIF_CS1_WR_STROBE       27      /* cycles   */
+#define ASYNC_EMIF_CS1_WR_HOLD         4       /* cycles   */
+#define ASYNC_EMIF_CS1_RD_SETUP                2       /* cycles   */
+#define ASYNC_EMIF_CS1_RD_STROBE       27      /* cycles   */
+#define ASYNC_EMIF_CS1_RD_HOLD         4       /* cycles   */
+#define ASYNC_EMIF_CS1_TURN_AROUND     2       /* cycles   */
+#define ASYNC_EMIF_CS1_WIDTH           ASYNC_EMIF_PRESERVE
+
+#define ASYNC_EMIF_CS2_SELECT_STROBE   0
+#define ASYNC_EMIF_CS2_EXTEND_WAIT     0
+#define ASYNC_EMIF_CS2_WR_SETUP                2       /* cycles   */
+#define ASYNC_EMIF_CS2_WR_STROBE       27      /* cycles   */
+#define ASYNC_EMIF_CS2_WR_HOLD         4       /* cycles   */
+#define ASYNC_EMIF_CS2_RD_SETUP                2       /* cycles   */
+#define ASYNC_EMIF_CS2_RD_STROBE       27      /* cycles   */
+#define ASYNC_EMIF_CS2_RD_HOLD         4       /* cycles   */
+#define ASYNC_EMIF_CS2_TURN_AROUND     2       /* cycles   */
+#define ASYNC_EMIF_CS2_WIDTH           ASYNC_EMIF_PRESERVE
+
+#define ASYNC_EMIF_CS3_SELECT_STROBE   0
+#define ASYNC_EMIF_CS3_EXTEND_WAIT     0
+#define ASYNC_EMIF_CS3_WR_SETUP                1       /* cycles   */
+#define ASYNC_EMIF_CS3_WR_STROBE       90      /* cycles   */
+#define ASYNC_EMIF_CS3_WR_HOLD         3       /* cycles   */
+#define ASYNC_EMIF_CS3_RD_SETUP                1       /* cycles   */
+#define ASYNC_EMIF_CS3_RD_STROBE       26      /* cycles   */
+#define ASYNC_EMIF_CS3_RD_HOLD         3       /* cycles   */
+#define ASYNC_EMIF_CS3_TURN_AROUND     1       /* cycles   */
+#define ASYNC_EMIF_CS3_WIDTH           ASYNC_EMIF_8
+
+#define CONFIG_SYS_TIMERBASE           TNETV107X_TIMER0_BASE
+#define CONFIG_SYS_HZ_CLOCK            clk_get(TNETV107X_LPSC_TIMER0)
+#define CONFIG_SYS_HZ                  1000
+
+/****************************************************************/
+/* Memory Info                                                 */
+/****************************************************************/
+#define CONFIG_SYS_MALLOC_LEN          (0x10000 + 1*1024*1024)
+#define CONFIG_SYS_GBL_DATA_SIZE       128
+#define PHYS_SDRAM_1                   TNETV107X_DDR_EMIF_DATA_BASE
+#define PHYS_SDRAM_1_SIZE              0x04000000
+#define CONFIG_SYS_MEMTEST_START       PHYS_SDRAM_1
+#define CONFIG_SYS_MEMTEST_END         (PHYS_SDRAM_1 + 16*1024*1024)
+#define CONFIG_NR_DRAM_BANKS           1
+#define CONFIG_STACKSIZE               (256*1024)
+
+/****************************************************************/
+/* Serial Driver Info                                           */
+/****************************************************************/
+#define CONFIG_SYS_NS16550
+#define CONFIG_SYS_NS16550_SERIAL
+#define CONFIG_SYS_NS16550_REG_SIZE    -4
+#define CONFIG_SYS_NS16550_COM1                TNETV107X_UART1_BASE
+#define CONFIG_SYS_NS16550_CLK         clk_get(TNETV107X_LPSC_UART1)
+#define CONFIG_CONS_INDEX              1
+#define CONFIG_BAUDRATE                        115200
+#define CONFIG_SYS_BAUDRATE_TABLE      { 9600, 19200, 38400, 57600, 115200 }
+
+/****************************************************************/
+/* Flash and environment info                                   */
+/****************************************************************/
+#define CONFIG_SYS_NO_FLASH
+#define CONFIG_ENV_IS_IN_NAND
+#define CONFIG_NAND_DAVINCI
+#define CONFIG_ENV_SIZE                        (SZ_128K)
+#define CONFIG_SYS_NAND_HW_ECC
+#define CONFIG_SYS_NAND_1BIT_ECC
+#define CONFIG_SYS_NAND_CS             2
+#define CONFIG_SYS_NAND_BASE           TNETV107X_ASYNC_EMIF_DATA_CE0_BASE
+#define CONFIG_SYS_CLE_MASK            0x10
+#define CONFIG_SYS_ALE_MASK            0x8
+#define CONFIG_SYS_MAX_NAND_DEVICE     1
+#define CONFIG_MTD_PARTITIONS
+#define CONFIG_CMD_MTDPARTS
+#define CONFIG_MTD_DEVICE
+#define NAND_MAX_CHIPS                 1
+#define CONFIG_ENV_OFFSET              0x180000
+#define DEF_BOOTM                      ""
+#define MTDIDS_DEFAULT                 "nand0=davinci_nand.0"
+#define MTDPARTS_DEFAULT               "mtdparts=davinci_nand.0:"      \
+                                               "1536k(uboot)ro,"       \
+                                               "128k(params)ro,"       \
+                                               "4m(kernel),"           \
+                                               "-(filesystem)"
+
+/****************************************************************/
+/* General U-Boot configuration                                 */
+/****************************************************************/
+#define CONFIG_BOOTFILE                        "uImage"
+#define CONFIG_SYS_PROMPT              "U-Boot > "
+#define CONFIG_SYS_CBSIZE              1024
+#define CONFIG_SYS_MAXARGS             64
+#define CONFIG_SYS_BARGSIZE            CONFIG_SYS_CBSIZE
+#define CONFIG_VERSION_VARIABLE
+#define CONFIG_AUTO_COMPLETE
+#define CONFIG_SYS_HUSH_PARSER
+#define CONFIG_SYS_PROMPT_HUSH_PS2     "> "
+#define CONFIG_CMDLINE_EDITING
+#define CONFIG_SYS_LONGHELP
+#define CONFIG_CRC32_VERIFY
+#define CONFIG_MX_CYCLIC
+#define CONFIG_SYS_PBSIZE              (CONFIG_SYS_CBSIZE +            \
+                                        sizeof(CONFIG_SYS_PROMPT) + 16)
+#define CONFIG_SYS_LOAD_ADDR           (CONFIG_SYS_MEMTEST_START +     \
+                                        0x700000)
+#define LINUX_BOOT_PARAM_ADDR          (CONFIG_SYS_MEMTEST_START + 0x100)
+#define CONFIG_CMDLINE_TAG
+#define CONFIG_SETUP_MEMORY_TAGS
+#define CONFIG_BOOTARGS                        "mem=32M console=ttyS1,115200n8 
" \
+                                       "root=/dev/mmcblk0p1 rw noinitrd"
+#define CONFIG_BOOTCOMMAND             ""
+#define CONFIG_BOOTDELAY               1
+
+#define CONFIG_CMD_BDI
+#define CONFIG_CMD_BOOTD
+#define CONFIG_CMD_CONSOLE
+#define CONFIG_CMD_ECHO
+#define CONFIG_CMD_EDITENV
+#define CONFIG_CMD_IMI
+#define CONFIG_CMD_ITEST
+#define CONFIG_CMD_LOADB
+#define CONFIG_CMD_LOADS
+#define CONFIG_CMD_MEMORY
+#define CONFIG_CMD_MISC
+#define CONFIG_CMD_RUN
+#define CONFIG_CMD_SAVEENV
+#define CONFIG_CMD_SOURCE
+#define CONFIG_CMD_ENV
+#define CONFIG_CMD_ASKENV
+#define CONFIG_CMD_SAVES
+#define CONFIG_CMD_MEMORY
+#define CONFIG_CMD_NAND
+
+#endif /* __CONFIG_H */
-- 
1.6.3.3

_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to