blob: d0a3664f6bf8b056dc95b1a5e4d3b85feed99794 [file] [log] [blame]
Uwe Hermannb80dbf02007-04-22 19:08:13 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Uwe Hermannb80dbf02007-04-22 19:08:13 +00003 *
4 * Copyright (C) 2003-2004 Linux Networx
5 * (Written by Eric Biederman <ebiederman@lnxi.com> for Linux Networx)
6 * Copyright (C) 2003 Ronald G. Minnich <rminnich@gmail.com>
7 * Copyright (C) 2004-2005 Li-Ta Lo <ollie@lanl.gov>
8 * Copyright (C) 2005 Tyan
9 * (Written by Yinghai Lu <yhlu@tyan.com> for Tyan)
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; version 2 of the License.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
Paul Menzela46a7122013-02-23 18:37:27 +010022 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Uwe Hermannb80dbf02007-04-22 19:08:13 +000023 */
24
Eric Biedermane9a271e32003-09-02 03:36:25 +000025#include <console/console.h>
26#include <device/device.h>
27#include <device/pci.h>
Stefan Reinauerde3206a2010-02-22 06:09:43 +000028#include <reset.h>
Eric Biedermane9a271e32003-09-02 03:36:25 +000029
Kyösti Mälkkia93c3fe2012-10-09 22:28:56 +030030const char mainboard_name[] = CONFIG_MAINBOARD_VENDOR " " CONFIG_MAINBOARD_PART_NUMBER;
31
Stefan Reinauer14e22772010-04-27 06:56:47 +000032/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +000033 * Scan devices on static buses.
Li-Ta Lofb4c50f2004-05-07 21:52:47 +000034 *
Li-Ta Lo9f0d0f92004-05-10 16:05:16 +000035 * The enumeration of certain buses is purely static. The existence of
36 * devices on those buses can be completely determined at compile time
Stefan Reinauer14e22772010-04-27 06:56:47 +000037 * and is specified in the config file. Typical examples are the 'PNP'
38 * devices on a legacy ISA/LPC bus. There is no need of probing of any kind,
39 * the only thing we have to do is to walk through the bus and
Li-Ta Lo04930692004-11-25 17:37:19 +000040 * enable or disable devices as indicated in the config file.
Li-Ta Lofb4c50f2004-05-07 21:52:47 +000041 *
Li-Ta Lo04930692004-11-25 17:37:19 +000042 * On the other hand, some devices are virtual and their existence is
43 * artificial. They can not be probed at run time. One example is the
44 * debug device. Those virtual devices have to be listed in the config
45 * file under some static bus in order to be enumerated at run time.
Li-Ta Lofb4c50f2004-05-07 21:52:47 +000046 *
Li-Ta Lo04930692004-11-25 17:37:19 +000047 * This function is the default scan_bus() method for the root device and
48 * LPC bridges.
49 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +000050 * @param bus Pointer to the device to which the static buses are attached to.
51 * @param max Maximum bus number currently used before scanning.
Uwe Hermannd453dd02010-10-18 00:00:57 +000052 * @return The largest bus number used.
Eric Biedermane9a271e32003-09-02 03:36:25 +000053 */
arch import user (historical)98d0d302005-07-06 17:13:46 +000054static int smbus_max = 0;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000055unsigned int scan_static_bus(device_t bus, unsigned int max)
Eric Biedermane9a271e32003-09-02 03:36:25 +000056{
57 device_t child;
Uwe Hermannd453dd02010-10-18 00:00:57 +000058 struct bus *link;
Li-Ta Loe5266692004-03-23 21:28:05 +000059
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000060 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(bus));
Li-Ta Lo04930692004-11-25 17:37:19 +000061
Uwe Hermannd453dd02010-10-18 00:00:57 +000062 for (link = bus->link_list; link; link = link->next) {
63 /* For SMBus bus enumerate. */
Myles Watson894a3472010-06-09 22:41:35 +000064 child = link->children;
Uwe Hermannd453dd02010-10-18 00:00:57 +000065
66 if (child && child->path.type == DEVICE_PATH_I2C)
Myles Watson894a3472010-06-09 22:41:35 +000067 link->secondary = ++smbus_max;
Uwe Hermannd453dd02010-10-18 00:00:57 +000068
69 for (child = link->children; child; child = child->sibling) {
70 if (child->chip_ops && child->chip_ops->enable_dev)
Eric Biederman7003ba42004-10-16 06:20:29 +000071 child->chip_ops->enable_dev(child);
Uwe Hermannd453dd02010-10-18 00:00:57 +000072
73 if (child->ops && child->ops->enable)
Eric Biedermane9a271e32003-09-02 03:36:25 +000074 child->ops->enable(child);
Uwe Hermannd453dd02010-10-18 00:00:57 +000075
76 if (child->path.type == DEVICE_PATH_I2C) {
77 printk(BIOS_DEBUG, "smbus: %s[%d]->",
78 dev_path(child->bus->dev),
79 child->bus->link_num);
Eric Biedermane9a271e32003-09-02 03:36:25 +000080 }
Uwe Hermannd453dd02010-10-18 00:00:57 +000081 printk(BIOS_DEBUG, "%s %s\n", dev_path(child),
82 child->enabled ? "enabled" : "disabled");
Eric Biedermane9a271e32003-09-02 03:36:25 +000083 }
84 }
Uwe Hermannd453dd02010-10-18 00:00:57 +000085
86 for (link = bus->link_list; link; link = link->next) {
87 for (child = link->children; child; child = child->sibling) {
Eric Biedermane9a271e32003-09-02 03:36:25 +000088 if (!child->ops || !child->ops->scan_bus)
89 continue;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000090 printk(BIOS_SPEW, "%s scanning...\n", dev_path(child));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000091 max = scan_bus(child, max);
Eric Biedermane9a271e32003-09-02 03:36:25 +000092 }
93 }
Li-Ta Lofb4c50f2004-05-07 21:52:47 +000094
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000095 printk(BIOS_SPEW, "%s for %s done\n", __func__, dev_path(bus));
Li-Ta Lofb4c50f2004-05-07 21:52:47 +000096
Eric Biedermane9a271e32003-09-02 03:36:25 +000097 return max;
98}
99
Li-Ta Lo9782f752004-05-05 21:15:42 +0000100/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000101 * Scan root bus for generic systems.
Li-Ta Lo9782f752004-05-05 21:15:42 +0000102 *
Li-Ta Lo04930692004-11-25 17:37:19 +0000103 * This function is the default scan_bus() method of the root device.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000104 *
105 * @param root The root device structure.
106 * @param max The current bus number scanned so far, usually 0x00.
Uwe Hermannd453dd02010-10-18 00:00:57 +0000107 * @return The largest bus number used.
Li-Ta Lo9782f752004-05-05 21:15:42 +0000108 */
Myles Watson7eac4452010-06-17 16:16:56 +0000109static unsigned int root_dev_scan_bus(device_t root, unsigned int max)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000110{
Eric Biederman03acab62004-10-14 21:25:53 +0000111 return scan_static_bus(root, max);
112}
113
Myles Watson7eac4452010-06-17 16:16:56 +0000114static void root_dev_reset(struct bus *bus)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000115{
Uwe Hermannd453dd02010-10-18 00:00:57 +0000116 printk(BIOS_INFO, "Resetting board...\n");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000117 hard_reset();
118}
119
Li-Ta Lo9782f752004-05-05 21:15:42 +0000120/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000121 * Default device operation for root device.
Li-Ta Lo9782f752004-05-05 21:15:42 +0000122 *
Li-Ta Lo04930692004-11-25 17:37:19 +0000123 * This is the default device operation for root devices. These operations
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000124 * should be fully usable as is. However the chip_operations::enable_dev()
Li-Ta Lo04930692004-11-25 17:37:19 +0000125 * of a motherboard can override this if you want non-default behavior.
Li-Ta Lo9782f752004-05-05 21:15:42 +0000126 */
Eric Biedermane9a271e32003-09-02 03:36:25 +0000127struct device_operations default_dev_ops_root = {
Kyösti Mälkki85756c12015-02-06 09:15:52 +0200128 .read_resources = DEVICE_NOOP,
129 .set_resources = DEVICE_NOOP,
130 .enable_resources = DEVICE_NOOP,
131 .init = DEVICE_NOOP,
Eric Biederman03acab62004-10-14 21:25:53 +0000132 .scan_bus = root_dev_scan_bus,
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000133 .reset_bus = root_dev_reset,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000134};