2007-04-22 21:08:13 +02:00
|
|
|
/*
|
2008-01-18 11:35:56 +01:00
|
|
|
* This file is part of the coreboot project.
|
2007-04-22 21:08:13 +02:00
|
|
|
*
|
|
|
|
* Copyright (C) 2003-2004 Linux Networx
|
|
|
|
* (Written by Eric Biederman <ebiederman@lnxi.com> for Linux Networx)
|
|
|
|
* Copyright (C) 2003 Ronald G. Minnich <rminnich@gmail.com>
|
|
|
|
* Copyright (C) 2004-2005 Li-Ta Lo <ollie@lanl.gov>
|
|
|
|
* Copyright (C) 2005 Tyan
|
|
|
|
* (Written by Yinghai Lu <yhlu@tyan.com> for Tyan)
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2003-09-02 05:36:25 +02:00
|
|
|
#include <console/console.h>
|
|
|
|
#include <device/device.h>
|
|
|
|
#include <device/pci.h>
|
2010-02-22 07:09:43 +01:00
|
|
|
#include <reset.h>
|
2003-09-02 05:36:25 +02:00
|
|
|
|
2010-04-27 08:56:47 +02:00
|
|
|
/**
|
2010-10-17 21:01:48 +02:00
|
|
|
* Read the resources for the root device, that encompass the resources for
|
|
|
|
* the entire system.
|
|
|
|
*
|
|
|
|
* @param root Pointer to the device structure for the system root device.
|
2003-09-02 05:36:25 +02:00
|
|
|
*/
|
2010-06-17 18:16:56 +02:00
|
|
|
static void root_dev_read_resources(device_t root)
|
2003-09-02 05:36:25 +02:00
|
|
|
{
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_ERR, "%s should never be called.\n", __func__);
|
2003-09-02 05:36:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-10-17 21:01:48 +02:00
|
|
|
* Write the resources for every device.
|
|
|
|
*
|
|
|
|
* Write the resources for the root device, and every device under it which
|
|
|
|
* are all of the devices.
|
2004-11-25 18:37:19 +01:00
|
|
|
*
|
2010-10-17 21:01:48 +02:00
|
|
|
* @param root Pointer to the device structure for the system root device.
|
2003-09-02 05:36:25 +02:00
|
|
|
*/
|
2010-06-17 18:16:56 +02:00
|
|
|
static void root_dev_set_resources(device_t root)
|
2003-09-02 05:36:25 +02:00
|
|
|
{
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_ERR, "%s should never be called.\n", __func__);
|
2003-09-02 05:36:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-10-17 21:01:48 +02:00
|
|
|
* Scan devices on static buses.
|
2004-05-07 23:52:47 +02:00
|
|
|
*
|
2004-05-10 18:05:16 +02:00
|
|
|
* The enumeration of certain buses is purely static. The existence of
|
|
|
|
* devices on those buses can be completely determined at compile time
|
2010-04-27 08:56:47 +02:00
|
|
|
* and is specified in the config file. Typical examples are the 'PNP'
|
|
|
|
* devices on a legacy ISA/LPC bus. There is no need of probing of any kind,
|
|
|
|
* the only thing we have to do is to walk through the bus and
|
2004-11-25 18:37:19 +01:00
|
|
|
* enable or disable devices as indicated in the config file.
|
2004-05-07 23:52:47 +02:00
|
|
|
*
|
2004-11-25 18:37:19 +01:00
|
|
|
* On the other hand, some devices are virtual and their existence is
|
|
|
|
* artificial. They can not be probed at run time. One example is the
|
|
|
|
* debug device. Those virtual devices have to be listed in the config
|
|
|
|
* file under some static bus in order to be enumerated at run time.
|
2004-05-07 23:52:47 +02:00
|
|
|
*
|
2004-11-25 18:37:19 +01:00
|
|
|
* This function is the default scan_bus() method for the root device and
|
|
|
|
* LPC bridges.
|
|
|
|
*
|
2010-10-17 21:01:48 +02:00
|
|
|
* @param bus Pointer to the device to which the static buses are attached to.
|
|
|
|
* @param max Maximum bus number currently used before scanning.
|
2010-10-18 02:00:57 +02:00
|
|
|
* @return The largest bus number used.
|
2003-09-02 05:36:25 +02:00
|
|
|
*/
|
2005-07-06 19:13:46 +02:00
|
|
|
static int smbus_max = 0;
|
2005-07-08 04:49:49 +02:00
|
|
|
unsigned int scan_static_bus(device_t bus, unsigned int max)
|
2003-09-02 05:36:25 +02:00
|
|
|
{
|
|
|
|
device_t child;
|
2010-10-18 02:00:57 +02:00
|
|
|
struct bus *link;
|
2004-03-23 22:28:05 +01:00
|
|
|
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(bus));
|
2004-11-25 18:37:19 +01:00
|
|
|
|
2010-10-18 02:00:57 +02:00
|
|
|
for (link = bus->link_list; link; link = link->next) {
|
|
|
|
/* For SMBus bus enumerate. */
|
2010-06-10 00:41:35 +02:00
|
|
|
child = link->children;
|
2010-10-18 02:00:57 +02:00
|
|
|
|
|
|
|
if (child && child->path.type == DEVICE_PATH_I2C)
|
2010-06-10 00:41:35 +02:00
|
|
|
link->secondary = ++smbus_max;
|
2010-10-18 02:00:57 +02:00
|
|
|
|
|
|
|
for (child = link->children; child; child = child->sibling) {
|
|
|
|
if (child->chip_ops && child->chip_ops->enable_dev)
|
2004-10-16 08:20:29 +02:00
|
|
|
child->chip_ops->enable_dev(child);
|
2010-10-18 02:00:57 +02:00
|
|
|
|
|
|
|
if (child->ops && child->ops->enable)
|
2003-09-02 05:36:25 +02:00
|
|
|
child->ops->enable(child);
|
2010-10-18 02:00:57 +02:00
|
|
|
|
|
|
|
if (child->path.type == DEVICE_PATH_I2C) {
|
|
|
|
printk(BIOS_DEBUG, "smbus: %s[%d]->",
|
|
|
|
dev_path(child->bus->dev),
|
|
|
|
child->bus->link_num);
|
2003-09-02 05:36:25 +02:00
|
|
|
}
|
2010-10-18 02:00:57 +02:00
|
|
|
printk(BIOS_DEBUG, "%s %s\n", dev_path(child),
|
|
|
|
child->enabled ? "enabled" : "disabled");
|
2003-09-02 05:36:25 +02:00
|
|
|
}
|
|
|
|
}
|
2010-10-18 02:00:57 +02:00
|
|
|
|
|
|
|
for (link = bus->link_list; link; link = link->next) {
|
|
|
|
for (child = link->children; child; child = child->sibling) {
|
2003-09-02 05:36:25 +02:00
|
|
|
if (!child->ops || !child->ops->scan_bus)
|
|
|
|
continue;
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_SPEW, "%s scanning...\n", dev_path(child));
|
2005-07-08 04:49:49 +02:00
|
|
|
max = scan_bus(child, max);
|
2003-09-02 05:36:25 +02:00
|
|
|
}
|
|
|
|
}
|
2004-05-07 23:52:47 +02:00
|
|
|
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_SPEW, "%s for %s done\n", __func__, dev_path(bus));
|
2004-05-07 23:52:47 +02:00
|
|
|
|
2003-09-02 05:36:25 +02:00
|
|
|
return max;
|
|
|
|
}
|
|
|
|
|
2010-06-17 18:16:56 +02:00
|
|
|
static void root_dev_enable_resources(device_t dev)
|
2004-10-14 23:25:53 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2004-05-05 23:15:42 +02:00
|
|
|
/**
|
2010-10-17 21:01:48 +02:00
|
|
|
* Scan root bus for generic systems.
|
2004-05-05 23:15:42 +02:00
|
|
|
*
|
2004-11-25 18:37:19 +01:00
|
|
|
* This function is the default scan_bus() method of the root device.
|
2010-10-17 21:01:48 +02:00
|
|
|
*
|
|
|
|
* @param root The root device structure.
|
|
|
|
* @param max The current bus number scanned so far, usually 0x00.
|
2010-10-18 02:00:57 +02:00
|
|
|
* @return The largest bus number used.
|
2004-05-05 23:15:42 +02:00
|
|
|
*/
|
2010-06-17 18:16:56 +02:00
|
|
|
static unsigned int root_dev_scan_bus(device_t root, unsigned int max)
|
2004-10-14 23:25:53 +02:00
|
|
|
{
|
|
|
|
return scan_static_bus(root, max);
|
|
|
|
}
|
|
|
|
|
2010-06-17 18:16:56 +02:00
|
|
|
static void root_dev_init(device_t root)
|
2003-09-02 05:36:25 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-06-17 18:16:56 +02:00
|
|
|
static void root_dev_reset(struct bus *bus)
|
2005-07-08 04:49:49 +02:00
|
|
|
{
|
2010-10-18 02:00:57 +02:00
|
|
|
printk(BIOS_INFO, "Resetting board...\n");
|
2005-07-08 04:49:49 +02:00
|
|
|
hard_reset();
|
|
|
|
}
|
|
|
|
|
2004-05-05 23:15:42 +02:00
|
|
|
/**
|
2010-10-17 21:01:48 +02:00
|
|
|
* Default device operation for root device.
|
2004-05-05 23:15:42 +02:00
|
|
|
*
|
2004-11-25 18:37:19 +01:00
|
|
|
* This is the default device operation for root devices. These operations
|
2010-10-17 21:01:48 +02:00
|
|
|
* should be fully usable as is. However the chip_operations::enable_dev()
|
2004-11-25 18:37:19 +01:00
|
|
|
* of a motherboard can override this if you want non-default behavior.
|
2004-05-05 23:15:42 +02:00
|
|
|
*/
|
2003-09-02 05:36:25 +02:00
|
|
|
struct device_operations default_dev_ops_root = {
|
|
|
|
.read_resources = root_dev_read_resources,
|
|
|
|
.set_resources = root_dev_set_resources,
|
2004-10-14 23:25:53 +02:00
|
|
|
.enable_resources = root_dev_enable_resources,
|
|
|
|
.init = root_dev_init,
|
|
|
|
.scan_bus = root_dev_scan_bus,
|
2005-07-08 04:49:49 +02:00
|
|
|
.reset_bus = root_dev_reset,
|
2003-09-02 05:36:25 +02:00
|
|
|
};
|