1e18c0671af401c112ae2f9f4525f7020b86913b
[coreboot.git] / src / southbridge / amd / cs5530 / cs5530.c
1 /*
2  * This file is part of the LinuxBIOS project.
3  *
4  * Copyright (C) 2007 Uwe Hermann <uwe@hermann-uwe.de>
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; either version 2 of the License, or
9  * (at your option) any later version.
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
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 /* Datasheet:
22  *   - Name: Geode CS5530A I/O Companion Multi-Function South Bridge
23  *   - URL: http://www.national.com/pf/CS/CS5530A.html
24  *   - PDF: http://www.national.com/ds.cgi/CS/CS5530A.pdf
25  *   - Revision: 1.1 (May 2001)
26  */
27
28 /* Datasheet:
29  *   - Name: AMD Geode CS5530A Companion Device Data Book
30  *   - URL: http://www.amd.com/us-en/ConnectivitySolutions/ProductInformation/0,,50_2330_9863_9919,00.html
31  *   - PDF: http://www.amd.com/files/connectivitysolutions/geode/5530a_db_v11.pdf
32  *   - Date: October 2003
33  *   - Publication ID: May 2001, Revision 1.1
34  */
35
36 /* Datasheet:
37  *   - Name: AMD Geode Solutions
38  *           Integrated Processors, Companion Devices, and System Platforms
39  *           (Geode CS5530 I/O Companion Multi-Function South Bridge)
40  *   - URL: http://www.amd.com/us-en/ConnectivitySolutions/ProductInformation/0,,50_2330_9863_9919,00.html
41  *   - PDF: http://www.amd.com/files/connectivitysolutions/geode/5530_db_v41.pdf
42  *   - Date: September 2004
43  */
44
45 /* Note: The CS3350 / CS3350A are mostly identical. This code handles both. */
46
47 #include <console/console.h>
48 #include <device/device.h>
49 #include <device/pci.h>
50 #include "cs5530.h"
51
52 void cs5530_enable(device_t dev)
53 {
54 }
55
56 struct chip_operations southbridge_amd_cs5530_ops = {
57         CHIP_NAME("AMD Geode CS5530/CS5530A I/O Companion Southbridge")
58         .enable_dev = cs5530_enable,
59 };