blob: 281019ab9508a64250ebb5ffacdac196a0ae1785 [file] [log] [blame]
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -05001/*
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 <console/console.h>
21#include <device/device.h>
22#include <device/pci.h>
23#include <arch/pci_ops.h>
24
Julius Werner18ea2d32014-10-07 16:42:17 -070025#include <soc/pci_devs.h>
26#include <soc/ramstage.h>
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050027#include "chip.h"
28
29static void pci_domain_set_resources(device_t dev)
30{
31 assign_resources(dev->link_list);
32}
33
34static struct device_operations pci_domain_ops = {
35 .read_resources = pci_domain_read_resources,
36 .set_resources = pci_domain_set_resources,
37 .enable_resources = NULL,
38 .init = NULL,
39 .scan_bus = pci_domain_scan_bus,
40 .ops_pci_bus = pci_bus_default_ops,
41};
42
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050043static struct device_operations cpu_bus_ops = {
Edward O'Callaghan0625a8b2014-10-31 08:03:16 +110044 .read_resources = DEVICE_NOOP,
45 .set_resources = DEVICE_NOOP,
46 .enable_resources = DEVICE_NOOP,
Aaron Durbin302cbd62013-10-21 12:36:17 -050047 .init = baytrail_init_cpus,
Aaron Durbinfda56a62013-09-24 12:29:57 -050048 .scan_bus = NULL,
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050049};
50
51
52static void enable_dev(device_t dev)
53{
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050054 /* Set the operations if it is a special bus type */
55 if (dev->path.type == DEVICE_PATH_DOMAIN) {
56 dev->ops = &pci_domain_ops;
57 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
58 dev->ops = &cpu_bus_ops;
Aaron Durbind7bc23a2013-10-29 16:37:10 -050059 } else if (dev->path.type == DEVICE_PATH_PCI) {
60 /* Handle south cluster enablement. */
61 if (PCI_SLOT(dev->path.pci.devfn) > GFX_DEV &&
62 (dev->ops == NULL || dev->ops->enable == NULL)) {
63 southcluster_enable_dev(dev);
64 }
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050065 }
66}
67
Aaron Durbin452d31a2013-09-24 16:47:49 -050068/* Called at BS_DEV_INIT_CHIPS time -- very early. Just after BS_PRE_DEVICE. */
69static void soc_init(void *chip_info)
70{
Kein Yuan35110232014-02-22 12:26:55 -080071 baytrail_init_pre_device(chip_info);
Aaron Durbin452d31a2013-09-24 16:47:49 -050072}
73
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050074struct chip_operations soc_intel_baytrail_ops = {
75 CHIP_NAME("Intel BayTrail SoC")
76 .enable_dev = enable_dev,
Aaron Durbin452d31a2013-09-24 16:47:49 -050077 .init = soc_init,
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050078};
Aaron Durbinfda56a62013-09-24 12:29:57 -050079
80static void pci_set_subsystem(device_t dev, unsigned vendor, unsigned device)
81{
82 if (!vendor || !device) {
83 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
84 pci_read_config32(dev, PCI_VENDOR_ID));
85 } else {
86 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
87 ((device & 0xffff) << 16) | (vendor & 0xffff));
88 }
89}
90
91struct pci_operations soc_pci_ops = {
92 .set_subsystem = &pci_set_subsystem,
93};