blob: 4e608194b15e954810130deecc9314f26d9b8aef [file] [log] [blame]
Lee Leahy77ff0b12015-05-05 15:07:29 -07001/*
2 * This file is part of the coreboot project.
3 *
Lee Leahy77ff0b12015-05-05 15:07:29 -07004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Lee Leahy77ff0b12015-05-05 15:07:29 -070013 */
14
Lee Leahy77ff0b12015-05-05 15:07:29 -070015#include <soc/pci_devs.h>
16#include <soc/ramstage.h>
17#include <soc/sata.h>
18#include <console/console.h>
Lee Leahy77ff0b12015-05-05 15:07:29 -070019#include <device/device.h>
20#include <device/pci.h>
21#include <device/pci_ids.h>
22
23#include "chip.h"
24
Lee Leahy32471722015-04-20 15:20:28 -070025typedef struct soc_intel_braswell_config config_t;
Lee Leahy77ff0b12015-05-05 15:07:29 -070026
27static void sata_init(struct device *dev)
28{
Angel Ponsaee7ab22020-03-19 00:31:58 +010029 printk(BIOS_SPEW, "%s/%s (%s)\n", __FILE__, __func__, dev_name(dev));
Lee Leahy77ff0b12015-05-05 15:07:29 -070030}
31
Elyes HAOUASb13fac32018-05-24 22:29:44 +020032static void sata_enable(struct device *dev)
Lee Leahy77ff0b12015-05-05 15:07:29 -070033{
Lee Leahy77ff0b12015-05-05 15:07:29 -070034 southcluster_enable_dev(dev);
Lee Leahy77ff0b12015-05-05 15:07:29 -070035}
36
37static struct device_operations sata_ops = {
38 .read_resources = pci_dev_read_resources,
39 .set_resources = pci_dev_set_resources,
40 .enable_resources = pci_dev_enable_resources,
41 .init = sata_init,
42 .enable = sata_enable,
Lee Leahy77ff0b12015-05-05 15:07:29 -070043 .ops_pci = &soc_pci_ops,
44};
45
46static const unsigned short pci_device_ids[] = {
Lee Leahy32471722015-04-20 15:20:28 -070047 AHCI1_DEVID, /* AHCI */
Lee Leahy77ff0b12015-05-05 15:07:29 -070048 0,
49};
50
Lee Leahy32471722015-04-20 15:20:28 -070051static const struct pci_driver soc_sata __pci_driver = {
Lee Leahy77ff0b12015-05-05 15:07:29 -070052 .ops = &sata_ops,
53 .vendor = PCI_VENDOR_ID_INTEL,
54 .devices = pci_device_ids,
55};