first round name simplification. drop the <component>_ prefix.

the prefix was introduced in the early v2 tree many years ago
because our old build system "newconfig" could not handle two files with
the same name in different paths like /path/to/usb.c and
/another/path/to/usb.c correctly. Only one of the files would end up
being compiled into the final image.

Since Kconfig (actually since shortly before we switched to Kconfig) we
don't suffer from that problem anymore. So we could drop the sb700_
prefix from all those filenames (or, the <componentname>_ prefix in general)

- makes it easier to fork off a new chipset
- makes it easier to diff against other chipsets
- storing redundant information in filenames seems wrong

Signed-off-by: <stepan@coresystems.de>

Acked-by: Patrick Georgi <patrick@georgi-clan.de>
Acked-by: Peter Stuge <peter@stuge.se>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6149 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
stepan
2010-12-08 05:42:47 +00:00
committed by Stefan Reinauer
parent 1bc5ccac51
commit 836ae29ee3
455 changed files with 503 additions and 510 deletions

View File

@@ -1,11 +1,11 @@
driver-y += amd8111.c
driver-y += amd8111_usb.c
driver-y += amd8111_lpc.c
driver-y += amd8111_ide.c
driver-y += amd8111_acpi.c
driver-y += amd8111_usb2.c
driver-y += amd8111_ac97.c
driver-y += amd8111_nic.c
driver-y += amd8111_pci.c
driver-y += amd8111_smbus.c
ramstage-y += amd8111_reset.c
driver-y += usb.c
driver-y += lpc.c
driver-y += ide.c
driver-y += acpi.c
driver-y += usb2.c
driver-y += ac97.c
driver-y += nic.c
driver-y += pci.c
driver-y += smbus.c
ramstage-y += reset.c

View File

@@ -1,4 +1,4 @@
#include "southbridge/amd/amd8111/amd8111_enable_rom.c"
#include "southbridge/amd/amd8111/enable_rom.c"
static void bootblock_southbridge_init(void)
{

View File

@@ -1 +1 @@
driver-y += amd8131_bridge.c
driver-y += bridge.c

View File

@@ -1 +1 @@
driver-y += amd8132_bridge.c
driver-y += bridge.c

View File

@@ -1 +1 @@
driver-y += amd8151_agp3.c
driver-y += agp3.c

View File

@@ -19,7 +19,7 @@
##
driver-y += cs5530.c
driver-y += cs5530_isa.c
driver-y += cs5530_ide.c
driver-y += cs5530_vga.c
driver-y += cs5530_pirq.c
driver-y += isa.c
driver-y += ide.c
driver-y += vga.c
driver-y += pirq.c

View File

@@ -1,4 +1,4 @@
driver-y += cs5535.c
#driver-y += cs5535_pci.c
#driver-y += cs5535_ide.c
#driver-y += pci.c
#driver-y += ide.c
ramstage-y += chipsetinit.c

View File

@@ -1,4 +1,4 @@
#include "cs5535_smbus.h"
#include "smbus.h"
#define SMBUS_IO_BASE 0x6000

View File

@@ -18,5 +18,5 @@
##
driver-y += cs5536.c
driver-y += cs5536_ide.c
driver-y += cs5536_pirq.c
driver-y += ide.c
driver-y += pirq.c

View File

@@ -1,5 +1,5 @@
driver-y += rs690.c
driver-y += rs690_cmn.c
driver-y += rs690_pcie.c
driver-y += rs690_ht.c
driver-y += rs690_gfx.c
driver-y += cmn.c
driver-y += pcie.c
driver-y += ht.c
driver-y += gfx.c

View File

@@ -1,5 +1,5 @@
driver-y += rs780.c
driver-y += rs780_cmn.c
driver-y += rs780_pcie.c
driver-y += rs780_ht.c
driver-y += rs780_gfx.c
driver-y += cmn.c
driver-y += pcie.c
driver-y += ht.c
driver-y += gfx.c

View File

@@ -21,7 +21,7 @@
#define CONFIG_NORTHBRIDGE_AMD_AMDFAM10 0
#endif
#include "rs780_rev.h"
#include "rev.h"
#define NBHTIU_INDEX 0x94 /* Note: It is different with RS690, whose HTIU index is 0xA8 */
#define NBMISC_INDEX 0x60

View File

@@ -23,7 +23,7 @@
#include <stdint.h>
#include <device/pci_ids.h>
#include "chip.h"
#include "rs780_rev.h"
#include "rev.h"
#define NBMISC_INDEX 0x60
#define NBHTIU_INDEX 0x94

View File

@@ -1,11 +1,11 @@
driver-y += sb600.c
driver-y += sb600_usb.c
driver-y += sb600_lpc.c
driver-y += sb600_sm.c
driver-y += sb600_ide.c
driver-y += sb600_sata.c
driver-y += sb600_hda.c
driver-y += sb600_ac97.c
driver-y += sb600_pci.c
ramstage-y += sb600_reset.c
romstage-y += sb600_enable_usbdebug.c
driver-y += usb.c
driver-y += lpc.c
driver-y += sm.c
driver-y += ide.c
driver-y += sata.c
driver-y += hda.c
driver-y += ac97.c
driver-y += pci.c
ramstage-y += reset.c
romstage-y += enable_usbdebug.c

View File

@@ -18,7 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "southbridge/amd/sb600/sb600_enable_rom.c"
#include "southbridge/amd/sb600/enable_rom.c"
static void bootblock_southbridge_init(void)
{

View File

@@ -20,7 +20,7 @@
#include <reset.h>
#include <arch/cpu.h>
#include "sb600.h"
#include "sb600_smbus.c"
#include "smbus.c"
#define SMBUS_IO_BASE 0x1000 /* Is it a temporary SMBus I/O base address? */
/*SIZE 0x40 */

View File

@@ -30,7 +30,7 @@
#include <arch/ioapic.h>
#include <stdlib.h>
#include "sb600.h"
#include "sb600_smbus.c"
#include "smbus.c"
#define NMI_OFF 0

View File

@@ -17,7 +17,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "sb600_smbus.h"
#include "smbus.h"
static inline void smbus_delay(void)
{

View File

@@ -1,10 +1,10 @@
driver-y += sb700.c
driver-y += sb700_usb.c
driver-y += sb700_lpc.c
driver-y += sb700_sm.c
driver-y += sb700_ide.c
driver-y += sb700_sata.c
driver-y += sb700_hda.c
driver-y += sb700_pci.c
ramstage-y += sb700_reset.c
romstage-y += sb700_enable_usbdebug.c
driver-y += usb.c
driver-y += lpc.c
driver-y += sm.c
driver-y += ide.c
driver-y += sata.c
driver-y += hda.c
driver-y += pci.c
ramstage-y += reset.c
romstage-y += enable_usbdebug.c

View File

@@ -23,7 +23,7 @@
#include <reset.h>
#include <arch/cpu.h>
#include "sb700.h"
#include "sb700_smbus.c"
#include "smbus.c"
#define SMBUS_IO_BASE 0x6000 /* Is it a temporary SMBus I/O base address? */
/*SIZE 0x40 */

View File

@@ -30,7 +30,7 @@
#include <arch/ioapic.h>
#include <stdlib.h>
#include "sb700.h"
#include "sb700_smbus.c"
#include "smbus.c"
#define NMI_OFF 0

View File

@@ -20,7 +20,7 @@
#ifndef _SB700_SMBUS_C_
#define _SB700_SMBUS_C_
#include "sb700_smbus.h"
#include "smbus.h"
static inline void smbus_delay(void)
{

View File

@@ -1 +1 @@
driver-y += bcm21000_pcie.c
driver-y += pcie.c

View File

@@ -1,3 +1,3 @@
driver-y += bcm5780_nic.c
driver-y += bcm5780_pcix.c
driver-y += bcm5780_pcie.c
driver-y += nic.c
driver-y += pcix.c
driver-y += pcie.c

View File

@@ -1,7 +1,7 @@
driver-y += bcm5785.c
driver-y += bcm5785_usb.c
driver-y += bcm5785_lpc.c
driver-y += bcm5785_sb_pci_main.c
driver-y += bcm5785_ide.c
driver-y += bcm5785_sata.c
ramstage-y += bcm5785_reset.c
driver-y += usb.c
driver-y += lpc.c
driver-y += sb_pci_main.c
driver-y += ide.c
driver-y += sata.c
ramstage-y += reset.c

View File

@@ -18,7 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "bcm5785_enable_rom.c"
#include "enable_rom.c"
static void bootblock_southbridge_init(void)
{

View File

@@ -18,7 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "bcm5785_smbus.h"
#include "smbus.h"
#define SMBUS_IO_BASE 0x1000

View File

@@ -30,7 +30,7 @@
#include <arch/io.h>
#include <device/smbus.h>
#include "bcm5785.h"
#include "bcm5785_smbus.h"
#include "smbus.h"
#define NMI_OFF 0

Some files were not shown because too many files have changed in this diff Show More