blob: 1fb7e9f17d61667059a052e47ebda6094575a6fb [file] [log] [blame]
Lee Leahy77ff0b12015-05-05 15:07:29 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013 Google Inc.
Lee Leahy32471722015-04-20 15:20:28 -07005 * Copyright (C) 2015 Intel Corp.
Lee Leahy77ff0b12015-05-05 15:07:29 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
Patrick Georgi25509ee2015-03-26 15:17:45 +010018 * Foundation, Inc.
Lee Leahy77ff0b12015-05-05 15:07:29 -070019 */
20
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 <soc/iosf.h>
29#include <soc/nvs.h>
30#include <soc/pci_devs.h>
31#include <soc/ramstage.h>
32#include "chip.h"
33
34#define CAP_OVERRIDE_LOW 0xa0
35#define CAP_OVERRIDE_HIGH 0xa4
36# define USE_CAP_OVERRIDES (1 << 31)
37
38static void sd_init(device_t dev)
39{
Lee Leahy32471722015-04-20 15:20:28 -070040 struct soc_intel_braswell_config *config = dev->chip_info;
41
42 printk(BIOS_SPEW, "%s/%s ( %s )\n",
43 __FILE__, __func__, dev_name(dev));
Lee Leahy77ff0b12015-05-05 15:07:29 -070044
45 if (config == NULL)
46 return;
47
48 if (config->sdcard_cap_low != 0 || config->sdcard_cap_high != 0) {
49 printk(BIOS_DEBUG, "Overriding SD Card controller caps.\n");
50 pci_write_config32(dev, CAP_OVERRIDE_LOW,
Lee Leahy32471722015-04-20 15:20:28 -070051 config->sdcard_cap_low);
Lee Leahy77ff0b12015-05-05 15:07:29 -070052 pci_write_config32(dev, CAP_OVERRIDE_HIGH,
Lee Leahy32471722015-04-20 15:20:28 -070053 config->sdcard_cap_high | USE_CAP_OVERRIDES);
Lee Leahy77ff0b12015-05-05 15:07:29 -070054 }
55
Lee Leahy32471722015-04-20 15:20:28 -070056 if (config->sd_acpi_mode)
Lee Leahy77ff0b12015-05-05 15:07:29 -070057 scc_enable_acpi_mode(dev, SCC_SD_CTL, SCC_NVS_SD);
58}
59
60static const struct device_operations device_ops = {
61 .read_resources = pci_dev_read_resources,
62 .set_resources = pci_dev_set_resources,
63 .enable_resources = pci_dev_enable_resources,
64 .init = sd_init,
Lee Leahy77ff0b12015-05-05 15:07:29 -070065 .ops_pci = &soc_pci_ops,
66};
67
68static const struct pci_driver southcluster __pci_driver = {
69 .ops = &device_ops,
70 .vendor = PCI_VENDOR_ID_INTEL,
71 .device = SD_DEVID,
72};