blob: f88614bfc5d1a2f6442aba5a29a51d0788204097 [file] [log] [blame]
Aaron Durbin15921692013-11-12 16:44:18 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013 Google 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 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include <stdint.h>
21#include <arch/io.h>
22#include <console/console.h>
23#include <device/device.h>
24#include <device/pci.h>
25#include <device/pci_ids.h>
26#include <reg_script.h>
27
28#include <baytrail/iosf.h>
Duncan Laurie430bf0d2013-12-10 14:37:42 -080029#include <baytrail/nvs.h>
Aaron Durbin15921692013-11-12 16:44:18 -060030#include <baytrail/pci_devs.h>
31#include <baytrail/ramstage.h>
Duncan Laurie430bf0d2013-12-10 14:37:42 -080032#include "chip.h"
Aaron Durbin15921692013-11-12 16:44:18 -060033
34static const struct reg_script emmc_ops[] = {
35 /* Enable 2ms card stable feature. */
36 REG_PCI_OR32(0xa8, (1 << 24)),
37 /* Enable HS200 */
38 REG_PCI_WRITE32(0xa0, 0x446cc801),
39 REG_PCI_WRITE32(0xa4, 0x80000807),
40 /* cfio_regs_score_special_bits.sdio1_dummy_loopback_en=1 */
41 REG_IOSF_OR(IOSF_PORT_SCORE, 0x49c0, (1 << 3)),
42 /* CLKGATE_EN_1 . cr_scc_mipihsi_clkgate_en = 1 */
43 REG_IOSF_RMW(IOSF_PORT_CCU, 0x1c, ~(3 << 26), (1 << 26)),
44 /* Set slew for HS200 */
45 REG_IOSF_RMW(IOSF_PORT_SCORE, 0x48c0, ~0x3c, 0x3c),
46 REG_IOSF_RMW(IOSF_PORT_SCORE, 0x48c4, ~0x3c, 0x3c),
47 /* Max timeout */
48 REG_RES_WRITE8(PCI_BASE_ADDRESS_0, 0x002e, 0x0e),
49 REG_SCRIPT_END,
50};
51
52static void emmc_init(device_t dev)
53{
Duncan Laurie430bf0d2013-12-10 14:37:42 -080054 struct soc_intel_baytrail_config *config = dev->chip_info;
Duncan Laurie430bf0d2013-12-10 14:37:42 -080055
Aaron Durbin616f3942013-12-10 17:12:44 -080056 printk(BIOS_DEBUG, "eMMC init\n");
57 reg_script_run_on_dev(dev, emmc_ops);
Duncan Lauriec29d6b82013-12-12 16:55:36 -080058
59 if (config->scc_acpi_mode)
60 scc_enable_acpi_mode(dev, SCC_MMC_CTL, SCC_NVS_MMC);
Aaron Durbin15921692013-11-12 16:44:18 -060061}
62
63static struct device_operations device_ops = {
64 .read_resources = pci_dev_read_resources,
65 .set_resources = pci_dev_set_resources,
66 .enable_resources = pci_dev_enable_resources,
67 .init = emmc_init,
68 .enable = NULL,
69 .scan_bus = NULL,
70 .ops_pci = &soc_pci_ops,
71};
72
73static const struct pci_driver southcluster __pci_driver = {
74 .ops = &device_ops,
75 .vendor = PCI_VENDOR_ID_INTEL,
76 .device = MMC_DEVID,
77};