drivers: video: rockchip: fix building eDP and LVDS drivers
[oweals/u-boot.git] / doc / README.bedbug
index ed7bc122ca718053083ab0644764fe35bb2912ca..35e9d2706ab0a45cc5ce0e3ef7d6e11a7c127977 100644 (file)
@@ -2,7 +2,7 @@ BEDBUG Support for U-Boot
 --------------------------
 
 These changes implement the bedbug (emBEDded deBUGger) debugger in U-Boot.
 --------------------------
 
 These changes implement the bedbug (emBEDded deBUGger) debugger in U-Boot.
-A specific implementation is made for the IBM405 processor but other flavors
+A specific implementation is made for the AMCC 405 processor but other flavors
 can be easily implemented.
 
 #####################
 can be easily implemented.
 
 #####################
@@ -18,25 +18,19 @@ can be easily implemented.
 ./common/board.c
        Added call to initialize debugger on startup.
 
 ./common/board.c
        Added call to initialize debugger on startup.
 
-./cpu/ppc4xx/Makefile
+./arch/powerpc/cpu/ppc4xx/Makefile
        Added bedbug_405.c to the Makefile.
 
        Added bedbug_405.c to the Makefile.
 
-./cpu/ppc4xx/start.S
+./arch/powerpc/cpu/ppc4xx/start.S
        Added code to handle the debug exception (0x2000) on the 405.
        Also added code to handle critical exceptions since the debug
        is treated as critical on the 405.
 
        Added code to handle the debug exception (0x2000) on the 405.
        Also added code to handle critical exceptions since the debug
        is treated as critical on the 405.
 
-./cpu/ppc4xx/traps.c
+./arch/powerpc/cpu/ppc4xx/traps.c
        Added more detailed output for the program exception to tell
        if it is an illegal instruction, privileged instruction or
        a trap. Also added debug trap handler.
 
        Added more detailed output for the program exception to tell
        if it is an illegal instruction, privileged instruction or
        a trap. Also added debug trap handler.
 
-./include/cmd_confdefs.h
-       Added definition of CFG_CMD_BEDBUG.
-
-./include/config_WALNUT405.h
-       Added CFG_CMD_BEDBUG to the CONFIG_COMMANDS for the WALNUT.
-
 ./include/ppc_asm.tmpl
        Added code to handle critical exceptions
 
 ./include/ppc_asm.tmpl
        Added code to handle critical exceptions
 
@@ -57,9 +51,8 @@ can be easily implemented.
        hardware breakpoints and stepping through code.  These
        routines are common to all PowerPC processors.
 
        hardware breakpoints and stepping through code.  These
        routines are common to all PowerPC processors.
 
-./cpu/ppc4xx/bedbug_405.c
-       IBM PPC405 specific debugger routines.
-
+./arch/powerpc/cpu/ppc4xx/bedbug_405.c
+       AMCC  PPC405 specific debugger routines.
 
 
 Bedbug support for the MPC860
 
 
 Bedbug support for the MPC860
@@ -70,20 +63,16 @@ Changes:
        common/cmd_bedbug.c
                Added call to initialize 860 debugger.
 
        common/cmd_bedbug.c
                Added call to initialize 860 debugger.
 
-       cpu/mpc8xx/Makefile
+       arch/powerpc/cpu/mpc8xx/Makefile
                Added new file "bedbug_860.c" to the makefile
 
                Added new file "bedbug_860.c" to the makefile
 
-       cpu/mpc8xx/start.S
+       arch/powerpc/cpu/mpc8xx/start.S
                Added handler for InstructionBreakpoint (0xfd00)
 
                Added handler for InstructionBreakpoint (0xfd00)
 
-       cpu/mpc8xx/traps.c
+       arch/powerpc/cpu/mpc8xx/traps.c
                Added new routine DebugException()
 
                Added new routine DebugException()
 
-       include/config_MBX.h
-               Added CFG_CMD_BEDBUG to CONFIG_COMMANDS define
-
-
 New Files:
 
 New Files:
 
-       cpu/mpc8xx/bedbug_860.c
+       arch/powerpc/cpu/mpc8xx/bedbug_860.c
                CPU-specific routines for 860 debug registers.
                CPU-specific routines for 860 debug registers.