Long ago we agreed on kicking the _direct appendix because everything in
coreboot is direct. This patch does it. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5586 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
56394484e3
commit
da3237376f
|
@ -10,7 +10,7 @@ initobj-y += vtxprintf.o
|
|||
initobj-$(CONFIG_USE_DCACHE_RAM) += console.o
|
||||
|
||||
driver-$(CONFIG_CONSOLE_SERIAL8250) += uart8250_console.o
|
||||
driver-$(CONFIG_USBDEBUG_DIRECT) += usbdebug_direct_console.o
|
||||
driver-$(CONFIG_USBDEBUG_DIRECT) += usbdebug_console.o
|
||||
driver-$(CONFIG_CONSOLE_VGA) += vga_console.o
|
||||
driver-$(CONFIG_CONSOLE_BTEXT) += btext_console.o
|
||||
driver-$(CONFIG_CONSOLE_BTEXT) += font-8x16.o
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
#include <string.h>
|
||||
#include <console/console.h>
|
||||
#include <usbdebug_direct.h>
|
||||
#include <usbdebug.h>
|
||||
#include <pc80/mc146818rtc.h>
|
||||
|
||||
static struct ehci_debug_info dbg_info;
|
|
@ -29,7 +29,7 @@
|
|||
#include <cpu/intel/hyperthreading.h>
|
||||
#include <cpu/x86/cache.h>
|
||||
#include <cpu/x86/mtrr.h>
|
||||
#include <usbdebug_direct.h>
|
||||
#include <usbdebug.h>
|
||||
|
||||
static const uint32_t microcode_updates[] = {
|
||||
/* Dummy terminator */
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#include <cpu/x86/lapic.h>
|
||||
#include <cpu/intel/microcode.h>
|
||||
#include <cpu/x86/cache.h>
|
||||
#include <usbdebug_direct.h>
|
||||
#include <usbdebug.h>
|
||||
|
||||
static const uint32_t microcode_updates[] = {
|
||||
#include "microcode-737-MU16b11c.h"
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include <cpu/intel/hyperthreading.h>
|
||||
#include <cpu/x86/cache.h>
|
||||
#include <cpu/x86/mtrr.h>
|
||||
#include <usbdebug_direct.h>
|
||||
#include <usbdebug.h>
|
||||
|
||||
static const uint32_t microcode_updates[] = {
|
||||
#include "microcode-1624-m206e839.h"
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include <cpu/intel/hyperthreading.h>
|
||||
#include <cpu/x86/cache.h>
|
||||
#include <cpu/x86/mtrr.h>
|
||||
#include <usbdebug_direct.h>
|
||||
#include <usbdebug.h>
|
||||
|
||||
static const uint32_t microcode_updates[] = {
|
||||
#include "microcode-2129-m206f257.h"
|
||||
|
|
|
@ -23,7 +23,8 @@ initobj-y += cbfs.o
|
|||
initobj-y += lzma.o
|
||||
#initobj-y += lzmadecode.o
|
||||
|
||||
obj-$(CONFIG_USBDEBUG_DIRECT) += usbdebug_direct.o
|
||||
obj-$(CONFIG_USBDEBUG_DIRECT) += usbdebug.o
|
||||
|
||||
obj-$(CONFIG_COMPRESSED_PAYLOAD_LZMA) += lzma.o
|
||||
|
||||
obj-$(CONFIG_BOOTSPLASH) += jpeg.o
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
|
||||
#include <usb_ch9.h>
|
||||
#include <ehci.h>
|
||||
#include <usbdebug_direct.h>
|
||||
#include <usbdebug.h>
|
||||
|
||||
#define USB_DEBUG_DEVNUM 127
|
||||
|
|
@ -40,7 +40,7 @@
|
|||
#if CONFIG_USBDEBUG_DIRECT
|
||||
#define DBGP_DEFAULT 0
|
||||
#include "southbridge/intel/i82801gx/i82801gx_usb_debug.c"
|
||||
#include "pc80/usbdebug_direct_serial.c"
|
||||
#include "pc80/usbdebug_serial.c"
|
||||
#endif
|
||||
|
||||
#include "lib/ramtest.c"
|
||||
|
|
|
@ -55,8 +55,8 @@
|
|||
|
||||
#include <console/console.h>
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
#include "southbridge/sis/sis966/sis966_enable_usbdebug_direct.c"
|
||||
#include "pc80/usbdebug_direct_serial.c"
|
||||
#include "southbridge/sis/sis966/sis966_enable_usbdebug.c"
|
||||
#include "pc80/usbdebug_serial.c"
|
||||
#endif
|
||||
#include "lib/ramtest.c"
|
||||
|
||||
|
|
|
@ -53,8 +53,8 @@
|
|||
|
||||
#include <console/console.h>
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
#include "southbridge/nvidia/mcp55/mcp55_enable_usbdebug_direct.c"
|
||||
#include "pc80/usbdebug_direct_serial.c"
|
||||
#include "southbridge/nvidia/mcp55/mcp55_enable_usbdebug.c"
|
||||
#include "pc80/usbdebug_serial.c"
|
||||
#endif
|
||||
#include "lib/ramtest.c"
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
#if CONFIG_USBDEBUG_DIRECT
|
||||
#define DBGP_DEFAULT 1
|
||||
#include "southbridge/intel/i82801gx/i82801gx_usb_debug.c"
|
||||
#include "pc80/usbdebug_direct_serial.c"
|
||||
#include "pc80/usbdebug_serial.c"
|
||||
#endif
|
||||
|
||||
#include "lib/ramtest.c"
|
||||
|
|
|
@ -50,9 +50,9 @@
|
|||
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
#define DBGP_DEFAULT 1
|
||||
#include <usbdebug_direct.h>
|
||||
#include <usbdebug.h>
|
||||
#include "southbridge/intel/i82801gx/i82801gx_usb_debug.c"
|
||||
#include "pc80/usbdebug_direct_serial.c"
|
||||
#include "pc80/usbdebug_serial.c"
|
||||
#endif
|
||||
|
||||
#include "lib/ramtest.c"
|
||||
|
|
|
@ -57,8 +57,8 @@
|
|||
|
||||
#include <console/console.h>
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
#include "southbridge/nvidia/mcp55/mcp55_enable_usbdebug_direct.c"
|
||||
#include "pc80/usbdebug_direct_serial.c"
|
||||
#include "southbridge/nvidia/mcp55/mcp55_enable_usbdebug.c"
|
||||
#include "pc80/usbdebug_serial.c"
|
||||
#endif
|
||||
#include "lib/ramtest.c"
|
||||
#include <cpu/amd/model_fxx_rev.h>
|
||||
|
|
|
@ -46,8 +46,8 @@
|
|||
#include "option_table.h"
|
||||
#include <console/console.h>
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
#include "southbridge/nvidia/mcp55/mcp55_enable_usbdebug_direct.c"
|
||||
#include "pc80/usbdebug_direct_serial.c"
|
||||
#include "southbridge/nvidia/mcp55/mcp55_enable_usbdebug.c"
|
||||
#include "pc80/usbdebug_serial.c"
|
||||
#endif
|
||||
#include "lib/ramtest.c"
|
||||
|
||||
|
|
|
@ -53,8 +53,8 @@
|
|||
|
||||
#include <console/console.h>
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
#include "southbridge/nvidia/mcp55/mcp55_enable_usbdebug_direct.c"
|
||||
#include "pc80/usbdebug_direct_serial.c"
|
||||
#include "southbridge/nvidia/mcp55/mcp55_enable_usbdebug.c"
|
||||
#include "pc80/usbdebug_serial.c"
|
||||
#endif
|
||||
#include "lib/ramtest.c"
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
#if CONFIG_USBDEBUG_DIRECT
|
||||
#define DBGP_DEFAULT 1
|
||||
#include "southbridge/intel/i82801gx/i82801gx_usb_debug.c"
|
||||
#include "pc80/usbdebug_direct_serial.c"
|
||||
#include "pc80/usbdebug_serial.c"
|
||||
#endif
|
||||
|
||||
#include "lib/ramtest.c"
|
||||
|
|
|
@ -53,8 +53,8 @@
|
|||
|
||||
#include <console/console.h>
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
#include "southbridge/nvidia/mcp55/mcp55_enable_usbdebug_direct.c"
|
||||
#include "pc80/usbdebug_direct_serial.c"
|
||||
#include "southbridge/nvidia/mcp55/mcp55_enable_usbdebug.c"
|
||||
#include "pc80/usbdebug_serial.c"
|
||||
#endif
|
||||
#include "lib/ramtest.c"
|
||||
|
||||
|
|
|
@ -46,8 +46,8 @@
|
|||
#include "option_table.h"
|
||||
#include <console/console.h>
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
#include "southbridge/nvidia/mcp55/mcp55_enable_usbdebug_direct.c"
|
||||
#include "pc80/usbdebug_direct_serial.c"
|
||||
#include "southbridge/nvidia/mcp55/mcp55_enable_usbdebug.c"
|
||||
#include "pc80/usbdebug_serial.c"
|
||||
#endif
|
||||
#include "lib/ramtest.c"
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include "../lib/usbdebug_direct.c"
|
||||
#include "../lib/usbdebug.c"
|
||||
|
||||
static void early_usbdebug_direct_init(void)
|
||||
{
|
|
@ -22,7 +22,7 @@
|
|||
#include <device/pci.h>
|
||||
#include <device/pci_ids.h>
|
||||
#include <device/pci_ops.h>
|
||||
#include <usbdebug_direct.h>
|
||||
#include <usbdebug.h>
|
||||
#include <arch/io.h>
|
||||
#include "sb600.h"
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include <device/pci.h>
|
||||
#include <device/pci_ids.h>
|
||||
#include <device/pci_ops.h>
|
||||
#include <usbdebug_direct.h>
|
||||
#include <usbdebug.h>
|
||||
#include <arch/io.h>
|
||||
#include "sb700.h"
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <device/pci_ids.h>
|
||||
#include "i82801gx.h"
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
#include <usbdebug_direct.h>
|
||||
#include <usbdebug.h>
|
||||
#endif
|
||||
#include <arch/io.h>
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <device/pci_ops.h>
|
||||
#include "mcp55.h"
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
#include <usbdebug_direct.h>
|
||||
#include <usbdebug.h>
|
||||
#endif
|
||||
|
||||
extern struct ehci_debug_info dbg_info;
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include <arch/io.h>
|
||||
#include "sis966.h"
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
#include <usbdebug_direct.h>
|
||||
#include <usbdebug.h>
|
||||
#endif
|
||||
|
||||
extern struct ehci_debug_info dbg_info;
|
||||
|
|
Loading…
Reference in New Issue