blob: 00b651e0efbae1acebf03d711200d53e077d73b1 [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 <soc/pci_devs.h>
23#include <soc/ramstage.h>
24#include <soc/sata.h>
25#include <console/console.h>
26#include <delay.h>
27#include <device/device.h>
28#include <device/pci.h>
29#include <device/pci_ids.h>
30
31#include "chip.h"
32
Lee Leahy32471722015-04-20 15:20:28 -070033typedef struct soc_intel_braswell_config config_t;
Lee Leahy77ff0b12015-05-05 15:07:29 -070034
35static void sata_init(struct device *dev)
36{
Lee Leahy32471722015-04-20 15:20:28 -070037 printk(BIOS_SPEW, "%s/%s ( %s )\n",
38 __FILE__, __func__, dev_name(dev));
Lee Leahy77ff0b12015-05-05 15:07:29 -070039}
40
41static void sata_enable(device_t dev)
42{
Lee Leahy77ff0b12015-05-05 15:07:29 -070043 southcluster_enable_dev(dev);
Lee Leahy77ff0b12015-05-05 15:07:29 -070044}
45
46static struct device_operations sata_ops = {
47 .read_resources = pci_dev_read_resources,
48 .set_resources = pci_dev_set_resources,
49 .enable_resources = pci_dev_enable_resources,
50 .init = sata_init,
51 .enable = sata_enable,
Lee Leahy77ff0b12015-05-05 15:07:29 -070052 .ops_pci = &soc_pci_ops,
53};
54
55static const unsigned short pci_device_ids[] = {
Lee Leahy32471722015-04-20 15:20:28 -070056 AHCI1_DEVID, /* AHCI */
Lee Leahy77ff0b12015-05-05 15:07:29 -070057 0,
58};
59
Lee Leahy32471722015-04-20 15:20:28 -070060static const struct pci_driver soc_sata __pci_driver = {
Lee Leahy77ff0b12015-05-05 15:07:29 -070061 .ops = &sata_ops,
62 .vendor = PCI_VENDOR_ID_INTEL,
63 .devices = pci_device_ids,
64};