diff mbox

[U-Boot,v3,3/3] ARMV7: Exynos4: Add support for TRATS board

Message ID 1326186025-6467-4-git-send-email-riverful.kim@samsung.com
State Changes Requested
Delegated to: Minkyu Kang
Headers show

Commit Message

HeungJun, Kim Jan. 10, 2012, 9 a.m. UTC
This patch adds support for Samsung TRATS board

Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 MAINTAINERS                       |    4 +
 board/samsung/trats/Makefile      |   43 ++
 board/samsung/trats/trats.c       |  349 ++++++++++++++++
 board/samsung/trats/trats_setup.h |  814 +++++++++++++++++++++++++++++++++++++
 boards.cfg                        |    1 +
 include/configs/trats.h           |  216 ++++++++++
 6 files changed, 1427 insertions(+), 0 deletions(-)
 create mode 100644 board/samsung/trats/Makefile
 create mode 100644 board/samsung/trats/trats.c
 create mode 100644 board/samsung/trats/trats_setup.h
 create mode 100644 include/configs/trats.h

Comments

Minkyu Kang Jan. 11, 2012, 2:35 a.m. UTC | #1
Dear HeungJun, Kim,

On 10 January 2012 18:00, HeungJun, Kim <riverful.kim@samsung.com> wrote:
> This patch adds support for Samsung TRATS board
>
> Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
> ---
>  MAINTAINERS                       |    4 +
>  board/samsung/trats/Makefile      |   43 ++
>  board/samsung/trats/trats.c       |  349 ++++++++++++++++
>  board/samsung/trats/trats_setup.h |  814 +++++++++++++++++++++++++++++++++++++
>  boards.cfg                        |    1 +
>  include/configs/trats.h           |  216 ++++++++++
>  6 files changed, 1427 insertions(+), 0 deletions(-)
>  create mode 100644 board/samsung/trats/Makefile
>  create mode 100644 board/samsung/trats/trats.c
>  create mode 100644 board/samsung/trats/trats_setup.h
>  create mode 100644 include/configs/trats.h
>
> diff --git a/board/samsung/trats/trats.c b/board/samsung/trats/trats.c
> new file mode 100644
> index 0000000..9070df5
> --- /dev/null
> +++ b/board/samsung/trats/trats.c
> @@ -0,0 +1,349 @@
> +/*
> + * Copyright (C) 2011 Samsung Electronics
> + * Heungjun Kim <riverful.kim@samsung.com>
> + * Kyungmin Park <kyungmin.park@samsung.com>
> + *
> + * 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., 59 Temple Place, Suite 330, Boston,
> + * MA 02111-1307 USA
> + */
> +
> +#include <common.h>
> +#include <asm/io.h>
> +#include <asm/arch/gpio.h>
> +#include <asm/arch/mmc.h>
> +#include <asm/arch/clock.h>
> +#include <asm/arch/watchdog.h>
> +#include <asm/arch/gpio.h>
> +#include <asm/arch/power.h>
> +#include <pmic.h>
> +#include <usb/s3c_udc.h>
> +#include <asm/arch/cpu.h>
> +#include <max8998_pmic.h>
> +
> +#include "trats_setup.h"
> +
> +DECLARE_GLOBAL_DATA_PTR;
> +
> +unsigned int board_rev;
> +
> +#ifdef CONFIG_REVISION_TAG
> +u32 get_board_rev(void)
> +{
> +       return board_rev;
> +}
> +#endif
> +
> +static void check_hw_revision(void);
> +static void pmic_reset(void);
> +
> +int board_init(void)
> +{
> +       gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
> +
> +       check_hw_revision();
> +       printf("HW Revision:\t0x%x\n", board_rev);
> +
> +#if defined(CONFIG_PMIC)
> +       pmic_init();
> +       pmic_reset();
> +#endif
> +
> +       return 0;
> +}
> +
> +int dram_init(void)
> +{
> +       gd->ram_size = get_ram_size((long *)PHYS_SDRAM_1, PHYS_SDRAM_1_SIZE) +
> +               get_ram_size((long *)PHYS_SDRAM_2, PHYS_SDRAM_2_SIZE);
> +
> +       return 0;
> +}
> +
> +void dram_init_banksize(void)
> +{
> +       gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
> +       gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
> +       gd->bd->bi_dram[1].start = PHYS_SDRAM_2;
> +       gd->bd->bi_dram[1].size = PHYS_SDRAM_2_SIZE;
> +}
> +
> +static unsigned int get_hw_revision(void)
> +{
> +       struct exynos4_gpio_part1 *gpio =
> +               (struct exynos4_gpio_part1 *)samsung_get_base_gpio_part1();
> +       int hwrev = 0;
> +       int i;
> +
> +       /* hw_rev[3:0] == GPE1[3:0] */
> +       for (i = 0; i < 4; i++) {
> +               s5p_gpio_cfg_pin(&gpio->e1, i, GPIO_INPUT);
> +               s5p_gpio_set_pull(&gpio->e1, i, GPIO_PULL_NONE);
> +       }
> +
> +       udelay(1);
> +
> +       for (i = 0; i < 4; i++)
> +               hwrev |= (s5p_gpio_get_value(&gpio->e1, i) << i);
> +
> +       debug("hwrev 0x%x\n", hwrev);
> +
> +       return hwrev;
> +}
> +
> +static void check_hw_revision(void)
> +{
> +       int hwrev;
> +
> +       hwrev = get_hw_revision();
> +
> +       board_rev |= hwrev;
> +}
> +
> +static void pmic_reset(void)
> +{
> +       struct exynos4_gpio_part2 *gpio =
> +               (struct exynos4_gpio_part2 *)samsung_get_base_gpio_part2();
> +
> +       s5p_gpio_set_pull(&gpio->x2, 7, GPIO_PULL_NONE);
> +       s5p_gpio_direction_output(&gpio->x2, 7, 1);
> +}
> +
> +#ifdef CONFIG_DISPLAY_BOARDINFO
> +int checkboard(void)
> +{
> +       puts("Board:\tTRATS\n");
> +       return 0;
> +}
> +#endif
> +
> +#ifdef CONFIG_GENERIC_MMC
> +int board_mmc_init(bd_t *bis)
> +{
> +       struct exynos4_gpio_part2 *gpio =
> +               (struct exynos4_gpio_part2 *)samsung_get_base_gpio_part2();
> +       int i, err;
> +
> +       /* eMMC_EN: SD_0_CDn: GPK0[2] Output High */
> +       s5p_gpio_direction_output(&gpio->k0, 2, 1);
> +       s5p_gpio_set_pull(&gpio->k0, 2, GPIO_PULL_NONE);
> +
> +       /*
> +        * eMMC GPIO:
> +        * SDR 8-bit@48MHz at MMC0
> +        * GPK0[0]      SD_0_CLK(2)
> +        * GPK0[1]      SD_0_CMD(2)
> +        * GPK0[2]      SD_0_CDn        -> Not used
> +        * GPK0[3:6]    SD_0_DATA[0:3](2)
> +        * GPK1[3:6]    SD_0_DATA[0:3](3)
> +        *
> +        * DDR 4-bit@26MHz at MMC4
> +        * GPK0[0]      SD_4_CLK(3)
> +        * GPK0[1]      SD_4_CMD(3)
> +        * GPK0[2]      SD_4_CDn        -> Not used
> +        * GPK0[3:6]    SD_4_DATA[0:3](3)
> +        * GPK1[3:6]    SD_4_DATA[4:7](4)
> +        */
> +       for (i = 0; i < 7; i++) {
> +               if (i == 2)
> +                       continue;
> +               /* GPK0[0:6] special function 2 */
> +               s5p_gpio_cfg_pin(&gpio->k0, i, 0x2);
> +               /* GPK0[0:6] pull disable */
> +               s5p_gpio_set_pull(&gpio->k0, i, GPIO_PULL_NONE);
> +               /* GPK0[0:6] drv 4x */
> +               s5p_gpio_set_drv(&gpio->k0, i, GPIO_DRV_4X);
> +       }
> +
> +       for (i = 3; i < 7; i++) {
> +               /* GPK1[3:6] special function 3 */
> +               s5p_gpio_cfg_pin(&gpio->k1, i, 0x3);
> +               /* GPK1[3:6] pull disable */
> +               s5p_gpio_set_pull(&gpio->k1, i, GPIO_PULL_NONE);
> +               /* GPK1[3:6] drv 4x */
> +               s5p_gpio_set_drv(&gpio->k1, i, GPIO_DRV_4X);
> +       }
> +
> +       /*
> +        * MMC device init
> +        * mmc0  : eMMC (8-bit buswidth)
> +        * mmc2  : SD card (4-bit buswidth)
> +        */
> +       err = s5p_mmc_init(0, 8);
> +
> +       /* T-flash detect */
> +       s5p_gpio_cfg_pin(&gpio->x3, 4, 0xf);
> +       s5p_gpio_set_pull(&gpio->x3, 4, GPIO_PULL_UP);
> +
> +       /*
> +        * Check the T-flash  detect pin
> +        * GPX3[4] T-flash detect pin
> +        */
> +       if (!s5p_gpio_get_value(&gpio->x3, 4)) {
> +               /*
> +                * SD card GPIO:
> +                * GPK2[0]      SD_2_CLK(2)
> +                * GPK2[1]      SD_2_CMD(2)
> +                * GPK2[2]      SD_2_CDn        -> Not used
> +                * GPK2[3:6]    SD_2_DATA[0:3](2)
> +                */
> +               for (i = 0; i < 7; i++) {
> +                       if (i == 2)
> +                               continue;
> +                       /* GPK2[0:6] special function 2 */
> +                       s5p_gpio_cfg_pin(&gpio->k2, i, 0x2);
> +                       /* GPK2[0:6] pull disable */
> +                       s5p_gpio_set_pull(&gpio->k2, i, GPIO_PULL_NONE);
> +                       /* GPK2[0:6] drv 4x */
> +                       s5p_gpio_set_drv(&gpio->k2, i, GPIO_DRV_4X);
> +               }
> +               err = s5p_mmc_init(2, 4);
> +       }
> +
> +       return err;
> +}
> +#endif
> +
> +#ifdef CONFIG_USB_GADGET
> +static int s5pc210_phy_control(int on)
> +{
> +       int ret = 0;
> +       struct pmic *p = get_pmic();
> +
> +       if (pmic_probe(p))
> +               return -1;
> +
> +       if (on) {
> +               ret |= pmic_set_output(p,
> +                                      MAX8998_REG_BUCK_ACTIVE_DISCHARGE3,
> +                                      MAX8998_SAFEOUT1, LDO_ON);
> +               ret |= pmic_set_output(p, MAX8998_REG_ONOFF1,
> +                                     MAX8998_LDO3, LDO_ON);
> +               ret |= pmic_set_output(p, MAX8998_REG_ONOFF2,
> +                                     MAX8998_LDO8, LDO_ON);
> +
> +       } else {
> +               ret |= pmic_set_output(p, MAX8998_REG_ONOFF2,
> +                                     MAX8998_LDO8, LDO_OFF);
> +               ret |= pmic_set_output(p, MAX8998_REG_ONOFF1,
> +                                     MAX8998_LDO3, LDO_OFF);
> +               ret |= pmic_set_output(p,
> +                                      MAX8998_REG_BUCK_ACTIVE_DISCHARGE3,
> +                                      MAX8998_SAFEOUT1, LDO_OFF);
> +       }
> +
> +       if (ret) {
> +               puts("MAX8998 LDO setting error!\n");
> +               return -1;
> +       }
> +
> +       return 0;
> +}
> +
> +struct s3c_plat_otg_data s5pc210_otg_data = {
> +       .phy_control    = s5pc210_phy_control,
> +       .regs_phy       = EXYNOS4_USBPHY_BASE,
> +       .regs_otg       = EXYNOS4_USBOTG_BASE,
> +       .usb_phy_ctrl   = EXYNOS4_USBPHY_CONTROL,
> +       .usb_flags      = PHY0_SLEEP,
> +};
> +#endif
> +
> +static void clock_init(void)
> +{
> +       struct exynos4_clock *clk =
> +               (struct exynos4_clock *)samsung_get_base_clock();
> +
> +       writel(CLK_SRC_CPU_VAL, (unsigned int)&clk->src_cpu);
> +       writel(CLK_SRC_TOP0_VAL, (unsigned int)&clk->src_top0);
> +       writel(CLK_SRC_FSYS_VAL, (unsigned int)&clk->src_fsys);
> +       writel(CLK_SRC_PERIL0_VAL, (unsigned int)&clk->src_peril0);
> +
> +       writel(CLK_DIV_CPU0_VAL, (unsigned int)&clk->div_cpu0);
> +       writel(CLK_DIV_CPU1_VAL, (unsigned int)&clk->div_cpu1);
> +       writel(CLK_DIV_DMC0_VAL, (unsigned int)&clk->div_dmc0);
> +       writel(CLK_DIV_DMC1_VAL, (unsigned int)&clk->div_dmc1);
> +       writel(CLK_DIV_LEFTBUS_VAL, (unsigned int)&clk->div_leftbus);
> +       writel(CLK_DIV_RIGHTBUS_VAL, (unsigned int)&clk->div_rightbus);
> +       writel(CLK_DIV_TOP_VAL, (unsigned int)&clk->div_top);
> +       writel(CLK_DIV_FSYS1_VAL, (unsigned int)&clk->div_fsys1);
> +       writel(CLK_DIV_FSYS2_VAL, (unsigned int)&clk->div_fsys2);
> +       writel(CLK_DIV_FSYS3_VAL, (unsigned int)&clk->div_fsys3);
> +       writel(CLK_DIV_PERIL0_VAL, (unsigned int)&clk->div_peril0);
> +
> +       writel(PLL_LOCKTIME, (unsigned int)&clk->apll_lock);
> +       writel(PLL_LOCKTIME, (unsigned int)&clk->mpll_lock);
> +       writel(PLL_LOCKTIME, (unsigned int)&clk->epll_lock);
> +       writel(PLL_LOCKTIME, (unsigned int)&clk->vpll_lock);
> +       writel(APLL_CON1_VAL, (unsigned int)&clk->apll_con1);
> +       writel(APLL_CON0_VAL, (unsigned int)&clk->apll_con0);
> +       writel(MPLL_CON1_VAL, (unsigned int)&clk->mpll_con1);
> +       writel(MPLL_CON0_VAL, (unsigned int)&clk->mpll_con0);
> +       writel(EPLL_CON1_VAL, (unsigned int)&clk->epll_con1);
> +       writel(EPLL_CON0_VAL, (unsigned int)&clk->epll_con0);
> +       writel(VPLL_CON1_VAL, (unsigned int)&clk->vpll_con1);
> +       writel(VPLL_CON0_VAL, (unsigned int)&clk->vpll_con0);
> +
> +       writel(CLK_GATE_IP_CAM_VAL, (unsigned int)&clk->gate_ip_cam);
> +       writel(CLK_GATE_IP_VP_VAL, (unsigned int)&clk->gate_ip_tv);
> +       writel(CLK_GATE_IP_MFC_VAL, (unsigned int)&clk->gate_ip_mfc);
> +       writel(CLK_GATE_IP_G3D_VAL, (unsigned int)&clk->gate_ip_g3d);
> +       writel(CLK_GATE_IP_IMAGE_VAL, (unsigned int)&clk->gate_ip_image);
> +       writel(CLK_GATE_IP_LCD0_VAL, (unsigned int)&clk->gate_ip_lcd0);
> +       writel(CLK_GATE_IP_LCD1_VAL, (unsigned int)&clk->gate_ip_lcd1);
> +       writel(CLK_GATE_IP_FSYS_VAL, (unsigned int)&clk->gate_ip_fsys);
> +       writel(CLK_GATE_IP_GPS_VAL, (unsigned int)&clk->gate_ip_gps);
> +       writel(CLK_GATE_IP_PERIL_VAL, (unsigned int)&clk->gate_ip_peril);
> +       writel(CLK_GATE_IP_PERIR_VAL, (unsigned int)&clk->gate_ip_perir);
> +       writel(CLK_GATE_BLOCK_VAL, (unsigned int)&clk->gate_block);
> +}
> +
> +static void watchdog_disable(void)
> +{
> +       struct exynos4_watchdog *wd =
> +               (struct exynos4_watchdog *)samsung_get_base_watchdog();
> +
> +       writel(~(WTCON_EN | WTCON_INT), (unsigned int)&wd->wtcon);
> +}
> +
> +static void power_init(void)
> +{
> +       struct exynos4_power *pwr =
> +               (struct exynos4_power *)samsung_get_base_power();
> +
> +       /* PS HOLD */
> +       writel(EXYNOS4_PS_HOLD_CON_VAL, (unsigned int)&pwr->ps_hold_control);
> +
> +       /* Set power down */
> +       writel(0, (unsigned int)&pwr->cam_configuration);
> +       writel(0, (unsigned int)&pwr->tv_configuration);
> +       writel(0, (unsigned int)&pwr->mfc_configuration);
> +       writel(0, (unsigned int)&pwr->g3d_configuration);
> +       writel(0, (unsigned int)&pwr->lcd1_configuration);
> +       writel(0, (unsigned int)&pwr->gps_configuration);
> +       writel(0, (unsigned int)&pwr->gps_alive_configuration);
> +}
> +
> +void lowlevel_init(void)
> +{
> +       s5p_set_cpu_id();               /* For using Exynos's structures */
> +
> +       watchdog_disable();
> +
> +       clock_init();
> +       power_init();
> +}

Why don't you separate the file? (lowlevel_init.c or init.c or setup.c
.... etc..)
If you want to combine these at this file, then please rename the
functions to board_blar. (board_clock_init, board_power_init.. etc)
How you think?

> diff --git a/board/samsung/trats/trats_setup.h b/board/samsung/trats/trats_setup.h
> new file mode 100644
> index 0000000..a1bfe3e
> --- /dev/null
> +++ b/board/samsung/trats/trats_setup.h

How about change this header file's name?
I want to remove board name.
just setup.h or init.h.. etc.

> @@ -0,0 +1,814 @@
> +/*
> + * Machine Specific Values for TRATS board based on EXYNOS4210
> + *
> + * Copyright (C) 2011 Samsung Electronics
> + * Heungjun Kim <riverful.kim@samsung.com>
> + *
> + * 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., 59 Temple Place, Suite 330, Boston,
> + * MA 02111-1307 USA
> + */
> +
> +#ifndef _TRATS_SETUP_H
> +#define _TRATS_SETUP_H
> +
> +#include <config.h>
> +#include <version.h>
> +#include <asm/arch/cpu.h>
> +
> +/* Offsets of clock registers (sources and dividers) */
> +#define CLK_SRC_CPU_OFFSET             0x14200
> +#define CLK_DIV_CPU0_OFFSET            0x14500
> +#define CLK_DIV_CPU1_OFFSET            0x14504
> +
> +#define CLK_DIV_DMC0_OFFSET            0x10500
> +#define CLK_DIV_DMC1_OFFSET            0x10504
> +
> +#define CLK_DIV_LEFTBUS_OFFSET         0x4500
> +#define CLK_DIV_RIGHTBUS_OFFSET                0x8500
> +
> +#define CLK_SRC_TOP0_OFFSET            0xC210
> +#define CLK_DIV_TOP_OFFSET             0xC510
> +
> +#define CLK_SRC_FSYS_OFFSET            0xC240
> +#define CLK_DIV_FSYS1_OFFSET           0xC544
> +#define CLK_DIV_FSYS2_OFFSET           0xC548
> +#define CLK_DIV_FSYS3_OFFSET           0xC54C
> +
> +#define CLK_SRC_PERIL0_OFFSET          0xC250
> +#define CLK_DIV_PERIL0_OFFSET          0xC550
> +
> +#define APLL_LOCK_OFFSET               0x14000
> +#define MPLL_LOCK_OFFSET               0x14008
> +#define APLL_CON0_OFFSET               0x14100
> +#define APLL_CON1_OFFSET               0x14104
> +#define MPLL_CON0_OFFSET               0x14108
> +#define MPLL_CON1_OFFSET               0x1410C
> +
> +#define EPLL_LOCK_OFFSET               0xC010
> +#define VPLL_LOCK_OFFSET               0xC020
> +#define EPLL_CON0_OFFSET               0xC110
> +#define EPLL_CON1_OFFSET               0xC114
> +#define VPLL_CON0_OFFSET               0xC120
> +#define VPLL_CON1_OFFSET               0xC124
> +
> +#define CLK_GATE_IP_CAM_OFFSET         0xC920
> +#define CLK_GATE_IP_VP_OFFSET          0xC924
> +#define CLK_GATE_IP_MFC_OFFSET         0xC928
> +#define CLK_GATE_IP_G3D_OFFSET         0xC92C
> +#define CLK_GATE_IP_IMAGE_OFFSET       0xC930
> +#define CLK_GATE_IP_LCD0_OFFSET                0xC934
> +#define CLK_GATE_IP_LCD1_OFFSET                0xC938
> +#define CLK_GATE_IP_FSYS_OFFSET                0xC940
> +#define CLK_GATE_IP_GPS_OFFSET         0xC94C
> +#define CLK_GATE_IP_PERIL_OFFSET       0xC950
> +#define CLK_GATE_IP_PERIR_OFFSET       0xC960
> +#define CLK_GATE_BLOCK_OFFSET          0xC970
> +
> +#define PS_HOLD_CONTROL_OFFSET         0x330C
> +
> +#define SYSTIMER_G_CON_OFFSET          0x0240
> +
> +#define POWER_CAM_CONFIGURATION_OFFSET 0x1C00
> +#define POWER_TV_CONFIGURATION_OFFSET  0x1C20
> +#define POWER_MFC_CONFIGURATION_OFFSET 0x1C40
> +#define POWER_G3D_CONFIGURATION_OFFSET 0x1C60
> +#define POWER_LCD1_CONFIGURATION_OFFSET        0x1CA0
> +#define POWER_GPS_CONFIGURATION_OFFSET 0x1CE0

At now *_OFFSET is not used.
Please remove unused defines.

> +/* GPIO Offsets for UART: GPIO Contol Register */
> +#define EXYNOS4_GPIO_A0_CON_OFFSET     0x00
> +#define EXYNOS4_GPIO_A1_CON_OFFSET     0x20
> +#define EXYNOS4_GPIO_Y4_CON_OFFSET     0x1A0
> +#define EXYNOS4_GPIO_Y4_DAT_OFFSET     0x1A4
> +#define EXYNOS4_GPIO_Y4_PUD_OFFSET     0x1A8
> +
> +/* GPIO Offsets for PMIC: GPIO Contol & Data Register */
> +#define EXYNOS4_GPIO_X2_CON_OFFSET     0xC40
> +#define EXYNOS4_GPIO_X2_DAT_OFFSET     0xC44
> +
> +/* GPIO Offsets for PS_HOLD: GPIO Control Register */
> +#define EXYNOS4_PS_HOLD_CON_OFFSET     0x330C
> +
> +#define SET_GPIO(_v, _n, _m)           (_v << (_n * _m))
> +#define SET_GPIO_CON(_v, _n)           SET_GPIO(_v, _n, 4)
> +#define SET_GPIO_DAT(_v, _n)           SET_GPIO(_v, _n, 1)
> +#define SET_GPIO_PUD(_v, _n)           SET_GPIO(_v, _n, 1)
> +
> +/* PMIC Reset pin: GPX2[7] (nPOWER) */
> +#define GPIO_BIT_PMIC_RST              7
> +#define EXYNOS4_GPIO_X2_CON_MASK       SET_GPIO_CON(0xf, GPIO_BIT_PMIC_RST)
> +#define EXYNOS4_GPIO_X2_CON_VAL                SET_GPIO_CON(0x1, GPIO_BIT_PMIC_RST)
> +#define EXYNOS4_GPIO_X2_DAT_VAL                SET_GPIO_DAT(0x1, GPIO_BIT_PMIC_RST)
> +
> +/* UART_SEL: GPY4[7] */
> +#define GPIO_BIT_UART_SEL              7
> +#define EXYNOS4_GPIO_Y4_CON_VAL                SET_GPIO_CON(0x1, GPIO_BIT_UART_SEL)
> +#define EXYNOS4_GPIO_Y4_DAT_VAL                SET_GPIO_DAT(0x1, GPIO_BIT_UART_SEL)
> +#define EXYNOS4_GPIO_Y4_PUD_VAL                SET_GPIO_PUD(0xC, GPIO_BIT_UART_SEL)
> +
> +/* PS_HOLD: Data Hight, Output En */
> +#define BIT_DAT                                8
> +#define BIT_EN                         9
> +#define EXYNOS4_PS_HOLD_CON_VAL                (0x1 << BIT_DAT | 0x1 << BIT_EN)
> +
> +/*
> + * UART GPIO_A0/GPIO_A1 Control Register Value
> + * 0x2: UART Function
> + * GPA1CON[3] = I2C_3_SCL (3), GPA1CON[2] = I2C_3_SDA (3)
> + */
> +#define EXYNOS4_GPIO_A0_CON_VAL                0x22222222
> +#define EXYNOS4_GPIO_A1_CON_VAL                0x223322
> +
> +/* UART Register offsets */
> +#define ULCON_OFFSET                   0x00
> +#define UCON_OFFSET                    0x04
> +#define UFCON_OFFSET                   0x08
> +#define UBRDIV_OFFSET                  0x28
> +#define UFRACVAL_OFFSET                        0x2C
> +
> +/* ULCON: UART Line Control Value 8N1 */
> +#define WORD_LEN_5_BIT                 0x00
> +#define WORD_LEN_6_BIT                 0x01
> +#define WORD_LEN_7_BIT                 0x02
> +#define WORD_LEN_8_BIT                 0x03
> +
> +#define STOP_BIT_1                     0x00
> +#define STOP_BIT_2                     0x01
> +
> +#define NO_PARITY                      0x00
> +#define ODD_PARITY                     0x4
> +#define EVEN_PARITY                    0x5
> +#define FORCED_PARITY_CHECK_AS_1       0x6
> +#define FORCED_PARITY_CHECK_AS_0       0x7
> +
> +#define INFRAMODE_NORMAL               0x00
> +#define INFRAMODE_INFRARED             0x01
> +
> +#define ULCON_VAL                      ((INFRAMODE_NORMAL << 6) \
> +                                       | (NO_PARITY << 3) \
> +                                       | (STOP_BIT_1 << 2) \
> +                                       | (WORD_LEN_8_BIT << 0))
> +
> +/*
> + * UCON: UART Control Value
> + * Tx_interrupt Type: Level
> + * Rx_interrupt Type: Level
> + * Rx Timeout Enabled: Yes
> + * Rx-Error Atatus_Int Enable: Yes
> + * Loop_Back: No
> + * Break Signal: No
> + * Transmit mode : Interrupt request/polling
> + * Receive mode : Interrupt request/polling
> + */
> +#define TX_PULSE_INTERRUPT             0
> +#define TX_LEVEL_INTERRUPT             1
> +#define RX_PULSE_INTERRUPT             0
> +#define RX_LEVEL_INTERRUPT             1
> +
> +#define RX_TIME_OUT                    ENABLE
> +#define RX_ERROR_STATE_INT_ENB         ENABLE
> +#define LOOP_BACK                      DISABLE
> +#define BREAK_SIGNAL                   DISABLE
> +
> +#define TX_MODE_DISABLED               0X00
> +#define TX_MODE_IRQ_OR_POLL            0X01
> +#define TX_MODE_DMA                    0X02
> +
> +#define RX_MODE_DISABLED               0X00
> +#define RX_MODE_IRQ_OR_POLL            0X01
> +#define RX_MODE_DMA                    0X02
> +
> +#define UCON_VAL                       ((TX_LEVEL_INTERRUPT << 9) \
> +                                       | (RX_LEVEL_INTERRUPT << 8) \
> +                                       | (RX_TIME_OUT << 7) \
> +                                       | (RX_ERROR_STATE_INT_ENB << 6) \
> +                                       | (LOOP_BACK << 5) \
> +                                       | (BREAK_SIGNAL << 4) \
> +                                       | (TX_MODE_IRQ_OR_POLL << 2) \
> +                                       | (RX_MODE_IRQ_OR_POLL << 0))
> +
> +/*
> + * UFCON: UART FIFO Control Value
> + * Tx FIFO Trigger LEVEL: 2 Bytes (001)
> + * Rx FIFO Trigger LEVEL: 2 Bytes (001)
> + * Tx Fifo Reset: No
> + * Rx Fifo Reset: No
> + * FIFO Enable: Yes
> + */
> +#define TX_FIFO_TRIGGER_LEVEL_0_BYTES  0x00
> +#define TX_FIFO_TRIGGER_LEVEL_2_BYTES  0x1
> +#define TX_FIFO_TRIGGER_LEVEL_4_BYTES  0x2
> +#define TX_FIFO_TRIGGER_LEVEL_6_BYTES  0x3
> +#define TX_FIFO_TRIGGER_LEVEL_8_BYTES  0x4
> +#define TX_FIFO_TRIGGER_LEVEL_10_BYTES 0x5
> +#define TX_FIFO_TRIGGER_LEVEL_12_BYTES 0x6
> +#define TX_FIFO_TRIGGER_LEVEL_14_BYTES 0x7
> +
> +#define RX_FIFO_TRIGGER_LEVEL_2_BYTES  0x0
> +#define RX_FIFO_TRIGGER_LEVEL_4_BYTES  0x1
> +#define RX_FIFO_TRIGGER_LEVEL_6_BYTES  0x2
> +#define RX_FIFO_TRIGGER_LEVEL_8_BYTES  0x3
> +#define RX_FIFO_TRIGGER_LEVEL_10_BYTES 0x4
> +#define RX_FIFO_TRIGGER_LEVEL_12_BYTES 0x5
> +#define RX_FIFO_TRIGGER_LEVEL_14_BYTES 0x6
> +#define RX_FIFO_TRIGGER_LEVEL_16_BYTES 0x7
> +
> +#define TX_FIFO_TRIGGER_LEVEL          TX_FIFO_TRIGGER_LEVEL_2_BYTES
> +#define RX_FIFO_TRIGGER_LEVEL          RX_FIFO_TRIGGER_LEVEL_4_BYTES
> +#define TX_FIFO_RESET                  DISABLE
> +#define RX_FIFO_RESET                  DISABLE
> +#define FIFO_ENABLE                    ENABLE
> +#define UFCON_VAL                      ((TX_FIFO_TRIGGER_LEVEL << 8) \
> +                                       | (RX_FIFO_TRIGGER_LEVEL << 4) \
> +                                       | (TX_FIFO_RESET << 2) \
> +                                       | (RX_FIFO_RESET << 1) \
> +                                       | (FIFO_ENABLE << 0))
> +/*
> + * Baud Rate Division Value
> + * 115200 BAUD:
> + * UBRDIV_VAL = SCLK_UART/((115200 * 16) - 1)
> + * UBRDIV_VAL = (800 MHz)/((115200 * 16) - 1)
> + */
> +#define UBRDIV_VAL             0x35
> +
> +/*
> + * Fractional Part of Baud Rate Divisor:
> + * 115200 BAUD:
> + * UBRFRACVAL = ((((SCLK_UART*10/(115200*16) -10))%10)*16/10)
> + * UBRFRACVAL = ((((800MHz*10/(115200*16) -10))%10)*16/10)
> + */
> +#define UFRACVAL_VAL           0x4

We don't need GPIO and UART defines.
Please remove them.

> +
> +#endif

Thanks.
Minkyu Kang.
HeungJun, Kim Jan. 11, 2012, 4 a.m. UTC | #2
Hi Minkyu Kang,

On 2012년 01월 11일 11:35, Minkyu Kang wrote:
> Dear HeungJun, Kim,
>
> On 10 January 2012 18:00, HeungJun, Kim<riverful.kim@samsung.com>  wrote:
>> This patch adds support for Samsung TRATS board
>>
>> Signed-off-by: HeungJun, Kim<riverful.kim@samsung.com>
>> Signed-off-by: Kyungmin Park<kyungmin.park@samsung.com>
>> ---
>>   MAINTAINERS                       |    4 +
>>   board/samsung/trats/Makefile      |   43 ++
>>   board/samsung/trats/trats.c       |  349 ++++++++++++++++
>>   board/samsung/trats/trats_setup.h |  814 +++++++++++++++++++++++++++++++++++++
>>   boards.cfg                        |    1 +
>>   include/configs/trats.h           |  216 ++++++++++
>>   6 files changed, 1427 insertions(+), 0 deletions(-)
>>   create mode 100644 board/samsung/trats/Makefile
>>   create mode 100644 board/samsung/trats/trats.c
>>   create mode 100644 board/samsung/trats/trats_setup.h
>>   create mode 100644 include/configs/trats.h
>>
>> diff --git a/board/samsung/trats/trats.c b/board/samsung/trats/trats.c
>> new file mode 100644
>> index 0000000..9070df5
>> --- /dev/null
>> +++ b/board/samsung/trats/trats.c
>> @@ -0,0 +1,349 @@
>> +/*
>> + * Copyright (C) 2011 Samsung Electronics
>> + * Heungjun Kim<riverful.kim@samsung.com>
>> + * Kyungmin Park<kyungmin.park@samsung.com>
>> + *
>> + * 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., 59 Temple Place, Suite 330, Boston,
>> + * MA 02111-1307 USA
>> + */
>> +
>> +#include<common.h>
>> +#include<asm/io.h>
>> +#include<asm/arch/gpio.h>
>> +#include<asm/arch/mmc.h>
>> +#include<asm/arch/clock.h>
>> +#include<asm/arch/watchdog.h>
>> +#include<asm/arch/gpio.h>
>> +#include<asm/arch/power.h>
>> +#include<pmic.h>
>> +#include<usb/s3c_udc.h>
>> +#include<asm/arch/cpu.h>
>> +#include<max8998_pmic.h>
>> +
>> +#include "trats_setup.h"
>> +
>> +DECLARE_GLOBAL_DATA_PTR;
>> +
>> +unsigned int board_rev;
>> +
>> +#ifdef CONFIG_REVISION_TAG
>> +u32 get_board_rev(void)
>> +{
>> +       return board_rev;
>> +}
>> +#endif
>> +
>> +static void check_hw_revision(void);
>> +static void pmic_reset(void);
>> +
>> +int board_init(void)
>> +{
>> +       gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
>> +
>> +       check_hw_revision();
>> +       printf("HW Revision:\t0x%x\n", board_rev);
>> +
>> +#if defined(CONFIG_PMIC)
>> +       pmic_init();
>> +       pmic_reset();
>> +#endif
>> +
>> +       return 0;
>> +}
>> +
>> +int dram_init(void)
>> +{
>> +       gd->ram_size = get_ram_size((long *)PHYS_SDRAM_1, PHYS_SDRAM_1_SIZE) +
>> +               get_ram_size((long *)PHYS_SDRAM_2, PHYS_SDRAM_2_SIZE);
>> +
>> +       return 0;
>> +}
>> +
>> +void dram_init_banksize(void)
>> +{
>> +       gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
>> +       gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
>> +       gd->bd->bi_dram[1].start = PHYS_SDRAM_2;
>> +       gd->bd->bi_dram[1].size = PHYS_SDRAM_2_SIZE;
>> +}
>> +
>> +static unsigned int get_hw_revision(void)
>> +{
>> +       struct exynos4_gpio_part1 *gpio =
>> +               (struct exynos4_gpio_part1 *)samsung_get_base_gpio_part1();
>> +       int hwrev = 0;
>> +       int i;
>> +
>> +       /* hw_rev[3:0] == GPE1[3:0] */
>> +       for (i = 0; i<  4; i++) {
>> +               s5p_gpio_cfg_pin(&gpio->e1, i, GPIO_INPUT);
>> +               s5p_gpio_set_pull(&gpio->e1, i, GPIO_PULL_NONE);
>> +       }
>> +
>> +       udelay(1);
>> +
>> +       for (i = 0; i<  4; i++)
>> +               hwrev |= (s5p_gpio_get_value(&gpio->e1, i)<<  i);
>> +
>> +       debug("hwrev 0x%x\n", hwrev);
>> +
>> +       return hwrev;
>> +}
>> +
>> +static void check_hw_revision(void)
>> +{
>> +       int hwrev;
>> +
>> +       hwrev = get_hw_revision();
>> +
>> +       board_rev |= hwrev;
>> +}
>> +
>> +static void pmic_reset(void)
>> +{
>> +       struct exynos4_gpio_part2 *gpio =
>> +               (struct exynos4_gpio_part2 *)samsung_get_base_gpio_part2();
>> +
>> +       s5p_gpio_set_pull(&gpio->x2, 7, GPIO_PULL_NONE);
>> +       s5p_gpio_direction_output(&gpio->x2, 7, 1);
>> +}
>> +
>> +#ifdef CONFIG_DISPLAY_BOARDINFO
>> +int checkboard(void)
>> +{
>> +       puts("Board:\tTRATS\n");
>> +       return 0;
>> +}
>> +#endif
>> +
>> +#ifdef CONFIG_GENERIC_MMC
>> +int board_mmc_init(bd_t *bis)
>> +{
>> +       struct exynos4_gpio_part2 *gpio =
>> +               (struct exynos4_gpio_part2 *)samsung_get_base_gpio_part2();
>> +       int i, err;
>> +
>> +       /* eMMC_EN: SD_0_CDn: GPK0[2] Output High */
>> +       s5p_gpio_direction_output(&gpio->k0, 2, 1);
>> +       s5p_gpio_set_pull(&gpio->k0, 2, GPIO_PULL_NONE);
>> +
>> +       /*
>> +        * eMMC GPIO:
>> +        * SDR 8-bit@48MHz at MMC0
>> +        * GPK0[0]      SD_0_CLK(2)
>> +        * GPK0[1]      SD_0_CMD(2)
>> +        * GPK0[2]      SD_0_CDn        ->  Not used
>> +        * GPK0[3:6]    SD_0_DATA[0:3](2)
>> +        * GPK1[3:6]    SD_0_DATA[0:3](3)
>> +        *
>> +        * DDR 4-bit@26MHz at MMC4
>> +        * GPK0[0]      SD_4_CLK(3)
>> +        * GPK0[1]      SD_4_CMD(3)
>> +        * GPK0[2]      SD_4_CDn        ->  Not used
>> +        * GPK0[3:6]    SD_4_DATA[0:3](3)
>> +        * GPK1[3:6]    SD_4_DATA[4:7](4)
>> +        */
>> +       for (i = 0; i<  7; i++) {
>> +               if (i == 2)
>> +                       continue;
>> +               /* GPK0[0:6] special function 2 */
>> +               s5p_gpio_cfg_pin(&gpio->k0, i, 0x2);
>> +               /* GPK0[0:6] pull disable */
>> +               s5p_gpio_set_pull(&gpio->k0, i, GPIO_PULL_NONE);
>> +               /* GPK0[0:6] drv 4x */
>> +               s5p_gpio_set_drv(&gpio->k0, i, GPIO_DRV_4X);
>> +       }
>> +
>> +       for (i = 3; i<  7; i++) {
>> +               /* GPK1[3:6] special function 3 */
>> +               s5p_gpio_cfg_pin(&gpio->k1, i, 0x3);
>> +               /* GPK1[3:6] pull disable */
>> +               s5p_gpio_set_pull(&gpio->k1, i, GPIO_PULL_NONE);
>> +               /* GPK1[3:6] drv 4x */
>> +               s5p_gpio_set_drv(&gpio->k1, i, GPIO_DRV_4X);
>> +       }
>> +
>> +       /*
>> +        * MMC device init
>> +        * mmc0  : eMMC (8-bit buswidth)
>> +        * mmc2  : SD card (4-bit buswidth)
>> +        */
>> +       err = s5p_mmc_init(0, 8);
>> +
>> +       /* T-flash detect */
>> +       s5p_gpio_cfg_pin(&gpio->x3, 4, 0xf);
>> +       s5p_gpio_set_pull(&gpio->x3, 4, GPIO_PULL_UP);
>> +
>> +       /*
>> +        * Check the T-flash  detect pin
>> +        * GPX3[4] T-flash detect pin
>> +        */
>> +       if (!s5p_gpio_get_value(&gpio->x3, 4)) {
>> +               /*
>> +                * SD card GPIO:
>> +                * GPK2[0]      SD_2_CLK(2)
>> +                * GPK2[1]      SD_2_CMD(2)
>> +                * GPK2[2]      SD_2_CDn        ->  Not used
>> +                * GPK2[3:6]    SD_2_DATA[0:3](2)
>> +                */
>> +               for (i = 0; i<  7; i++) {
>> +                       if (i == 2)
>> +                               continue;
>> +                       /* GPK2[0:6] special function 2 */
>> +                       s5p_gpio_cfg_pin(&gpio->k2, i, 0x2);
>> +                       /* GPK2[0:6] pull disable */
>> +                       s5p_gpio_set_pull(&gpio->k2, i, GPIO_PULL_NONE);
>> +                       /* GPK2[0:6] drv 4x */
>> +                       s5p_gpio_set_drv(&gpio->k2, i, GPIO_DRV_4X);
>> +               }
>> +               err = s5p_mmc_init(2, 4);
>> +       }
>> +
>> +       return err;
>> +}
>> +#endif
>> +
>> +#ifdef CONFIG_USB_GADGET
>> +static int s5pc210_phy_control(int on)
>> +{
>> +       int ret = 0;
>> +       struct pmic *p = get_pmic();
>> +
>> +       if (pmic_probe(p))
>> +               return -1;
>> +
>> +       if (on) {
>> +               ret |= pmic_set_output(p,
>> +                                      MAX8998_REG_BUCK_ACTIVE_DISCHARGE3,
>> +                                      MAX8998_SAFEOUT1, LDO_ON);
>> +               ret |= pmic_set_output(p, MAX8998_REG_ONOFF1,
>> +                                     MAX8998_LDO3, LDO_ON);
>> +               ret |= pmic_set_output(p, MAX8998_REG_ONOFF2,
>> +                                     MAX8998_LDO8, LDO_ON);
>> +
>> +       } else {
>> +               ret |= pmic_set_output(p, MAX8998_REG_ONOFF2,
>> +                                     MAX8998_LDO8, LDO_OFF);
>> +               ret |= pmic_set_output(p, MAX8998_REG_ONOFF1,
>> +                                     MAX8998_LDO3, LDO_OFF);
>> +               ret |= pmic_set_output(p,
>> +                                      MAX8998_REG_BUCK_ACTIVE_DISCHARGE3,
>> +                                      MAX8998_SAFEOUT1, LDO_OFF);
>> +       }
>> +
>> +       if (ret) {
>> +               puts("MAX8998 LDO setting error!\n");
>> +               return -1;
>> +       }
>> +
>> +       return 0;
>> +}
>> +
>> +struct s3c_plat_otg_data s5pc210_otg_data = {
>> +       .phy_control    = s5pc210_phy_control,
>> +       .regs_phy       = EXYNOS4_USBPHY_BASE,
>> +       .regs_otg       = EXYNOS4_USBOTG_BASE,
>> +       .usb_phy_ctrl   = EXYNOS4_USBPHY_CONTROL,
>> +       .usb_flags      = PHY0_SLEEP,
>> +};
>> +#endif
>> +
>> +static void clock_init(void)
>> +{
>> +       struct exynos4_clock *clk =
>> +               (struct exynos4_clock *)samsung_get_base_clock();
>> +
>> +       writel(CLK_SRC_CPU_VAL, (unsigned int)&clk->src_cpu);
>> +       writel(CLK_SRC_TOP0_VAL, (unsigned int)&clk->src_top0);
>> +       writel(CLK_SRC_FSYS_VAL, (unsigned int)&clk->src_fsys);
>> +       writel(CLK_SRC_PERIL0_VAL, (unsigned int)&clk->src_peril0);
>> +
>> +       writel(CLK_DIV_CPU0_VAL, (unsigned int)&clk->div_cpu0);
>> +       writel(CLK_DIV_CPU1_VAL, (unsigned int)&clk->div_cpu1);
>> +       writel(CLK_DIV_DMC0_VAL, (unsigned int)&clk->div_dmc0);
>> +       writel(CLK_DIV_DMC1_VAL, (unsigned int)&clk->div_dmc1);
>> +       writel(CLK_DIV_LEFTBUS_VAL, (unsigned int)&clk->div_leftbus);
>> +       writel(CLK_DIV_RIGHTBUS_VAL, (unsigned int)&clk->div_rightbus);
>> +       writel(CLK_DIV_TOP_VAL, (unsigned int)&clk->div_top);
>> +       writel(CLK_DIV_FSYS1_VAL, (unsigned int)&clk->div_fsys1);
>> +       writel(CLK_DIV_FSYS2_VAL, (unsigned int)&clk->div_fsys2);
>> +       writel(CLK_DIV_FSYS3_VAL, (unsigned int)&clk->div_fsys3);
>> +       writel(CLK_DIV_PERIL0_VAL, (unsigned int)&clk->div_peril0);
>> +
>> +       writel(PLL_LOCKTIME, (unsigned int)&clk->apll_lock);
>> +       writel(PLL_LOCKTIME, (unsigned int)&clk->mpll_lock);
>> +       writel(PLL_LOCKTIME, (unsigned int)&clk->epll_lock);
>> +       writel(PLL_LOCKTIME, (unsigned int)&clk->vpll_lock);
>> +       writel(APLL_CON1_VAL, (unsigned int)&clk->apll_con1);
>> +       writel(APLL_CON0_VAL, (unsigned int)&clk->apll_con0);
>> +       writel(MPLL_CON1_VAL, (unsigned int)&clk->mpll_con1);
>> +       writel(MPLL_CON0_VAL, (unsigned int)&clk->mpll_con0);
>> +       writel(EPLL_CON1_VAL, (unsigned int)&clk->epll_con1);
>> +       writel(EPLL_CON0_VAL, (unsigned int)&clk->epll_con0);
>> +       writel(VPLL_CON1_VAL, (unsigned int)&clk->vpll_con1);
>> +       writel(VPLL_CON0_VAL, (unsigned int)&clk->vpll_con0);
>> +
>> +       writel(CLK_GATE_IP_CAM_VAL, (unsigned int)&clk->gate_ip_cam);
>> +       writel(CLK_GATE_IP_VP_VAL, (unsigned int)&clk->gate_ip_tv);
>> +       writel(CLK_GATE_IP_MFC_VAL, (unsigned int)&clk->gate_ip_mfc);
>> +       writel(CLK_GATE_IP_G3D_VAL, (unsigned int)&clk->gate_ip_g3d);
>> +       writel(CLK_GATE_IP_IMAGE_VAL, (unsigned int)&clk->gate_ip_image);
>> +       writel(CLK_GATE_IP_LCD0_VAL, (unsigned int)&clk->gate_ip_lcd0);
>> +       writel(CLK_GATE_IP_LCD1_VAL, (unsigned int)&clk->gate_ip_lcd1);
>> +       writel(CLK_GATE_IP_FSYS_VAL, (unsigned int)&clk->gate_ip_fsys);
>> +       writel(CLK_GATE_IP_GPS_VAL, (unsigned int)&clk->gate_ip_gps);
>> +       writel(CLK_GATE_IP_PERIL_VAL, (unsigned int)&clk->gate_ip_peril);
>> +       writel(CLK_GATE_IP_PERIR_VAL, (unsigned int)&clk->gate_ip_perir);
>> +       writel(CLK_GATE_BLOCK_VAL, (unsigned int)&clk->gate_block);
>> +}
>> +
>> +static void watchdog_disable(void)
>> +{
>> +       struct exynos4_watchdog *wd =
>> +               (struct exynos4_watchdog *)samsung_get_base_watchdog();
>> +
>> +       writel(~(WTCON_EN | WTCON_INT), (unsigned int)&wd->wtcon);
>> +}
>> +
>> +static void power_init(void)
>> +{
>> +       struct exynos4_power *pwr =
>> +               (struct exynos4_power *)samsung_get_base_power();
>> +
>> +       /* PS HOLD */
>> +       writel(EXYNOS4_PS_HOLD_CON_VAL, (unsigned int)&pwr->ps_hold_control);
>> +
>> +       /* Set power down */
>> +       writel(0, (unsigned int)&pwr->cam_configuration);
>> +       writel(0, (unsigned int)&pwr->tv_configuration);
>> +       writel(0, (unsigned int)&pwr->mfc_configuration);
>> +       writel(0, (unsigned int)&pwr->g3d_configuration);
>> +       writel(0, (unsigned int)&pwr->lcd1_configuration);
>> +       writel(0, (unsigned int)&pwr->gps_configuration);
>> +       writel(0, (unsigned int)&pwr->gps_alive_configuration);
>> +}
>> +
>> +void lowlevel_init(void)
>> +{
>> +       s5p_set_cpu_id();               /* For using Exynos's structures */
>> +
>> +       watchdog_disable();
>> +
>> +       clock_init();
>> +       power_init();
>> +}
>
> Why don't you separate the file? (lowlevel_init.c or init.c or setup.c
> .... etc..)
> If you want to combine these at this file, then please rename the
> functions to board_blar. (board_clock_init, board_power_init.. etc)
> How you think?
Actually, I considered to remain separation. But, I felt it looks more 
good to combine into one file if there is not a big issue. For looking 
around the whole codes of board, we can open just 1 file.

Besides, I agree your opinion naming the function. I think it's 
important to use different prefix in appearance. I'll fix these and 
re-send 3/3 patch.

>
>> diff --git a/board/samsung/trats/trats_setup.h b/board/samsung/trats/trats_setup.h
>> new file mode 100644
>> index 0000000..a1bfe3e
>> --- /dev/null
>> +++ b/board/samsung/trats/trats_setup.h
>
> How about change this header file's name?
> I want to remove board name.
> just setup.h or init.h.. etc.
And, I also agree with this. It might be good to use setup.h.

>
>> @@ -0,0 +1,814 @@
>> +/*
>> + * Machine Specific Values for TRATS board based on EXYNOS4210
>> + *
>> + * Copyright (C) 2011 Samsung Electronics
>> + * Heungjun Kim<riverful.kim@samsung.com>
>> + *
>> + * 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., 59 Temple Place, Suite 330, Boston,
>> + * MA 02111-1307 USA
>> + */
>> +
>> +#ifndef _TRATS_SETUP_H
>> +#define _TRATS_SETUP_H
>> +
>> +#include<config.h>
>> +#include<version.h>
>> +#include<asm/arch/cpu.h>
>> +
>> +/* Offsets of clock registers (sources and dividers) */
>> +#define CLK_SRC_CPU_OFFSET             0x14200
>> +#define CLK_DIV_CPU0_OFFSET            0x14500
>> +#define CLK_DIV_CPU1_OFFSET            0x14504
>> +
>> +#define CLK_DIV_DMC0_OFFSET            0x10500
>> +#define CLK_DIV_DMC1_OFFSET            0x10504
>> +
>> +#define CLK_DIV_LEFTBUS_OFFSET         0x4500
>> +#define CLK_DIV_RIGHTBUS_OFFSET                0x8500
>> +
>> +#define CLK_SRC_TOP0_OFFSET            0xC210
>> +#define CLK_DIV_TOP_OFFSET             0xC510
>> +
>> +#define CLK_SRC_FSYS_OFFSET            0xC240
>> +#define CLK_DIV_FSYS1_OFFSET           0xC544
>> +#define CLK_DIV_FSYS2_OFFSET           0xC548
>> +#define CLK_DIV_FSYS3_OFFSET           0xC54C
>> +
>> +#define CLK_SRC_PERIL0_OFFSET          0xC250
>> +#define CLK_DIV_PERIL0_OFFSET          0xC550
>> +
>> +#define APLL_LOCK_OFFSET               0x14000
>> +#define MPLL_LOCK_OFFSET               0x14008
>> +#define APLL_CON0_OFFSET               0x14100
>> +#define APLL_CON1_OFFSET               0x14104
>> +#define MPLL_CON0_OFFSET               0x14108
>> +#define MPLL_CON1_OFFSET               0x1410C
>> +
>> +#define EPLL_LOCK_OFFSET               0xC010
>> +#define VPLL_LOCK_OFFSET               0xC020
>> +#define EPLL_CON0_OFFSET               0xC110
>> +#define EPLL_CON1_OFFSET               0xC114
>> +#define VPLL_CON0_OFFSET               0xC120
>> +#define VPLL_CON1_OFFSET               0xC124
>> +
>> +#define CLK_GATE_IP_CAM_OFFSET         0xC920
>> +#define CLK_GATE_IP_VP_OFFSET          0xC924
>> +#define CLK_GATE_IP_MFC_OFFSET         0xC928
>> +#define CLK_GATE_IP_G3D_OFFSET         0xC92C
>> +#define CLK_GATE_IP_IMAGE_OFFSET       0xC930
>> +#define CLK_GATE_IP_LCD0_OFFSET                0xC934
>> +#define CLK_GATE_IP_LCD1_OFFSET                0xC938
>> +#define CLK_GATE_IP_FSYS_OFFSET                0xC940
>> +#define CLK_GATE_IP_GPS_OFFSET         0xC94C
>> +#define CLK_GATE_IP_PERIL_OFFSET       0xC950
>> +#define CLK_GATE_IP_PERIR_OFFSET       0xC960
>> +#define CLK_GATE_BLOCK_OFFSET          0xC970
>> +
>> +#define PS_HOLD_CONTROL_OFFSET         0x330C
>> +
>> +#define SYSTIMER_G_CON_OFFSET          0x0240
>> +
>> +#define POWER_CAM_CONFIGURATION_OFFSET 0x1C00
>> +#define POWER_TV_CONFIGURATION_OFFSET  0x1C20
>> +#define POWER_MFC_CONFIGURATION_OFFSET 0x1C40
>> +#define POWER_G3D_CONFIGURATION_OFFSET 0x1C60
>> +#define POWER_LCD1_CONFIGURATION_OFFSET        0x1CA0
>> +#define POWER_GPS_CONFIGURATION_OFFSET 0x1CE0
>
> At now *_OFFSET is not used.
> Please remove unused defines.
You're right. I'll remove it.

>
>> +/* GPIO Offsets for UART: GPIO Contol Register */
>> +#define EXYNOS4_GPIO_A0_CON_OFFSET     0x00
>> +#define EXYNOS4_GPIO_A1_CON_OFFSET     0x20
>> +#define EXYNOS4_GPIO_Y4_CON_OFFSET     0x1A0
>> +#define EXYNOS4_GPIO_Y4_DAT_OFFSET     0x1A4
>> +#define EXYNOS4_GPIO_Y4_PUD_OFFSET     0x1A8
>> +
>> +/* GPIO Offsets for PMIC: GPIO Contol&  Data Register */
>> +#define EXYNOS4_GPIO_X2_CON_OFFSET     0xC40
>> +#define EXYNOS4_GPIO_X2_DAT_OFFSET     0xC44
>> +
>> +/* GPIO Offsets for PS_HOLD: GPIO Control Register */
>> +#define EXYNOS4_PS_HOLD_CON_OFFSET     0x330C
>> +
>> +#define SET_GPIO(_v, _n, _m)           (_v<<  (_n * _m))
>> +#define SET_GPIO_CON(_v, _n)           SET_GPIO(_v, _n, 4)
>> +#define SET_GPIO_DAT(_v, _n)           SET_GPIO(_v, _n, 1)
>> +#define SET_GPIO_PUD(_v, _n)           SET_GPIO(_v, _n, 1)
>> +
>> +/* PMIC Reset pin: GPX2[7] (nPOWER) */
>> +#define GPIO_BIT_PMIC_RST              7
>> +#define EXYNOS4_GPIO_X2_CON_MASK       SET_GPIO_CON(0xf, GPIO_BIT_PMIC_RST)
>> +#define EXYNOS4_GPIO_X2_CON_VAL                SET_GPIO_CON(0x1, GPIO_BIT_PMIC_RST)
>> +#define EXYNOS4_GPIO_X2_DAT_VAL                SET_GPIO_DAT(0x1, GPIO_BIT_PMIC_RST)
>> +
>> +/* UART_SEL: GPY4[7] */
>> +#define GPIO_BIT_UART_SEL              7
>> +#define EXYNOS4_GPIO_Y4_CON_VAL                SET_GPIO_CON(0x1, GPIO_BIT_UART_SEL)
>> +#define EXYNOS4_GPIO_Y4_DAT_VAL                SET_GPIO_DAT(0x1, GPIO_BIT_UART_SEL)
>> +#define EXYNOS4_GPIO_Y4_PUD_VAL                SET_GPIO_PUD(0xC, GPIO_BIT_UART_SEL)
>> +
>> +/* PS_HOLD: Data Hight, Output En */
>> +#define BIT_DAT                                8
>> +#define BIT_EN                         9
>> +#define EXYNOS4_PS_HOLD_CON_VAL                (0x1<<  BIT_DAT | 0x1<<  BIT_EN)
>> +
>> +/*
>> + * UART GPIO_A0/GPIO_A1 Control Register Value
>> + * 0x2: UART Function
>> + * GPA1CON[3] = I2C_3_SCL (3), GPA1CON[2] = I2C_3_SDA (3)
>> + */
>> +#define EXYNOS4_GPIO_A0_CON_VAL                0x22222222
>> +#define EXYNOS4_GPIO_A1_CON_VAL                0x223322
>> +
>> +/* UART Register offsets */
>> +#define ULCON_OFFSET                   0x00
>> +#define UCON_OFFSET                    0x04
>> +#define UFCON_OFFSET                   0x08
>> +#define UBRDIV_OFFSET                  0x28
>> +#define UFRACVAL_OFFSET                        0x2C
>> +
>> +/* ULCON: UART Line Control Value 8N1 */
>> +#define WORD_LEN_5_BIT                 0x00
>> +#define WORD_LEN_6_BIT                 0x01
>> +#define WORD_LEN_7_BIT                 0x02
>> +#define WORD_LEN_8_BIT                 0x03
>> +
>> +#define STOP_BIT_1                     0x00
>> +#define STOP_BIT_2                     0x01
>> +
>> +#define NO_PARITY                      0x00
>> +#define ODD_PARITY                     0x4
>> +#define EVEN_PARITY                    0x5
>> +#define FORCED_PARITY_CHECK_AS_1       0x6
>> +#define FORCED_PARITY_CHECK_AS_0       0x7
>> +
>> +#define INFRAMODE_NORMAL               0x00
>> +#define INFRAMODE_INFRARED             0x01
>> +
>> +#define ULCON_VAL                      ((INFRAMODE_NORMAL<<  6) \
>> +                                       | (NO_PARITY<<  3) \
>> +                                       | (STOP_BIT_1<<  2) \
>> +                                       | (WORD_LEN_8_BIT<<  0))
>> +
>> +/*
>> + * UCON: UART Control Value
>> + * Tx_interrupt Type: Level
>> + * Rx_interrupt Type: Level
>> + * Rx Timeout Enabled: Yes
>> + * Rx-Error Atatus_Int Enable: Yes
>> + * Loop_Back: No
>> + * Break Signal: No
>> + * Transmit mode : Interrupt request/polling
>> + * Receive mode : Interrupt request/polling
>> + */
>> +#define TX_PULSE_INTERRUPT             0
>> +#define TX_LEVEL_INTERRUPT             1
>> +#define RX_PULSE_INTERRUPT             0
>> +#define RX_LEVEL_INTERRUPT             1
>> +
>> +#define RX_TIME_OUT                    ENABLE
>> +#define RX_ERROR_STATE_INT_ENB         ENABLE
>> +#define LOOP_BACK                      DISABLE
>> +#define BREAK_SIGNAL                   DISABLE
>> +
>> +#define TX_MODE_DISABLED               0X00
>> +#define TX_MODE_IRQ_OR_POLL            0X01
>> +#define TX_MODE_DMA                    0X02
>> +
>> +#define RX_MODE_DISABLED               0X00
>> +#define RX_MODE_IRQ_OR_POLL            0X01
>> +#define RX_MODE_DMA                    0X02
>> +
>> +#define UCON_VAL                       ((TX_LEVEL_INTERRUPT<<  9) \
>> +                                       | (RX_LEVEL_INTERRUPT<<  8) \
>> +                                       | (RX_TIME_OUT<<  7) \
>> +                                       | (RX_ERROR_STATE_INT_ENB<<  6) \
>> +                                       | (LOOP_BACK<<  5) \
>> +                                       | (BREAK_SIGNAL<<  4) \
>> +                                       | (TX_MODE_IRQ_OR_POLL<<  2) \
>> +                                       | (RX_MODE_IRQ_OR_POLL<<  0))
>> +
>> +/*
>> + * UFCON: UART FIFO Control Value
>> + * Tx FIFO Trigger LEVEL: 2 Bytes (001)
>> + * Rx FIFO Trigger LEVEL: 2 Bytes (001)
>> + * Tx Fifo Reset: No
>> + * Rx Fifo Reset: No
>> + * FIFO Enable: Yes
>> + */
>> +#define TX_FIFO_TRIGGER_LEVEL_0_BYTES  0x00
>> +#define TX_FIFO_TRIGGER_LEVEL_2_BYTES  0x1
>> +#define TX_FIFO_TRIGGER_LEVEL_4_BYTES  0x2
>> +#define TX_FIFO_TRIGGER_LEVEL_6_BYTES  0x3
>> +#define TX_FIFO_TRIGGER_LEVEL_8_BYTES  0x4
>> +#define TX_FIFO_TRIGGER_LEVEL_10_BYTES 0x5
>> +#define TX_FIFO_TRIGGER_LEVEL_12_BYTES 0x6
>> +#define TX_FIFO_TRIGGER_LEVEL_14_BYTES 0x7
>> +
>> +#define RX_FIFO_TRIGGER_LEVEL_2_BYTES  0x0
>> +#define RX_FIFO_TRIGGER_LEVEL_4_BYTES  0x1
>> +#define RX_FIFO_TRIGGER_LEVEL_6_BYTES  0x2
>> +#define RX_FIFO_TRIGGER_LEVEL_8_BYTES  0x3
>> +#define RX_FIFO_TRIGGER_LEVEL_10_BYTES 0x4
>> +#define RX_FIFO_TRIGGER_LEVEL_12_BYTES 0x5
>> +#define RX_FIFO_TRIGGER_LEVEL_14_BYTES 0x6
>> +#define RX_FIFO_TRIGGER_LEVEL_16_BYTES 0x7
>> +
>> +#define TX_FIFO_TRIGGER_LEVEL          TX_FIFO_TRIGGER_LEVEL_2_BYTES
>> +#define RX_FIFO_TRIGGER_LEVEL          RX_FIFO_TRIGGER_LEVEL_4_BYTES
>> +#define TX_FIFO_RESET                  DISABLE
>> +#define RX_FIFO_RESET                  DISABLE
>> +#define FIFO_ENABLE                    ENABLE
>> +#define UFCON_VAL                      ((TX_FIFO_TRIGGER_LEVEL<<  8) \
>> +                                       | (RX_FIFO_TRIGGER_LEVEL<<  4) \
>> +                                       | (TX_FIFO_RESET<<  2) \
>> +                                       | (RX_FIFO_RESET<<  1) \
>> +                                       | (FIFO_ENABLE<<  0))
>> +/*
>> + * Baud Rate Division Value
>> + * 115200 BAUD:
>> + * UBRDIV_VAL = SCLK_UART/((115200 * 16) - 1)
>> + * UBRDIV_VAL = (800 MHz)/((115200 * 16) - 1)
>> + */
>> +#define UBRDIV_VAL             0x35
>> +
>> +/*
>> + * Fractional Part of Baud Rate Divisor:
>> + * 115200 BAUD:
>> + * UBRFRACVAL = ((((SCLK_UART*10/(115200*16) -10))%10)*16/10)
>> + * UBRFRACVAL = ((((800MHz*10/(115200*16) -10))%10)*16/10)
>> + */
>> +#define UFRACVAL_VAL           0x4
>
> We don't need GPIO and UART defines.
> Please remove them.
Ditto.

Thanks and Regards,
Heungjun Kim

\
>
>> +
>> +#endif
>
> Thanks.
> Minkyu Kang.
Minkyu Kang Jan. 11, 2012, 9:43 a.m. UTC | #3
On 11 January 2012 13:00, Kim, Heungjun <riverful.kim@samsung.com> wrote:
> Hi Minkyu Kang,
>
>
> On 2012년 01월 11일 11:35, Minkyu Kang wrote:
>>
>> Dear HeungJun, Kim,
>>
>> On 10 January 2012 18:00, HeungJun, Kim<riverful.kim@samsung.com>  wrote:
>>>
>>> This patch adds support for Samsung TRATS board
>>>
>>> Signed-off-by: HeungJun, Kim<riverful.kim@samsung.com>
>>> Signed-off-by: Kyungmin Park<kyungmin.park@samsung.com>
>>> ---
>>>  MAINTAINERS                       |    4 +
>>>  board/samsung/trats/Makefile      |   43 ++
>>>  board/samsung/trats/trats.c       |  349 ++++++++++++++++
>>>  board/samsung/trats/trats_setup.h |  814
>>> +++++++++++++++++++++++++++++++++++++
>>>  boards.cfg                        |    1 +
>>>  include/configs/trats.h           |  216 ++++++++++
>>>  6 files changed, 1427 insertions(+), 0 deletions(-)
>>>  create mode 100644 board/samsung/trats/Makefile
>>>  create mode 100644 board/samsung/trats/trats.c
>>>  create mode 100644 board/samsung/trats/trats_setup.h
>>>  create mode 100644 include/configs/trats.h
>>>
>>> diff --git a/board/samsung/trats/trats.c b/board/samsung/trats/trats.c
>>> new file mode 100644
>>> index 0000000..9070df5
>>> --- /dev/null
>>> +++ b/board/samsung/trats/trats.c
>>> +void lowlevel_init(void)
>>> +{
>>> +       s5p_set_cpu_id();               /* For using Exynos's structures
>>> */
>>> +
>>> +       watchdog_disable();
>>> +
>>> +       clock_init();
>>> +       power_init();
>>> +}

One more...
I think.. we need to set GPIOs for UART select.
Please check old lowlevel_init function.

Thanks.
Minkyu Kang.
diff mbox

Patch

diff --git a/MAINTAINERS b/MAINTAINERS
index 4bf12b5..60314a6 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -706,6 +706,10 @@  Chander Kashyap <k.chander@samsung.com>
 	origen			ARM ARMV7 (EXYNOS4210 SoC)
 	SMDKV310		ARM ARMV7 (EXYNOS4210 SoC)
 
+Heungjun Kim <riverful.kim@samsung.com>
+
+	trats			ARM ARMV7 (EXYNOS4210 SoC)
+
 Torsten Koschorrek <koschorrek@synertronixx.de>
 	scb9328		ARM920T (i.MXL)
 
diff --git a/board/samsung/trats/Makefile b/board/samsung/trats/Makefile
new file mode 100644
index 0000000..d21883f
--- /dev/null
+++ b/board/samsung/trats/Makefile
@@ -0,0 +1,43 @@ 
+#
+# Copyright (C) 2011 Samsung Electronics
+# Heungjun Kim <riverful.kim@samsung.com>
+#
+# 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., 59 Temple Place, Suite 330, Boston,
+# MA 02111-1307 USA
+#
+
+include $(TOPDIR)/config.mk
+
+LIB	= $(obj)lib$(BOARD).o
+
+COBJS-y	+= trats.o
+
+SRCS    := $(COBJS-y:.o=.c)
+OBJS	:= $(addprefix $(obj),$(COBJS-y))
+
+$(LIB):	$(obj).depend $(OBJS)
+	$(call cmd_link_o_target, $(OBJS))
+
+#########################################################################
+
+# defines $(obj).depend target
+include $(SRCTREE)/rules.mk
+
+sinclude $(obj).depend
+
+#########################################################################
diff --git a/board/samsung/trats/trats.c b/board/samsung/trats/trats.c
new file mode 100644
index 0000000..9070df5
--- /dev/null
+++ b/board/samsung/trats/trats.c
@@ -0,0 +1,349 @@ 
+/*
+ * Copyright (C) 2011 Samsung Electronics
+ * Heungjun Kim <riverful.kim@samsung.com>
+ * Kyungmin Park <kyungmin.park@samsung.com>
+ *
+ * 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., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ */
+
+#include <common.h>
+#include <asm/io.h>
+#include <asm/arch/gpio.h>
+#include <asm/arch/mmc.h>
+#include <asm/arch/clock.h>
+#include <asm/arch/watchdog.h>
+#include <asm/arch/gpio.h>
+#include <asm/arch/power.h>
+#include <pmic.h>
+#include <usb/s3c_udc.h>
+#include <asm/arch/cpu.h>
+#include <max8998_pmic.h>
+
+#include "trats_setup.h"
+
+DECLARE_GLOBAL_DATA_PTR;
+
+unsigned int board_rev;
+
+#ifdef CONFIG_REVISION_TAG
+u32 get_board_rev(void)
+{
+	return board_rev;
+}
+#endif
+
+static void check_hw_revision(void);
+static void pmic_reset(void);
+
+int board_init(void)
+{
+	gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
+
+	check_hw_revision();
+	printf("HW Revision:\t0x%x\n", board_rev);
+
+#if defined(CONFIG_PMIC)
+	pmic_init();
+	pmic_reset();
+#endif
+
+	return 0;
+}
+
+int dram_init(void)
+{
+	gd->ram_size = get_ram_size((long *)PHYS_SDRAM_1, PHYS_SDRAM_1_SIZE) +
+		get_ram_size((long *)PHYS_SDRAM_2, PHYS_SDRAM_2_SIZE);
+
+	return 0;
+}
+
+void dram_init_banksize(void)
+{
+	gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
+	gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
+	gd->bd->bi_dram[1].start = PHYS_SDRAM_2;
+	gd->bd->bi_dram[1].size = PHYS_SDRAM_2_SIZE;
+}
+
+static unsigned int get_hw_revision(void)
+{
+	struct exynos4_gpio_part1 *gpio =
+		(struct exynos4_gpio_part1 *)samsung_get_base_gpio_part1();
+	int hwrev = 0;
+	int i;
+
+	/* hw_rev[3:0] == GPE1[3:0] */
+	for (i = 0; i < 4; i++) {
+		s5p_gpio_cfg_pin(&gpio->e1, i, GPIO_INPUT);
+		s5p_gpio_set_pull(&gpio->e1, i, GPIO_PULL_NONE);
+	}
+
+	udelay(1);
+
+	for (i = 0; i < 4; i++)
+		hwrev |= (s5p_gpio_get_value(&gpio->e1, i) << i);
+
+	debug("hwrev 0x%x\n", hwrev);
+
+	return hwrev;
+}
+
+static void check_hw_revision(void)
+{
+	int hwrev;
+
+	hwrev = get_hw_revision();
+
+	board_rev |= hwrev;
+}
+
+static void pmic_reset(void)
+{
+	struct exynos4_gpio_part2 *gpio =
+		(struct exynos4_gpio_part2 *)samsung_get_base_gpio_part2();
+
+	s5p_gpio_set_pull(&gpio->x2, 7, GPIO_PULL_NONE);
+	s5p_gpio_direction_output(&gpio->x2, 7, 1);
+}
+
+#ifdef CONFIG_DISPLAY_BOARDINFO
+int checkboard(void)
+{
+	puts("Board:\tTRATS\n");
+	return 0;
+}
+#endif
+
+#ifdef CONFIG_GENERIC_MMC
+int board_mmc_init(bd_t *bis)
+{
+	struct exynos4_gpio_part2 *gpio =
+		(struct exynos4_gpio_part2 *)samsung_get_base_gpio_part2();
+	int i, err;
+
+	/* eMMC_EN: SD_0_CDn: GPK0[2] Output High */
+	s5p_gpio_direction_output(&gpio->k0, 2, 1);
+	s5p_gpio_set_pull(&gpio->k0, 2, GPIO_PULL_NONE);
+
+	/*
+	 * eMMC GPIO:
+	 * SDR 8-bit@48MHz at MMC0
+	 * GPK0[0]	SD_0_CLK(2)
+	 * GPK0[1]	SD_0_CMD(2)
+	 * GPK0[2]	SD_0_CDn	-> Not used
+	 * GPK0[3:6]	SD_0_DATA[0:3](2)
+	 * GPK1[3:6]	SD_0_DATA[0:3](3)
+	 *
+	 * DDR 4-bit@26MHz at MMC4
+	 * GPK0[0]	SD_4_CLK(3)
+	 * GPK0[1]	SD_4_CMD(3)
+	 * GPK0[2]	SD_4_CDn	-> Not used
+	 * GPK0[3:6]	SD_4_DATA[0:3](3)
+	 * GPK1[3:6]	SD_4_DATA[4:7](4)
+	 */
+	for (i = 0; i < 7; i++) {
+		if (i == 2)
+			continue;
+		/* GPK0[0:6] special function 2 */
+		s5p_gpio_cfg_pin(&gpio->k0, i, 0x2);
+		/* GPK0[0:6] pull disable */
+		s5p_gpio_set_pull(&gpio->k0, i, GPIO_PULL_NONE);
+		/* GPK0[0:6] drv 4x */
+		s5p_gpio_set_drv(&gpio->k0, i, GPIO_DRV_4X);
+	}
+
+	for (i = 3; i < 7; i++) {
+		/* GPK1[3:6] special function 3 */
+		s5p_gpio_cfg_pin(&gpio->k1, i, 0x3);
+		/* GPK1[3:6] pull disable */
+		s5p_gpio_set_pull(&gpio->k1, i, GPIO_PULL_NONE);
+		/* GPK1[3:6] drv 4x */
+		s5p_gpio_set_drv(&gpio->k1, i, GPIO_DRV_4X);
+	}
+
+	/*
+	 * MMC device init
+	 * mmc0	 : eMMC (8-bit buswidth)
+	 * mmc2	 : SD card (4-bit buswidth)
+	 */
+	err = s5p_mmc_init(0, 8);
+
+	/* T-flash detect */
+	s5p_gpio_cfg_pin(&gpio->x3, 4, 0xf);
+	s5p_gpio_set_pull(&gpio->x3, 4, GPIO_PULL_UP);
+
+	/*
+	 * Check the T-flash  detect pin
+	 * GPX3[4] T-flash detect pin
+	 */
+	if (!s5p_gpio_get_value(&gpio->x3, 4)) {
+		/*
+		 * SD card GPIO:
+		 * GPK2[0]	SD_2_CLK(2)
+		 * GPK2[1]	SD_2_CMD(2)
+		 * GPK2[2]	SD_2_CDn	-> Not used
+		 * GPK2[3:6]	SD_2_DATA[0:3](2)
+		 */
+		for (i = 0; i < 7; i++) {
+			if (i == 2)
+				continue;
+			/* GPK2[0:6] special function 2 */
+			s5p_gpio_cfg_pin(&gpio->k2, i, 0x2);
+			/* GPK2[0:6] pull disable */
+			s5p_gpio_set_pull(&gpio->k2, i, GPIO_PULL_NONE);
+			/* GPK2[0:6] drv 4x */
+			s5p_gpio_set_drv(&gpio->k2, i, GPIO_DRV_4X);
+		}
+		err = s5p_mmc_init(2, 4);
+	}
+
+	return err;
+}
+#endif
+
+#ifdef CONFIG_USB_GADGET
+static int s5pc210_phy_control(int on)
+{
+	int ret = 0;
+	struct pmic *p = get_pmic();
+
+	if (pmic_probe(p))
+		return -1;
+
+	if (on) {
+		ret |= pmic_set_output(p,
+				       MAX8998_REG_BUCK_ACTIVE_DISCHARGE3,
+				       MAX8998_SAFEOUT1, LDO_ON);
+		ret |= pmic_set_output(p, MAX8998_REG_ONOFF1,
+				      MAX8998_LDO3, LDO_ON);
+		ret |= pmic_set_output(p, MAX8998_REG_ONOFF2,
+				      MAX8998_LDO8, LDO_ON);
+
+	} else {
+		ret |= pmic_set_output(p, MAX8998_REG_ONOFF2,
+				      MAX8998_LDO8, LDO_OFF);
+		ret |= pmic_set_output(p, MAX8998_REG_ONOFF1,
+				      MAX8998_LDO3, LDO_OFF);
+		ret |= pmic_set_output(p,
+				       MAX8998_REG_BUCK_ACTIVE_DISCHARGE3,
+				       MAX8998_SAFEOUT1, LDO_OFF);
+	}
+
+	if (ret) {
+		puts("MAX8998 LDO setting error!\n");
+		return -1;
+	}
+
+	return 0;
+}
+
+struct s3c_plat_otg_data s5pc210_otg_data = {
+	.phy_control	= s5pc210_phy_control,
+	.regs_phy	= EXYNOS4_USBPHY_BASE,
+	.regs_otg	= EXYNOS4_USBOTG_BASE,
+	.usb_phy_ctrl	= EXYNOS4_USBPHY_CONTROL,
+	.usb_flags	= PHY0_SLEEP,
+};
+#endif
+
+static void clock_init(void)
+{
+	struct exynos4_clock *clk =
+		(struct exynos4_clock *)samsung_get_base_clock();
+
+	writel(CLK_SRC_CPU_VAL, (unsigned int)&clk->src_cpu);
+	writel(CLK_SRC_TOP0_VAL, (unsigned int)&clk->src_top0);
+	writel(CLK_SRC_FSYS_VAL, (unsigned int)&clk->src_fsys);
+	writel(CLK_SRC_PERIL0_VAL, (unsigned int)&clk->src_peril0);
+
+	writel(CLK_DIV_CPU0_VAL, (unsigned int)&clk->div_cpu0);
+	writel(CLK_DIV_CPU1_VAL, (unsigned int)&clk->div_cpu1);
+	writel(CLK_DIV_DMC0_VAL, (unsigned int)&clk->div_dmc0);
+	writel(CLK_DIV_DMC1_VAL, (unsigned int)&clk->div_dmc1);
+	writel(CLK_DIV_LEFTBUS_VAL, (unsigned int)&clk->div_leftbus);
+	writel(CLK_DIV_RIGHTBUS_VAL, (unsigned int)&clk->div_rightbus);
+	writel(CLK_DIV_TOP_VAL, (unsigned int)&clk->div_top);
+	writel(CLK_DIV_FSYS1_VAL, (unsigned int)&clk->div_fsys1);
+	writel(CLK_DIV_FSYS2_VAL, (unsigned int)&clk->div_fsys2);
+	writel(CLK_DIV_FSYS3_VAL, (unsigned int)&clk->div_fsys3);
+	writel(CLK_DIV_PERIL0_VAL, (unsigned int)&clk->div_peril0);
+
+	writel(PLL_LOCKTIME, (unsigned int)&clk->apll_lock);
+	writel(PLL_LOCKTIME, (unsigned int)&clk->mpll_lock);
+	writel(PLL_LOCKTIME, (unsigned int)&clk->epll_lock);
+	writel(PLL_LOCKTIME, (unsigned int)&clk->vpll_lock);
+	writel(APLL_CON1_VAL, (unsigned int)&clk->apll_con1);
+	writel(APLL_CON0_VAL, (unsigned int)&clk->apll_con0);
+	writel(MPLL_CON1_VAL, (unsigned int)&clk->mpll_con1);
+	writel(MPLL_CON0_VAL, (unsigned int)&clk->mpll_con0);
+	writel(EPLL_CON1_VAL, (unsigned int)&clk->epll_con1);
+	writel(EPLL_CON0_VAL, (unsigned int)&clk->epll_con0);
+	writel(VPLL_CON1_VAL, (unsigned int)&clk->vpll_con1);
+	writel(VPLL_CON0_VAL, (unsigned int)&clk->vpll_con0);
+
+	writel(CLK_GATE_IP_CAM_VAL, (unsigned int)&clk->gate_ip_cam);
+	writel(CLK_GATE_IP_VP_VAL, (unsigned int)&clk->gate_ip_tv);
+	writel(CLK_GATE_IP_MFC_VAL, (unsigned int)&clk->gate_ip_mfc);
+	writel(CLK_GATE_IP_G3D_VAL, (unsigned int)&clk->gate_ip_g3d);
+	writel(CLK_GATE_IP_IMAGE_VAL, (unsigned int)&clk->gate_ip_image);
+	writel(CLK_GATE_IP_LCD0_VAL, (unsigned int)&clk->gate_ip_lcd0);
+	writel(CLK_GATE_IP_LCD1_VAL, (unsigned int)&clk->gate_ip_lcd1);
+	writel(CLK_GATE_IP_FSYS_VAL, (unsigned int)&clk->gate_ip_fsys);
+	writel(CLK_GATE_IP_GPS_VAL, (unsigned int)&clk->gate_ip_gps);
+	writel(CLK_GATE_IP_PERIL_VAL, (unsigned int)&clk->gate_ip_peril);
+	writel(CLK_GATE_IP_PERIR_VAL, (unsigned int)&clk->gate_ip_perir);
+	writel(CLK_GATE_BLOCK_VAL, (unsigned int)&clk->gate_block);
+}
+
+static void watchdog_disable(void)
+{
+	struct exynos4_watchdog *wd =
+		(struct exynos4_watchdog *)samsung_get_base_watchdog();
+
+	writel(~(WTCON_EN | WTCON_INT), (unsigned int)&wd->wtcon);
+}
+
+static void power_init(void)
+{
+	struct exynos4_power *pwr =
+		(struct exynos4_power *)samsung_get_base_power();
+
+	/* PS HOLD */
+	writel(EXYNOS4_PS_HOLD_CON_VAL, (unsigned int)&pwr->ps_hold_control);
+
+	/* Set power down */
+	writel(0, (unsigned int)&pwr->cam_configuration);
+	writel(0, (unsigned int)&pwr->tv_configuration);
+	writel(0, (unsigned int)&pwr->mfc_configuration);
+	writel(0, (unsigned int)&pwr->g3d_configuration);
+	writel(0, (unsigned int)&pwr->lcd1_configuration);
+	writel(0, (unsigned int)&pwr->gps_configuration);
+	writel(0, (unsigned int)&pwr->gps_alive_configuration);
+}
+
+void lowlevel_init(void)
+{
+	s5p_set_cpu_id();		/* For using Exynos's structures */
+
+	watchdog_disable();
+
+	clock_init();
+	power_init();
+}
diff --git a/board/samsung/trats/trats_setup.h b/board/samsung/trats/trats_setup.h
new file mode 100644
index 0000000..a1bfe3e
--- /dev/null
+++ b/board/samsung/trats/trats_setup.h
@@ -0,0 +1,814 @@ 
+/*
+ * Machine Specific Values for TRATS board based on EXYNOS4210
+ *
+ * Copyright (C) 2011 Samsung Electronics
+ * Heungjun Kim <riverful.kim@samsung.com>
+ *
+ * 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., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ */
+
+#ifndef _TRATS_SETUP_H
+#define _TRATS_SETUP_H
+
+#include <config.h>
+#include <version.h>
+#include <asm/arch/cpu.h>
+
+/* Offsets of clock registers (sources and dividers) */
+#define CLK_SRC_CPU_OFFSET		0x14200
+#define CLK_DIV_CPU0_OFFSET		0x14500
+#define CLK_DIV_CPU1_OFFSET		0x14504
+
+#define CLK_DIV_DMC0_OFFSET		0x10500
+#define CLK_DIV_DMC1_OFFSET		0x10504
+
+#define CLK_DIV_LEFTBUS_OFFSET		0x4500
+#define CLK_DIV_RIGHTBUS_OFFSET		0x8500
+
+#define CLK_SRC_TOP0_OFFSET		0xC210
+#define CLK_DIV_TOP_OFFSET		0xC510
+
+#define CLK_SRC_FSYS_OFFSET		0xC240
+#define CLK_DIV_FSYS1_OFFSET		0xC544
+#define CLK_DIV_FSYS2_OFFSET		0xC548
+#define CLK_DIV_FSYS3_OFFSET		0xC54C
+
+#define CLK_SRC_PERIL0_OFFSET		0xC250
+#define CLK_DIV_PERIL0_OFFSET		0xC550
+
+#define APLL_LOCK_OFFSET		0x14000
+#define MPLL_LOCK_OFFSET		0x14008
+#define APLL_CON0_OFFSET		0x14100
+#define APLL_CON1_OFFSET		0x14104
+#define MPLL_CON0_OFFSET		0x14108
+#define MPLL_CON1_OFFSET		0x1410C
+
+#define EPLL_LOCK_OFFSET		0xC010
+#define VPLL_LOCK_OFFSET		0xC020
+#define EPLL_CON0_OFFSET		0xC110
+#define EPLL_CON1_OFFSET		0xC114
+#define VPLL_CON0_OFFSET		0xC120
+#define VPLL_CON1_OFFSET		0xC124
+
+#define CLK_GATE_IP_CAM_OFFSET		0xC920
+#define CLK_GATE_IP_VP_OFFSET		0xC924
+#define CLK_GATE_IP_MFC_OFFSET		0xC928
+#define CLK_GATE_IP_G3D_OFFSET		0xC92C
+#define CLK_GATE_IP_IMAGE_OFFSET	0xC930
+#define CLK_GATE_IP_LCD0_OFFSET		0xC934
+#define CLK_GATE_IP_LCD1_OFFSET		0xC938
+#define CLK_GATE_IP_FSYS_OFFSET		0xC940
+#define CLK_GATE_IP_GPS_OFFSET		0xC94C
+#define CLK_GATE_IP_PERIL_OFFSET	0xC950
+#define CLK_GATE_IP_PERIR_OFFSET	0xC960
+#define CLK_GATE_BLOCK_OFFSET		0xC970
+
+#define PS_HOLD_CONTROL_OFFSET		0x330C
+
+#define SYSTIMER_G_CON_OFFSET		0x0240
+
+#define POWER_CAM_CONFIGURATION_OFFSET	0x1C00
+#define POWER_TV_CONFIGURATION_OFFSET	0x1C20
+#define POWER_MFC_CONFIGURATION_OFFSET	0x1C40
+#define POWER_G3D_CONFIGURATION_OFFSET	0x1C60
+#define POWER_LCD1_CONFIGURATION_OFFSET	0x1CA0
+#define POWER_GPS_CONFIGURATION_OFFSET	0x1CE0
+
+/* CLK_SRC_CPU: APLL(1), MPLL(1), CORE(0), HPM(0) */
+#define MUX_HPM_SEL_MOUTAPLL		0x0
+#define MUX_HPM_SEL_SCLKMPLL		0x1
+#define MUX_CORE_SEL_MOUTAPLL		0x0
+#define MUX_CORE_SEL_SCLKMPLL		0x1
+#define MUX_MPLL_SEL_FILPLL		0x0
+#define MUX_MPLL_SEL_MOUTMPLLFOUT	0x1
+#define MUX_APLL_SEL_FILPLL		0x0
+#define MUX_APLL_SEL_MOUTMPLLFOUT	0x1
+#define CLK_SRC_CPU_VAL			((MUX_HPM_SEL_MOUTAPLL << 20) \
+					| (MUX_CORE_SEL_MOUTAPLL << 16) \
+					| (MUX_MPLL_SEL_MOUTMPLLFOUT << 8)\
+					| (MUX_APLL_SEL_MOUTMPLLFOUT << 0))
+
+/* CLK_DIV_CPU0 */
+#define APLL_RATIO			0x0
+#define PCLK_DBG_RATIO			0x1
+#define ATB_RATIO			0x3
+#define PERIPH_RATIO			0x3
+#define COREM1_RATIO			0x7
+#define COREM0_RATIO			0x3
+#define CORE_RATIO			0x0
+#define CLK_DIV_CPU0_VAL		((APLL_RATIO << 24) \
+					| (PCLK_DBG_RATIO << 20) \
+					| (ATB_RATIO << 16) \
+					| (PERIPH_RATIO << 12) \
+					| (COREM1_RATIO << 8) \
+					| (COREM0_RATIO << 4) \
+					| (CORE_RATIO << 0))
+
+/* CLK_DIV_CPU1 */
+#define HPM_RATIO			0x0
+#define COPY_RATIO			0x3
+#define CLK_DIV_CPU1_VAL		((HPM_RATIO << 4) | (COPY_RATIO))
+
+/* CLK_DIV_DMC0 */
+#define CORE_TIMERS_RATIO		0x1
+#define COPY2_RATIO			0x3
+#define DMCP_RATIO			0x1
+#define DMCD_RATIO			0x1
+#define DMC_RATIO			0x1
+#define DPHY_RATIO			0x1
+#define ACP_PCLK_RATIO			0x1
+#define ACP_RATIO			0x3
+#define CLK_DIV_DMC0_VAL		((CORE_TIMERS_RATIO << 28) \
+					| (COPY2_RATIO << 24) \
+					| (DMCP_RATIO << 20) \
+					| (DMCD_RATIO << 16) \
+					| (DMC_RATIO << 12) \
+					| (DPHY_RATIO << 8) \
+					| (ACP_PCLK_RATIO << 4)	\
+					| (ACP_RATIO << 0))
+
+/* CLK_DIV_DMC1 */
+#define DPM_RATIO			0x1
+#define DVSEM_RATIO			0x1
+#define PWI_RATIO			0x1
+#define CLK_DIV_DMC1_VAL		((DPM_RATIO << 24) \
+					| (DVSEM_RATIO << 16) \
+					| (PWI_RATIO << 8))
+
+/* CLK_SRC_TOP0 */
+#define MUX_ONENAND_SEL_ACLK_133	0x0
+#define MUX_ONENAND_SEL_ACLK_160	0x1
+#define MUX_ACLK_133_SEL_SCLKMPLL	0x0
+#define MUX_ACLK_133_SEL_SCLKAPLL	0x1
+#define MUX_ACLK_160_SEL_SCLKMPLL	0x0
+#define MUX_ACLK_160_SEL_SCLKAPLL	0x1
+#define MUX_ACLK_100_SEL_SCLKMPLL	0x0
+#define MUX_ACLK_100_SEL_SCLKAPLL	0x1
+#define MUX_ACLK_200_SEL_SCLKMPLL	0x0
+#define MUX_ACLK_200_SEL_SCLKAPLL	0x1
+#define MUX_VPLL_SEL_FINPLL		0x0
+#define MUX_VPLL_SEL_FOUTVPLL		0x1
+#define MUX_EPLL_SEL_FINPLL		0x0
+#define MUX_EPLL_SEL_FOUTEPLL		0x1
+#define MUX_ONENAND_1_SEL_MOUTONENAND	0x0
+#define MUX_ONENAND_1_SEL_SCLKVPLL	0x1
+#define CLK_SRC_TOP0_VAL		((MUX_ONENAND_SEL_ACLK_160 << 28) \
+					| (MUX_ACLK_133_SEL_SCLKMPLL << 24) \
+					| (MUX_ACLK_160_SEL_SCLKMPLL << 20) \
+					| (MUX_ACLK_100_SEL_SCLKMPLL << 16) \
+					| (MUX_ACLK_200_SEL_SCLKMPLL << 12) \
+					| (MUX_VPLL_SEL_FOUTVPLL << 8) \
+					| (MUX_EPLL_SEL_FOUTEPLL << 4) \
+					| (MUX_ONENAND_1_SEL_MOUTONENAND << 0))
+
+/* CLK_DIV_TOP */
+#define ONENAND_RATIO			0x0
+#define ACLK_133_RATIO			0x5
+#define ACLK_160_RATIO			0x4
+#define ACLK_100_RATIO			0x7
+#define ACLK_200_RATIO			0x3
+#define CLK_DIV_TOP_VAL			((ONENAND_RATIO << 16)	\
+					| (ACLK_133_RATIO << 12)\
+					| (ACLK_160_RATIO << 8)	\
+					| (ACLK_100_RATIO << 4)	\
+					| (ACLK_200_RATIO << 0))
+
+/* CLK_DIV_LEFTBUS */
+#define GPL_RATIO			0x1
+#define GDL_RATIO			0x3
+#define CLK_DIV_LEFTBUS_VAL		((GPL_RATIO << 4) | (GDL_RATIO))
+
+/* CLK_DIV_RIGHTBUS */
+#define GPR_RATIO			0x1
+#define GDR_RATIO			0x3
+#define CLK_DIV_RIGHTBUS_VAL		((GPR_RATIO << 4) | (GDR_RATIO))
+
+/* CLK_SRS_FSYS: 6 = SCLKMPLL */
+#define SATA_SEL_SCLKMPLL		0
+#define SATA_SEL_SCLKAPLL		1
+
+#define MMC_SEL_XXTI			0
+#define MMC_SEL_XUSBXTI			1
+#define MMC_SEL_SCLK_HDMI24M		2
+#define MMC_SEL_SCLK_USBPHY0		3
+#define MMC_SEL_SCLK_USBPHY1		4
+#define MMC_SEL_SCLK_HDMIPHY		5
+#define MMC_SEL_SCLKMPLL		6
+#define MMC_SEL_SCLKEPLL		7
+#define MMC_SEL_SCLKVPLL		8
+
+#define MMCC0_SEL			MMC_SEL_SCLKMPLL
+#define MMCC1_SEL			MMC_SEL_SCLKMPLL
+#define MMCC2_SEL			MMC_SEL_SCLKMPLL
+#define MMCC3_SEL			MMC_SEL_SCLKMPLL
+#define MMCC4_SEL			MMC_SEL_SCLKMPLL
+#define CLK_SRC_FSYS_VAL		((SATA_SEL_SCLKMPLL << 24) \
+					| (MMCC4_SEL << 16) \
+					| (MMCC3_SEL << 12) \
+					| (MMCC2_SEL << 8) \
+					| (MMCC1_SEL << 4) \
+					| (MMCC0_SEL << 0))
+
+/* SCLK_MMC[0-4] = MOUTMMC[0-4]/(MMC[0-4]_RATIO + 1)/(MMC[0-4]_PRE_RATIO +1) */
+/* CLK_DIV_FSYS1: 800(MPLL) / (15 + 1) */
+#define MMC0_RATIO			0xF
+#define MMC0_PRE_RATIO			0x0
+#define MMC1_RATIO			0xF
+#define MMC1_PRE_RATIO			0x0
+#define CLK_DIV_FSYS1_VAL		((MMC1_PRE_RATIO << 24) \
+					| (MMC1_RATIO << 16) \
+					| (MMC0_PRE_RATIO << 8) \
+					| (MMC0_RATIO << 0))
+
+/* CLK_DIV_FSYS2: 800(MPLL) / (15 + 1) */
+#define MMC2_RATIO			0xF
+#define MMC2_PRE_RATIO			0x0
+#define MMC3_RATIO			0xF
+#define MMC3_PRE_RATIO			0x0
+#define CLK_DIV_FSYS2_VAL		((MMC3_PRE_RATIO << 24) \
+					| (MMC3_RATIO << 16) \
+					| (MMC2_PRE_RATIO << 8) \
+					| (MMC2_RATIO << 0))
+
+/* CLK_DIV_FSYS3: 800(MPLL) / (15 + 1) */
+#define MMC4_RATIO			0xF
+#define MMC4_PRE_RATIO			0x0
+#define CLK_DIV_FSYS3_VAL		((MMC4_PRE_RATIO << 8) \
+					| (MMC4_RATIO << 0))
+
+/* CLK_SRC_PERIL0 */
+#define UART_SEL_XXTI			0
+#define UART_SEL_XUSBXTI		1
+#define UART_SEL_SCLK_HDMI24M		2
+#define UART_SEL_SCLK_USBPHY0		3
+#define UART_SEL_SCLK_USBPHY1		4
+#define UART_SEL_SCLK_HDMIPHY		5
+#define UART_SEL_SCLKMPLL		6
+#define UART_SEL_SCLKEPLL		7
+#define UART_SEL_SCLKVPLL		8
+
+#define UART0_SEL			UART_SEL_SCLKMPLL
+#define UART1_SEL			UART_SEL_SCLKMPLL
+#define UART2_SEL			UART_SEL_SCLKMPLL
+#define UART3_SEL			UART_SEL_SCLKMPLL
+#define UART4_SEL			UART_SEL_SCLKMPLL
+#define UART5_SEL			UART_SEL_SCLKMPLL
+#define CLK_SRC_PERIL0_VAL		((UART5_SEL << 16) \
+					| (UART4_SEL << 12) \
+					| (UART3_SEL << 12) \
+					| (UART2_SEL << 8) \
+					| (UART1_SEL << 4) \
+					| (UART0_SEL << 0))
+
+/* SCLK_UART[0-4] = MOUTUART[0-4]/(UART[0-4]_RATIO + 1) */
+/* CLK_DIV_PERIL0 */
+#define UART0_RATIO			7
+#define UART1_RATIO			7
+#define UART2_RATIO			7
+#define UART3_RATIO			4
+#define UART4_RATIO			7
+#define UART5_RATIO			7
+#define CLK_DIV_PERIL0_VAL		((UART5_RATIO << 16) \
+					| (UART4_RATIO << 12) \
+					| (UART3_RATIO << 12) \
+					| (UART2_RATIO << 8) \
+					| (UART1_RATIO << 4) \
+					| (UART0_RATIO << 0))
+
+/* Required period to generate a stable clock output */
+/* PLL_LOCK_TIME */
+#define PLL_LOCKTIME			0x1C20
+
+/* PLL Values */
+#define DISABLE				0
+#define ENABLE				1
+#define SET_PLL(mdiv, pdiv, sdiv)	((ENABLE << 31)\
+					| (mdiv << 16) \
+					| (pdiv << 8) \
+					| (sdiv << 0))
+
+/* APLL_CON0: 800MHz */
+#define APLL_MDIV			0xC8
+#define APLL_PDIV			0x6
+#define APLL_SDIV			0x1
+#define APLL_CON0_VAL			SET_PLL(APLL_MDIV, APLL_PDIV, APLL_SDIV)
+
+/* APLL_CON1 */
+#define APLL_AFC_ENB			0x1
+#define APLL_AFC			0x1C
+#define APLL_CON1_VAL			((APLL_AFC_ENB << 31) | (APLL_AFC << 0))
+
+/* MPLL_CON0: 800MHz */
+#define MPLL_MDIV			0xC8
+#define MPLL_PDIV			0x6
+#define MPLL_SDIV			0x1
+#define MPLL_CON0_VAL			SET_PLL(MPLL_MDIV, MPLL_PDIV, MPLL_SDIV)
+
+/* MPLL_CON1 */
+#define MPLL_AFC_ENB			0x1
+#define MPLL_AFC			0x1C
+#define MPLL_CON1_VAL			((MPLL_AFC_ENB << 31) | (MPLL_AFC << 0))
+
+/* EPLL_CON0: 96MHz */
+#define EPLL_MDIV			0x30
+#define EPLL_PDIV			0x3
+#define EPLL_SDIV			0x2
+#define EPLL_CON0_VAL			SET_PLL(EPLL_MDIV, EPLL_PDIV, EPLL_SDIV)
+
+/* EPLL_CON1 */
+#define EPLL_K				0x0
+#define EPLL_CON1_VAL			(EPLL_K >> 0)
+
+/* VPLL_CON0: 108MHz */
+#define VPLL_MDIV			0x35
+#define VPLL_PDIV			0x3
+#define VPLL_SDIV			0x2
+#define VPLL_CON0_VAL			SET_PLL(VPLL_MDIV, VPLL_PDIV, VPLL_SDIV)
+
+/* VPLL_CON1 */
+#define VPLL_SSCG_EN			DISABLE
+#define VPLL_SEL_PF_DN_SPREAD		0x0
+#define VPLL_MRR			0x11
+#define VPLL_MFR			0x0
+#define VPLL_K				0x400
+#define VPLL_CON1_VAL			((VPLL_SSCG_EN << 31)\
+					| (VPLL_SEL_PF_DN_SPREAD << 29) \
+					| (VPLL_MRR << 24) \
+					| (VPLL_MFR << 16) \
+					| (VPLL_K << 0))
+
+/*
+ * CLOCK GATE
+ *
+ * GATE CAM	: All block
+ * GATE VP	: All block
+ * GATE MFC	: All block
+ * GATE G3D	: All block
+ * GATE IMAGE	: All block
+ * GATE LCD0	: All block
+ * GATE LCD1	: All block
+ * GATE FSYS	: Enable - PDMA0,1, SDMMC0,2, USBHOST, USBDEVICE, PPMUFILE
+ * GATE GPS	: All block
+ * GATE PERI Left	: All Enable, Block - SLIMBUS, SPDIF, AC97
+ * GATE PERI Right	: All Enable, Block - KEYIF
+ * GATE Block	: All block
+ */
+#define CLK_EN				0x0
+#define CLK_DIS				0x1
+
+#define BIT_CAM_CLK_PIXELASYNCM1	18
+#define BIT_CAM_CLK_PIXELASYNCM0	17
+#define BIT_CAM_CLK_PPMUCAMIF		16
+#define BIT_CAM_CLK_QEFIMC3		15
+#define BIT_CAM_CLK_QEFIMC2		14
+#define BIT_CAM_CLK_QEFIMC1		13
+#define BIT_CAM_CLK_QEFIMC0		12
+#define BIT_CAM_CLK_SMMUJPEG		11
+#define BIT_CAM_CLK_SMMUFIMC3		10
+#define BIT_CAM_CLK_SMMUFIMC2		9
+#define BIT_CAM_CLK_SMMUFIMC1		8
+#define BIT_CAM_CLK_SMMUFIMC0		7
+#define BIT_CAM_CLK_JPEG		6
+#define BIT_CAM_CLK_CSIS1		5
+#define BIT_CAM_CLK_CSIS0		4
+#define BIT_CAM_CLK_FIMC3		3
+#define BIT_CAM_CLK_FIMC2		2
+#define BIT_CAM_CLK_FIMC1		1
+#define BIT_CAM_CLK_FIMC0		0
+#define CLK_GATE_IP_CAM_VAL		~((CLK_DIS << BIT_CAM_CLK_PIXELASYNCM1)\
+					| (CLK_DIS << BIT_CAM_CLK_PIXELASYNCM0)\
+					| (CLK_DIS << BIT_CAM_CLK_PPMUCAMIF)\
+					| (CLK_DIS << BIT_CAM_CLK_QEFIMC3)\
+					| (CLK_DIS << BIT_CAM_CLK_QEFIMC2)\
+					| (CLK_DIS << BIT_CAM_CLK_QEFIMC1)\
+					| (CLK_DIS << BIT_CAM_CLK_QEFIMC0)\
+					| (CLK_DIS << BIT_CAM_CLK_SMMUJPEG)\
+					| (CLK_DIS << BIT_CAM_CLK_SMMUFIMC3)\
+					| (CLK_DIS << BIT_CAM_CLK_SMMUFIMC2)\
+					| (CLK_DIS << BIT_CAM_CLK_SMMUFIMC1)\
+					| (CLK_DIS << BIT_CAM_CLK_SMMUFIMC0)\
+					| (CLK_DIS << BIT_CAM_CLK_JPEG)\
+					| (CLK_DIS << BIT_CAM_CLK_CSIS1)\
+					| (CLK_DIS << BIT_CAM_CLK_CSIS0)\
+					| (CLK_DIS << BIT_CAM_CLK_FIMC3)\
+					| (CLK_DIS << BIT_CAM_CLK_FIMC2)\
+					| (CLK_DIS << BIT_CAM_CLK_FIMC1)\
+					| (CLK_DIS << BIT_CAM_CLK_FIMC0))
+
+#define BIT_VP_CLK_PPMUTV		5
+#define BIT_VP_CLK_SMMUTV		4
+#define BIT_VP_CLK_HDMI			3
+#define BIT_VP_CLK_TVENC		2
+#define BIT_VP_CLK_MIXER		1
+#define BIT_VP_CLK_VP			0
+#define CLK_GATE_IP_VP_VAL		~((CLK_DIS << BIT_VP_CLK_PPMUTV)\
+					| (CLK_DIS << BIT_VP_CLK_SMMUTV)\
+					| (CLK_DIS << BIT_VP_CLK_HDMI)\
+					| (CLK_DIS << BIT_VP_CLK_TVENC)\
+					| (CLK_DIS << BIT_VP_CLK_MIXER)\
+					| (CLK_DIS << BIT_VP_CLK_VP))
+
+#define BIT_MFC_CLK_PPMUMFC_R		4
+#define BIT_MFC_CLK_PPMUMFC_L		3
+#define BIT_MFC_CLK_SMMUMFC_R		2
+#define BIT_MFC_CLK_SMMUMFC_L		1
+#define BIT_MFC_CLK_MFC			0
+#define CLK_GATE_IP_MFC_VAL		~((CLK_DIS << BIT_MFC_CLK_PPMUMFC_R)\
+					| (CLK_DIS << BIT_MFC_CLK_PPMUMFC_L)\
+					| (CLK_DIS << BIT_MFC_CLK_SMMUMFC_R)\
+					| (CLK_DIS << BIT_MFC_CLK_SMMUMFC_L)\
+					| (CLK_DIS << BIT_MFC_CLK_MFC))
+
+#define BIT_G3D_CLK_QEG3D		2
+#define BIT_G3D_CLK_PPMUG3D		1
+#define BIT_G3D_CLK_G3D			0
+#define CLK_GATE_IP_G3D_VAL		~((CLK_DIS << BIT_G3D_CLK_QEG3D)\
+					| (CLK_DIS << BIT_G3D_CLK_PPMUG3D)\
+					| (CLK_DIS << BIT_G3D_CLK_G3D))
+
+#define BIT_IMAGE_CLK_PPMUIMAGE		9
+#define BIT_IMAGE_CLK_QEMDMA		8
+#define BIT_IMAGE_CLK_QEROTATOR		7
+#define BIT_IMAGE_CLK_QEG2D		6
+#define BIT_IMAGE_CLK_SMMUMDMA		5
+#define BIT_IMAGE_CLK_SMMUROTATOR	4
+#define BIT_IMAGE_CLK_SMMUG2D		3
+#define BIT_IMAGE_CLK_MDMA		2
+#define BIT_IMAGE_CLK_ROTATOR		1
+#define BIT_IMAGE_CLK_G2D		0
+#define CLK_GATE_IP_IMAGE_VAL		~((CLK_DIS << BIT_IMAGE_CLK_PPMUIMAGE)\
+					| (CLK_DIS << BIT_IMAGE_CLK_QEMDMA)\
+					| (CLK_DIS << BIT_IMAGE_CLK_QEROTATOR)\
+					| (CLK_DIS << BIT_IMAGE_CLK_QEG2D)\
+					| (CLK_DIS << BIT_IMAGE_CLK_SMMUMDMA)\
+					| (CLK_DIS << BIT_IMAGE_CLK_SMMUROTATOR)\
+					| (CLK_DIS << BIT_IMAGE_CLK_SMMUG2D)\
+					| (CLK_DIS << BIT_IMAGE_CLK_MDMA)\
+					| (CLK_DIS << BIT_IMAGE_CLK_ROTATOR)\
+					| (CLK_DIS << BIT_IMAGE_CLK_G2D))
+
+#define BIT_LCD0_CLK_PPMULCD0		5
+#define BIT_LCD0_CLK_SMMUFIMD0		4
+#define BIT_LCD0_CLK_DSIM0		3
+#define BIT_LCD0_CLK_MDNIE0		2
+#define BIT_LCD0_CLK_MIE0		1
+#define BIT_LCD0_CLK_FIMD0		0
+#define CLK_GATE_IP_LCD0_VAL		~((CLK_DIS << BIT_LCD0_CLK_PPMULCD0)\
+					| (CLK_DIS << BIT_LCD0_CLK_SMMUFIMD0)\
+					| (CLK_DIS << BIT_LCD0_CLK_DSIM0)\
+					| (CLK_DIS << BIT_LCD0_CLK_MDNIE0)\
+					| (CLK_DIS << BIT_LCD0_CLK_MIE0)\
+					| (CLK_DIS << BIT_LCD0_CLK_FIMD0))
+
+#define BIT_LCD1_CLK_PPMULCD1		5
+#define BIT_LCD1_CLK_SMMUFIMD1		4
+#define BIT_LCD1_CLK_DSIM1		3
+#define BIT_LCD1_CLK_MDNIE1		2
+#define BIT_LCD1_CLK_MIE1		1
+#define BIT_LCD1_CLK_FIMD1		0
+#define CLK_GATE_IP_LCD1_VAL		~((CLK_DIS << BIT_LCD1_CLK_PPMULCD1)\
+					| (CLK_DIS << BIT_LCD1_CLK_SMMUFIMD1)\
+					| (CLK_DIS << BIT_LCD1_CLK_DSIM1)\
+					| (CLK_DIS << BIT_LCD1_CLK_MDNIE1)\
+					| (CLK_DIS << BIT_LCD1_CLK_MIE1)\
+					| (CLK_DIS << BIT_LCD1_CLK_FIMD1))
+
+#define BIT_FSYS_CLK_SMMUPCIE		18
+#define BIT_FSYS_CLK_PPMUFILE		17
+#define BIT_FSYS_CLK_NFCON		16
+#define BIT_FSYS_CLK_ONENAND		15
+#define BIT_FSYS_CLK_PCIE		14
+#define BIT_FSYS_CLK_USBDEVICE		13
+#define BIT_FSYS_CLK_USBHOST		12
+#define BIT_FSYS_CLK_SROMC		11
+#define BIT_FSYS_CLK_SATA		10
+#define BIT_FSYS_CLK_SDMMC4		9
+#define BIT_FSYS_CLK_SDMMC3		8
+#define BIT_FSYS_CLK_SDMMC2		7
+#define BIT_FSYS_CLK_SDMMC1		6
+#define BIT_FSYS_CLK_SDMMC0		5
+#define BIT_FSYS_CLK_TSI		4
+#define BIT_FSYS_CLK_SATAPHY		3
+#define BIT_FSYS_CLK_PCIEPHY		2
+#define BIT_FSYS_CLK_PDMA1		1
+#define BIT_FSYS_CLK_PDMA0		0
+#define CLK_GATE_IP_FSYS_VAL		~((CLK_DIS << BIT_FSYS_CLK_SMMUPCIE)\
+					| (CLK_EN << BIT_FSYS_CLK_PPMUFILE)\
+					| (CLK_DIS << BIT_FSYS_CLK_NFCON)\
+					| (CLK_DIS << BIT_FSYS_CLK_ONENAND)\
+					| (CLK_DIS << BIT_FSYS_CLK_PCIE)\
+					| (CLK_EN << BIT_FSYS_CLK_USBDEVICE)\
+					| (CLK_EN << BIT_FSYS_CLK_USBHOST)\
+					| (CLK_DIS << BIT_FSYS_CLK_SROMC)\
+					| (CLK_DIS << BIT_FSYS_CLK_SATA)\
+					| (CLK_DIS << BIT_FSYS_CLK_SDMMC4)\
+					| (CLK_DIS << BIT_FSYS_CLK_SDMMC3)\
+					| (CLK_EN << BIT_FSYS_CLK_SDMMC2)\
+					| (CLK_DIS << BIT_FSYS_CLK_SDMMC1)\
+					| (CLK_EN << BIT_FSYS_CLK_SDMMC0)\
+					| (CLK_DIS << BIT_FSYS_CLK_TSI)\
+					| (CLK_DIS << BIT_FSYS_CLK_SATAPHY)\
+					| (CLK_DIS << BIT_FSYS_CLK_PCIEPHY)\
+					| (CLK_EN << BIT_FSYS_CLK_PDMA1)\
+					| (CLK_EN << BIT_FSYS_CLK_PDMA0))
+
+#define BIT_GPS_CLK_SMMUGPS		1
+#define BIT_GPS_CLK_GPS			0
+#define CLK_GATE_IP_GPS_VAL		~((CLK_DIS < BIT_GPS_CLK_SMMUGPS)\
+					| (CLK_DIS << BIT_GPS_CLK_GPS))
+
+#define BIT_PERIL_CLK_MODEMIF		28
+#define BIT_PERIL_CLK_AC97		27
+#define BIT_PERIL_CLK_SPDIF		26
+#define BIT_PERIL_CLK_SLIMBUS		25
+#define BIT_PERIL_CLK_PWM		24
+#define BIT_PERIL_CLK_PCM2		23
+#define BIT_PERIL_CLK_PCM1		22
+#define BIT_PERIL_CLK_I2S2		21
+#define BIT_PERIL_CLK_I2S1		20
+#define BIT_PERIL_CLK_RESERVED0		19
+#define BIT_PERIL_CLK_SPI2		18
+#define BIT_PERIL_CLK_SPI1		17
+#define BIT_PERIL_CLK_SPI0		16
+#define BIT_PERIL_CLK_TSADC		15
+#define BIT_PERIL_CLK_I2CHDMI		14
+#define BIT_PERIL_CLK_I2C7		13
+#define BIT_PERIL_CLK_I2C6		12
+#define BIT_PERIL_CLK_I2C5		11
+#define BIT_PERIL_CLK_I2C4		10
+#define BIT_PERIL_CLK_I2C3		9
+#define BIT_PERIL_CLK_I2C2		8
+#define BIT_PERIL_CLK_I2C1		7
+#define BIT_PERIL_CLK_I2C0		6
+#define BIT_PERIL_CLK_RESERVED1		5
+#define BIT_PERIL_CLK_UART4		4
+#define BIT_PERIL_CLK_UART3		3
+#define BIT_PERIL_CLK_UART2		2
+#define BIT_PERIL_CLK_UART1		1
+#define BIT_PERIL_CLK_UART0		0
+#define CLK_GATE_IP_PERIL_VAL		~((CLK_EN << BIT_PERIL_CLK_MODEMIF)\
+					| (CLK_DIS << BIT_PERIL_CLK_AC97)\
+					| (CLK_DIS << BIT_PERIL_CLK_SPDIF)\
+					| (CLK_DIS << BIT_PERIL_CLK_SLIMBUS)\
+					| (CLK_EN << BIT_PERIL_CLK_PWM)\
+					| (CLK_EN << BIT_PERIL_CLK_PCM2)\
+					| (CLK_EN << BIT_PERIL_CLK_PCM1)\
+					| (CLK_EN << BIT_PERIL_CLK_I2S2)\
+					| (CLK_EN << BIT_PERIL_CLK_I2S1)\
+					| (CLK_EN << BIT_PERIL_CLK_RESERVED0)\
+					| (CLK_EN << BIT_PERIL_CLK_SPI2)\
+					| (CLK_EN << BIT_PERIL_CLK_SPI1)\
+					| (CLK_EN << BIT_PERIL_CLK_SPI0)\
+					| (CLK_EN << BIT_PERIL_CLK_TSADC)\
+					| (CLK_EN << BIT_PERIL_CLK_I2CHDMI)\
+					| (CLK_EN << BIT_PERIL_CLK_I2C7)\
+					| (CLK_EN << BIT_PERIL_CLK_I2C6)\
+					| (CLK_EN << BIT_PERIL_CLK_I2C5)\
+					| (CLK_EN << BIT_PERIL_CLK_I2C4)\
+					| (CLK_EN << BIT_PERIL_CLK_I2C3)\
+					| (CLK_EN << BIT_PERIL_CLK_I2C2)\
+					| (CLK_EN << BIT_PERIL_CLK_I2C1)\
+					| (CLK_EN << BIT_PERIL_CLK_I2C0)\
+					| (CLK_EN << BIT_PERIL_CLK_RESERVED1)\
+					| (CLK_EN << BIT_PERIL_CLK_UART4)\
+					| (CLK_EN << BIT_PERIL_CLK_UART3)\
+					| (CLK_EN << BIT_PERIL_CLK_UART2)\
+					| (CLK_EN << BIT_PERIL_CLK_UART1)\
+					| (CLK_EN << BIT_PERIL_CLK_UART0))
+
+
+#define BIT_PERIR_CLK_TMU_APBIF		17
+#define BIT_PERIR_CLK_KEYIF		16
+#define BIT_PERIR_CLK_RTC		15
+#define BIT_PERIR_CLK_WDT		14
+#define BIT_PERIR_CLK_MCT		13
+#define BIT_PERIR_CLK_SECKEY		12
+#define BIT_PERIR_CLK_HDMI_CEC		11
+#define BIT_PERIR_CLK_TZPC5		10
+#define BIT_PERIR_CLK_TZPC4		9
+#define BIT_PERIR_CLK_TZPC3		8
+#define BIT_PERIR_CLK_TZPC2		7
+#define BIT_PERIR_CLK_TZPC1		6
+#define BIT_PERIR_CLK_TZPC0		5
+#define BIT_PERIR_CLK_CMU_DMCPART	4
+#define BIT_PERIR_CLK_RESERVED		3
+#define BIT_PERIR_CLK_CMU_APBIF		2
+#define BIT_PERIR_CLK_SYSREG		1
+#define BIT_PERIR_CLK_CHIP_ID		0
+#define CLK_GATE_IP_PERIR_VAL		~((CLK_EN << BIT_PERIR_CLK_TMU_APBIF)\
+					| (CLK_DIS << BIT_PERIR_CLK_KEYIF)\
+					| (CLK_EN << BIT_PERIR_CLK_RTC)\
+					| (CLK_EN << BIT_PERIR_CLK_WDT)\
+					| (CLK_EN << BIT_PERIR_CLK_MCT)\
+					| (CLK_EN << BIT_PERIR_CLK_SECKEY)\
+					| (CLK_EN << BIT_PERIR_CLK_HDMI_CEC)\
+					| (CLK_EN << BIT_PERIR_CLK_TZPC5)\
+					| (CLK_EN << BIT_PERIR_CLK_TZPC4)\
+					| (CLK_EN << BIT_PERIR_CLK_TZPC3)\
+					| (CLK_EN << BIT_PERIR_CLK_TZPC2)\
+					| (CLK_EN << BIT_PERIR_CLK_TZPC1)\
+					| (CLK_EN << BIT_PERIR_CLK_TZPC0)\
+					| (CLK_EN << BIT_PERIR_CLK_CMU_DMCPART)\
+					| (CLK_EN << BIT_PERIR_CLK_RESERVED)\
+					| (CLK_EN << BIT_PERIR_CLK_CMU_APBIF)\
+					| (CLK_EN << BIT_PERIR_CLK_SYSREG)\
+					| (CLK_EN << BIT_PERIR_CLK_CHIP_ID))
+
+#define BIT_BLOCK_CLK_GPS		7
+#define BIT_BLOCK_CLK_RESERVED		6
+#define BIT_BLOCK_CLK_LCD1		5
+#define BIT_BLOCK_CLK_LCD0		4
+#define BIT_BLOCK_CLK_G3D		3
+#define BIT_BLOCK_CLK_MFC		2
+#define BIT_BLOCK_CLK_TV		1
+#define BIT_BLOCK_CLK_CAM		0
+#define CLK_GATE_BLOCK_VAL		~((CLK_DIS << BIT_BLOCK_CLK_GPS)\
+					| (CLK_DIS << BIT_BLOCK_CLK_RESERVED)\
+					| (CLK_DIS << BIT_BLOCK_CLK_LCD1)\
+					| (CLK_DIS << BIT_BLOCK_CLK_LCD0)\
+					| (CLK_DIS << BIT_BLOCK_CLK_G3D)\
+					| (CLK_DIS << BIT_BLOCK_CLK_MFC)\
+					| (CLK_DIS << BIT_BLOCK_CLK_TV)\
+					| (CLK_DIS << BIT_BLOCK_CLK_CAM))
+
+/* GPIO Offsets for UART: GPIO Contol Register */
+#define EXYNOS4_GPIO_A0_CON_OFFSET	0x00
+#define EXYNOS4_GPIO_A1_CON_OFFSET	0x20
+#define EXYNOS4_GPIO_Y4_CON_OFFSET	0x1A0
+#define EXYNOS4_GPIO_Y4_DAT_OFFSET	0x1A4
+#define EXYNOS4_GPIO_Y4_PUD_OFFSET	0x1A8
+
+/* GPIO Offsets for PMIC: GPIO Contol & Data Register */
+#define EXYNOS4_GPIO_X2_CON_OFFSET	0xC40
+#define EXYNOS4_GPIO_X2_DAT_OFFSET	0xC44
+
+/* GPIO Offsets for PS_HOLD: GPIO Control Register */
+#define EXYNOS4_PS_HOLD_CON_OFFSET	0x330C
+
+#define SET_GPIO(_v, _n, _m)		(_v << (_n * _m))
+#define SET_GPIO_CON(_v, _n)		SET_GPIO(_v, _n, 4)
+#define SET_GPIO_DAT(_v, _n)		SET_GPIO(_v, _n, 1)
+#define SET_GPIO_PUD(_v, _n)		SET_GPIO(_v, _n, 1)
+
+/* PMIC Reset pin: GPX2[7] (nPOWER) */
+#define GPIO_BIT_PMIC_RST		7
+#define EXYNOS4_GPIO_X2_CON_MASK	SET_GPIO_CON(0xf, GPIO_BIT_PMIC_RST)
+#define EXYNOS4_GPIO_X2_CON_VAL		SET_GPIO_CON(0x1, GPIO_BIT_PMIC_RST)
+#define EXYNOS4_GPIO_X2_DAT_VAL		SET_GPIO_DAT(0x1, GPIO_BIT_PMIC_RST)
+
+/* UART_SEL: GPY4[7] */
+#define GPIO_BIT_UART_SEL		7
+#define EXYNOS4_GPIO_Y4_CON_VAL		SET_GPIO_CON(0x1, GPIO_BIT_UART_SEL)
+#define EXYNOS4_GPIO_Y4_DAT_VAL		SET_GPIO_DAT(0x1, GPIO_BIT_UART_SEL)
+#define EXYNOS4_GPIO_Y4_PUD_VAL		SET_GPIO_PUD(0xC, GPIO_BIT_UART_SEL)
+
+/* PS_HOLD: Data Hight, Output En */
+#define BIT_DAT				8
+#define BIT_EN				9
+#define EXYNOS4_PS_HOLD_CON_VAL		(0x1 << BIT_DAT | 0x1 << BIT_EN)
+
+/*
+ * UART GPIO_A0/GPIO_A1 Control Register Value
+ * 0x2: UART Function
+ * GPA1CON[3] = I2C_3_SCL (3), GPA1CON[2] = I2C_3_SDA (3)
+ */
+#define EXYNOS4_GPIO_A0_CON_VAL		0x22222222
+#define EXYNOS4_GPIO_A1_CON_VAL		0x223322
+
+/* UART Register offsets */
+#define ULCON_OFFSET			0x00
+#define UCON_OFFSET			0x04
+#define UFCON_OFFSET			0x08
+#define UBRDIV_OFFSET			0x28
+#define UFRACVAL_OFFSET			0x2C
+
+/* ULCON: UART Line Control Value 8N1 */
+#define WORD_LEN_5_BIT			0x00
+#define WORD_LEN_6_BIT			0x01
+#define WORD_LEN_7_BIT			0x02
+#define WORD_LEN_8_BIT			0x03
+
+#define STOP_BIT_1			0x00
+#define STOP_BIT_2			0x01
+
+#define NO_PARITY			0x00
+#define ODD_PARITY			0x4
+#define EVEN_PARITY			0x5
+#define FORCED_PARITY_CHECK_AS_1	0x6
+#define FORCED_PARITY_CHECK_AS_0	0x7
+
+#define INFRAMODE_NORMAL		0x00
+#define INFRAMODE_INFRARED		0x01
+
+#define ULCON_VAL			((INFRAMODE_NORMAL << 6) \
+					| (NO_PARITY << 3) \
+					| (STOP_BIT_1 << 2) \
+					| (WORD_LEN_8_BIT << 0))
+
+/*
+ * UCON: UART Control Value
+ * Tx_interrupt Type: Level
+ * Rx_interrupt Type: Level
+ * Rx Timeout Enabled: Yes
+ * Rx-Error Atatus_Int Enable: Yes
+ * Loop_Back: No
+ * Break Signal: No
+ * Transmit mode : Interrupt request/polling
+ * Receive mode : Interrupt request/polling
+ */
+#define TX_PULSE_INTERRUPT		0
+#define TX_LEVEL_INTERRUPT		1
+#define RX_PULSE_INTERRUPT		0
+#define RX_LEVEL_INTERRUPT		1
+
+#define RX_TIME_OUT			ENABLE
+#define RX_ERROR_STATE_INT_ENB		ENABLE
+#define LOOP_BACK			DISABLE
+#define BREAK_SIGNAL			DISABLE
+
+#define TX_MODE_DISABLED		0X00
+#define TX_MODE_IRQ_OR_POLL		0X01
+#define TX_MODE_DMA			0X02
+
+#define RX_MODE_DISABLED		0X00
+#define RX_MODE_IRQ_OR_POLL		0X01
+#define RX_MODE_DMA			0X02
+
+#define UCON_VAL			((TX_LEVEL_INTERRUPT << 9) \
+					| (RX_LEVEL_INTERRUPT << 8) \
+					| (RX_TIME_OUT << 7) \
+					| (RX_ERROR_STATE_INT_ENB << 6) \
+					| (LOOP_BACK << 5) \
+					| (BREAK_SIGNAL << 4) \
+					| (TX_MODE_IRQ_OR_POLL << 2) \
+					| (RX_MODE_IRQ_OR_POLL << 0))
+
+/*
+ * UFCON: UART FIFO Control Value
+ * Tx FIFO Trigger LEVEL: 2 Bytes (001)
+ * Rx FIFO Trigger LEVEL: 2 Bytes (001)
+ * Tx Fifo Reset: No
+ * Rx Fifo Reset: No
+ * FIFO Enable: Yes
+ */
+#define TX_FIFO_TRIGGER_LEVEL_0_BYTES	0x00
+#define TX_FIFO_TRIGGER_LEVEL_2_BYTES	0x1
+#define TX_FIFO_TRIGGER_LEVEL_4_BYTES	0x2
+#define TX_FIFO_TRIGGER_LEVEL_6_BYTES	0x3
+#define TX_FIFO_TRIGGER_LEVEL_8_BYTES	0x4
+#define TX_FIFO_TRIGGER_LEVEL_10_BYTES	0x5
+#define TX_FIFO_TRIGGER_LEVEL_12_BYTES	0x6
+#define TX_FIFO_TRIGGER_LEVEL_14_BYTES	0x7
+
+#define RX_FIFO_TRIGGER_LEVEL_2_BYTES	0x0
+#define RX_FIFO_TRIGGER_LEVEL_4_BYTES	0x1
+#define RX_FIFO_TRIGGER_LEVEL_6_BYTES	0x2
+#define RX_FIFO_TRIGGER_LEVEL_8_BYTES	0x3
+#define RX_FIFO_TRIGGER_LEVEL_10_BYTES	0x4
+#define RX_FIFO_TRIGGER_LEVEL_12_BYTES	0x5
+#define RX_FIFO_TRIGGER_LEVEL_14_BYTES	0x6
+#define RX_FIFO_TRIGGER_LEVEL_16_BYTES	0x7
+
+#define TX_FIFO_TRIGGER_LEVEL		TX_FIFO_TRIGGER_LEVEL_2_BYTES
+#define RX_FIFO_TRIGGER_LEVEL		RX_FIFO_TRIGGER_LEVEL_4_BYTES
+#define TX_FIFO_RESET			DISABLE
+#define RX_FIFO_RESET			DISABLE
+#define FIFO_ENABLE			ENABLE
+#define UFCON_VAL			((TX_FIFO_TRIGGER_LEVEL << 8) \
+					| (RX_FIFO_TRIGGER_LEVEL << 4) \
+					| (TX_FIFO_RESET << 2) \
+					| (RX_FIFO_RESET << 1) \
+					| (FIFO_ENABLE << 0))
+/*
+ * Baud Rate Division Value
+ * 115200 BAUD:
+ * UBRDIV_VAL = SCLK_UART/((115200 * 16) - 1)
+ * UBRDIV_VAL = (800 MHz)/((115200 * 16) - 1)
+ */
+#define UBRDIV_VAL		0x35
+
+/*
+ * Fractional Part of Baud Rate Divisor:
+ * 115200 BAUD:
+ * UBRFRACVAL = ((((SCLK_UART*10/(115200*16) -10))%10)*16/10)
+ * UBRFRACVAL = ((((800MHz*10/(115200*16) -10))%10)*16/10)
+ */
+#define UFRACVAL_VAL		0x4
+
+#endif
diff --git a/boards.cfg b/boards.cfg
index 0b32532..eb83b3e 100644
--- a/boards.cfg
+++ b/boards.cfg
@@ -219,6 +219,7 @@  smdkc100                     arm         armv7       smdkc100            samsung
 origen			     arm	 armv7	     origen		 samsung	exynos
 s5pc210_universal            arm         armv7       universal_c210      samsung        exynos
 smdkv310		     arm	 armv7	     smdkv310		 samsung	exynos
+trats                        arm         armv7       trats               samsung        exynos
 harmony                      arm         armv7       harmony             nvidia         tegra2
 seaboard                     arm         armv7       seaboard            nvidia         tegra2
 ventana                      arm         armv7       ventana             nvidia         tegra2
diff --git a/include/configs/trats.h b/include/configs/trats.h
new file mode 100644
index 0000000..d235745
--- /dev/null
+++ b/include/configs/trats.h
@@ -0,0 +1,216 @@ 
+/*
+ * Copyright (C) 2011 Samsung Electronics
+ * Heungjun Kim <riverful.kim@samsung.com>
+ *
+ * Configuation settings for the SAMSUNG TRATS (EXYNOS4210) board.
+ *
+ * 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., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ */
+
+#ifndef __CONFIG_H
+#define __CONFIG_H
+
+/*
+ * High Level Configuration Options
+ * (easy to change)
+ */
+#define CONFIG_SAMSUNG		/* in a SAMSUNG core */
+#define CONFIG_S5P		/* which is in a S5P Family */
+#define CONFIG_EXYNOS4210	/* which is in a EXYNOS4210 */
+#define CONFIG_TRATS		/* working with TRATS */
+
+#include <asm/arch/cpu.h>	/* get chip and board defs */
+
+#define CONFIG_ARCH_CPU_INIT
+#define CONFIG_DISPLAY_CPUINFO
+#define CONFIG_DISPLAY_BOARDINFO
+
+/* Keep L2 Cache Disabled */
+#define CONFIG_SYS_L2CACHE_OFF
+
+#define CONFIG_SYS_SDRAM_BASE		0x40000000
+#define CONFIG_SYS_TEXT_BASE		0x63300000
+
+/* input clock of PLL: TRATS has 24MHz input clock at EXYNOS4210 */
+#define CONFIG_SYS_CLK_FREQ_C210	24000000
+
+#define CONFIG_SETUP_MEMORY_TAGS
+#define CONFIG_CMDLINE_TAG
+#define CONFIG_INITRD_TAG
+#define CONFIG_REVISION_TAG
+#define CONFIG_CMDLINE_EDITING
+
+/* MACH_TYPE_TRATS macro will be removed once added to mach-types */
+#define MACH_TYPE_TRATS			3928
+#define CONFIG_MACH_TYPE		MACH_TYPE_TRATS
+
+/* Size of malloc() pool */
+#define CONFIG_SYS_MALLOC_LEN		(CONFIG_ENV_SIZE + (1 << 20))
+
+/* select serial console configuration */
+#define CONFIG_SERIAL_MULTI
+#define CONFIG_SERIAL2			/* use SERIAL 2 */
+#define CONFIG_BAUDRATE			115200
+#define EXYNOS4_DEFAULT_UART_OFFSET	0x020000
+
+/* MMC */
+#define CONFIG_GENERIC_MMC
+#define CONFIG_MMC
+#define CONFIG_S5P_MMC
+
+/* PWM */
+#define CONFIG_PWM
+
+/* It should define before config_cmd_default.h */
+#define CONFIG_SYS_NO_FLASH
+
+/* Command definition */
+#include <config_cmd_default.h>
+
+#undef CONFIG_CMD_FPGA
+#undef CONFIG_CMD_MISC
+#undef CONFIG_CMD_NET
+#undef CONFIG_CMD_NFS
+#undef CONFIG_CMD_XIMG
+#define CONFIG_CMD_CACHE
+#define CONFIG_CMD_MMC
+
+#define CONFIG_BOOTDELAY		1
+#define CONFIG_ZERO_BOOTDELAY_CHECK
+
+#define CONFIG_BOOTARGS			"Please use defined boot"
+#define CONFIG_BOOTCOMMAND		"run mmcboot"
+#define CONFIG_DEFAULT_CONSOLE		"console=ttySAC2,115200n8\0"
+
+#define CONFIG_BOOTBLOCK		"10"
+
+#define CONFIG_ENV_COMMON_BOOT		"${console} ${meminfo}"
+
+#define CONFIG_ENV_OVERWRITE
+#define CONFIG_SYS_CONSOLE_INFO_QUIET
+#define CONFIG_SYS_CONSOLE_IS_IN_ENV
+
+#define CONFIG_EXTRA_ENV_SETTINGS \
+	"bootk=" \
+		"run loaduimage; bootm 0x40007FC0\0" \
+	"updatemmc=" \
+		"mmc boot 0 1 1 1; mmc write 0 0x42008000 0 0x200;" \
+		"mmc boot 0 1 1 0\0" \
+	"updatebackup=" \
+		"mmc boot 0 1 1 2; mmc write 0 0x42100000 0 0x200;" \
+		"mmc boot 0 1 1 0\0" \
+	"updatebootb=" \
+		"mmc read 0 0x42100000 0x80 0x200; run updatebackup\0" \
+	"lpj=lpj=3981312\0" \
+	"nfsboot=" \
+		"set bootargs root=/dev/nfs rw " \
+		"nfsroot=${nfsroot},nolock,tcp " \
+		"ip=${ipaddr}:${serverip}:${gatewayip}:" \
+		"${netmask}:generic:usb0:off " CONFIG_ENV_COMMON_BOOT \
+		"; run bootk\0" \
+	"ramfsboot=" \
+		"set bootargs root=/dev/ram0 rw rootfstype=ext2 " \
+		"${console} ${meminfo} " \
+		"initrd=0x43000000,8M ramdisk=8192\0" \
+	"mmcboot=" \
+		"set bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \
+		"${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo}; " \
+		"run loaduimage; bootm 0x40007FC0\0" \
+	"bootchart=set opts init=/sbin/bootchartd; run bootcmd\0" \
+	"boottrace=setenv opts initcall_debug; run bootcmd\0" \
+	"mmcoops=mmc read 0 0x40000000 0x40 8; md 0x40000000 0x400\0" \
+	"verify=n\0" \
+	"rootfstype=ext4\0" \
+	"console=" CONFIG_DEFAULT_CONSOLE \
+	"meminfo=crashkernel=32M@0x50000000\0" \
+	"nfsroot=/nfsroot/arm\0" \
+	"bootblock=" CONFIG_BOOTBLOCK "\0" \
+	"mmcdev=0\0" \
+	"mmcbootpart=2\0" \
+	"mmcrootpart=3\0" \
+	"opts=always_resume=1"
+
+/* Miscellaneous configurable options */
+#define CONFIG_SYS_LONGHELP		/* undef to save memory */
+#define CONFIG_SYS_HUSH_PARSER		/* use "hush" command parser */
+#define CONFIG_SYS_PROMPT_HUSH_PS2	"> "
+#define CONFIG_SYS_PROMPT		"TRATS # "
+#define CONFIG_SYS_CBSIZE		256	/* Console I/O Buffer Size */
+#define CONFIG_SYS_PBSIZE		384	/* Print Buffer Size */
+#define CONFIG_SYS_MAXARGS		16	/* max number of command args */
+/* Boot Argument Buffer Size */
+#define CONFIG_SYS_BARGSIZE		CONFIG_SYS_CBSIZE
+/* memtest works on */
+#define CONFIG_SYS_MEMTEST_START	CONFIG_SYS_SDRAM_BASE
+#define CONFIG_SYS_MEMTEST_END		(CONFIG_SYS_SDRAM_BASE + 0x5000000)
+#define CONFIG_SYS_LOAD_ADDR		(CONFIG_SYS_SDRAM_BASE + 0x4800000)
+
+#define CONFIG_SYS_HZ			1000
+
+/* valid baudrates */
+#define CONFIG_SYS_BAUDRATE_TABLE	{ 9600, 19200, 38400, 57600, 115200 }
+
+/* Stack sizes */
+#define CONFIG_STACKSIZE		(256 << 10) /* regular stack 256KB */
+
+/* TRATS has 2 banks of DRAM */
+#define CONFIG_NR_DRAM_BANKS	2
+#define PHYS_SDRAM_1		CONFIG_SYS_SDRAM_BASE	/* LDDDR2 DMC 0 */
+#define PHYS_SDRAM_1_SIZE	(256 << 20)		/* 256 MB in CS 0 */
+#define PHYS_SDRAM_2		0x50000000		/* LPDDR2 DMC 1 */
+#define PHYS_SDRAM_2_SIZE	(256 << 20)		/* 256 MB in CS 0 */
+
+#define CONFIG_SYS_MEM_TOP_HIDE		(1 << 20)	/* ram console */
+
+#define CONFIG_SYS_MONITOR_BASE		0x00000000
+#define CONFIG_SYS_MONITOR_LEN		(256 << 10)	/* Reserve 2 sectors */
+
+#define CONFIG_ENV_IS_IN_MMC
+#define CONFIG_SYS_MMC_ENV_DEV		0
+#define CONFIG_ENV_SIZE			4096
+#define CONFIG_ENV_OFFSET		((32 - 4) << 10)/* 32KiB - 4KiB */
+
+#define CONFIG_DOS_PARTITION
+
+#define CONFIG_SYS_INIT_SP_ADDR	(CONFIG_SYS_LOAD_ADDR - GENERATED_GBL_DATA_SIZE)
+
+#define CONFIG_SYS_CACHELINE_SIZE       32
+
+#include <asm/arch/gpio.h>
+/*
+ * I2C Settings
+ */
+#define CONFIG_SOFT_I2C_GPIO_SCL exynos4_gpio_part1_get_nr(b, 7)
+#define CONFIG_SOFT_I2C_GPIO_SDA exynos4_gpio_part1_get_nr(b, 6)
+
+#define CONFIG_SOFT_I2C
+#define CONFIG_SOFT_I2C_READ_REPEATED_START
+#define CONFIG_SYS_I2C_SPEED	50000
+#define CONFIG_I2C_MULTI_BUS
+#define CONFIG_SYS_MAX_I2C_BUS	7
+
+#define CONFIG_PMIC
+#define CONFIG_PMIC_I2C
+#define CONFIG_PMIC_MAX8998
+
+#define CONFIG_USB_GADGET
+#define CONFIG_USB_GADGET_S3C_UDC_OTG
+#define CONFIG_USB_GADGET_DUALSPEED
+
+#endif	/* __CONFIG_H */