blob: b7a197ee8b026096ab24bbe946eaebfd7e27a655 [file] [log] [blame]
huang lina6dbfb52016-03-02 18:38:40 +08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2016 Rockchip Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 */
16
Vadim Bendebury8e8a00c2016-04-22 12:25:07 -070017#include <boardid.h>
huang lina6dbfb52016-03-02 18:38:40 +080018#include <device/device.h>
Vadim Bendebury1e80ab32016-03-28 00:44:54 -070019#include <gpio.h>
20#include <soc/clock.h>
21#include <soc/grf.h>
22
23static void configure_sdmmc(void)
24{
25 gpio_output(GPIO(4, D, 5), 1); /* SDMMC_PWR_EN */
26 gpio_output(GPIO(2, A, 2), 1); /* SDMMC_SDIO_PWR_EN */
Vadim Bendebury2832c412016-05-11 15:03:44 +080027
28 /* SDMMC_DET_L is different on Kevin board revision 0. */
29 if (IS_ENABLED(CONFIG_BOARD_GOOGLE_KEVIN) && (board_id() == 0))
Vadim Bendebury8e8a00c2016-04-22 12:25:07 -070030 gpio_input(GPIO(4, D, 2));
Vadim Bendebury2832c412016-05-11 15:03:44 +080031 else
Vadim Bendebury8e8a00c2016-04-22 12:25:07 -070032 gpio_input(GPIO(4, D, 0));
Vadim Bendebury2832c412016-05-11 15:03:44 +080033
Vadim Bendebury1e80ab32016-03-28 00:44:54 -070034 gpio_output(GPIO(2, D, 4), 0); /* Keep the max voltage */
Vadim Bendebury8e8a00c2016-04-22 12:25:07 -070035
Vadim Bendebury1e80ab32016-03-28 00:44:54 -070036 write32(&rk3399_grf->iomux_sdmmc, IOMUX_SDMMC);
37}
huang lina6dbfb52016-03-02 18:38:40 +080038
39static void mainboard_init(device_t dev)
40{
Vadim Bendebury1e80ab32016-03-28 00:44:54 -070041 configure_sdmmc();
huang lina6dbfb52016-03-02 18:38:40 +080042}
43
44static void mainboard_enable(device_t dev)
45{
46 dev->ops->init = &mainboard_init;
47}
48
49struct chip_operations mainboard_ops = {
50 .name = CONFIG_MAINBOARD_PART_NUMBER,
51 .enable_dev = mainboard_enable,
52};