]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/olimex/mx23_olinuxino/mx23_olinuxino.c
mxs_gpio: correctly use the GPIO API
[karo-tx-uboot.git] / board / olimex / mx23_olinuxino / mx23_olinuxino.c
1 /*
2  * Olimex MX23 Olinuxino board
3  *
4  * Copyright (C) 2013 Marek Vasut <marex@denx.de>
5  *
6  * SPDX-License-Identifier:     GPL-2.0+
7  */
8
9 #include <common.h>
10 #include <asm/gpio.h>
11 #include <asm/io.h>
12 #include <asm/arch/iomux.h>
13 #include <asm/arch/iomux-mx23.h>
14 #include <asm/arch/imx-regs.h>
15 #include <asm/arch/clock.h>
16 #include <asm/arch/sys_proto.h>
17 #ifdef CONFIG_STATUS_LED
18 #include <status_led.h>
19 #endif
20
21 DECLARE_GLOBAL_DATA_PTR;
22
23 /*
24  * Functions
25  */
26 int board_early_init_f(void)
27 {
28         /* IO0 clock at 480MHz */
29         mxs_set_ioclk(MXC_IOCLK0, 480000);
30
31         /* SSP0 clock at 96MHz */
32         mxs_set_sspclk(MXC_SSPCLK0, 96000, 0);
33
34         return 0;
35 }
36
37 #ifdef CONFIG_CMD_USB
38 int board_ehci_hcd_init(int port)
39 {
40         /* Enable LAN9512 (Maxi) or GL850G (Mini) USB HUB power. */
41         gpio_direction_output(MXS_PAD_TO_GPIO(MX23_PAD_GPMI_ALE__GPIO_0_17), 1);
42         udelay(100);
43         return 0;
44 }
45
46 int board_ehci_hcd_exit(int port)
47 {
48         /* Enable LAN9512 (Maxi) or GL850G (Mini) USB HUB power. */
49         gpio_direction_output(MXS_PAD_TO_GPIO(MX23_PAD_GPMI_ALE__GPIO_0_17), 0);
50         return 0;
51 }
52 #endif
53
54 int dram_init(void)
55 {
56         return mxs_dram_init();
57 }
58
59 #ifdef  CONFIG_CMD_MMC
60 static int mx23_olx_mmc_cd(int id)
61 {
62         return 1;       /* Card always present */
63 }
64
65 int board_mmc_init(bd_t *bis)
66 {
67         return mxsmmc_initialize(bis, 0, NULL, mx23_olx_mmc_cd);
68 }
69 #endif
70
71 int board_init(void)
72 {
73         /* Adress of boot parameters */
74         gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
75
76 #if defined(CONFIG_STATUS_LED) && defined(STATUS_LED_BOOT)
77         status_led_set(STATUS_LED_BOOT, STATUS_LED_STATE);
78 #endif
79
80         return 0;
81 }