blob: 41ba303ec446570793750fa236d6d360eae3cbf0 [file] [log] [blame]
Otavio Salvador50e60902013-01-23 10:30:34 +00001/*
2 * Freescale MX23EVK board
3 *
4 * (C) Copyright 2013 O.S. Systems Software LTDA.
5 *
6 * Author: Otavio Salvador <otavio@ossystems.com.br>
7 *
8 * Based on m28evk.c:
9 * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
10 * on behalf of DENX Software Engineering GmbH
11 *
12 * See file CREDITS for list of people who contributed to this
13 * project.
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation; either version 2 of
18 * the License, or (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 */
25
26#include <common.h>
27#include <asm/gpio.h>
28#include <asm/arch/imx-regs.h>
29#include <asm/arch/clock.h>
30#include <asm/arch/iomux-mx23.h>
31#include <asm/arch/sys_proto.h>
32
33DECLARE_GLOBAL_DATA_PTR;
34
35/*
36 * Functions
37 */
38int board_early_init_f(void)
39{
40 /* IO0 clock at 480MHz */
41 mxs_set_ioclk(MXC_IOCLK0, 480000);
42
43 /* SSP0 clock at 96MHz */
44 mxs_set_sspclk(MXC_SSPCLK0, 96000, 0);
45
46 return 0;
47}
48
49int dram_init(void)
50{
51 return mxs_dram_init();
52}
53
54int board_init(void)
55{
56 /* Adress of boot parameters */
57 gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
58
59 return 0;
60}
61
62#ifdef CONFIG_CMD_MMC
63static int mx23evk_mmc_wp(int id)
64{
65 if (id != 0) {
66 printf("MXS MMC: Invalid card selected (card id = %d)\n", id);
67 return 1;
68 }
69
70 return gpio_get_value(MX23_PAD_PWM4__GPIO_1_30);
71}
72
73int board_mmc_init(bd_t *bis)
74{
75 /* Configure WP as input */
76 gpio_direction_input(MX23_PAD_PWM4__GPIO_1_30);
77
78 /* Configure MMC0 Power Enable */
79 gpio_direction_output(MX23_PAD_PWM3__GPIO_1_29, 0);
80
81 return mxsmmc_initialize(bis, 0, mx23evk_mmc_wp, NULL);
82}
83#endif