Renamed the pi-specific functions to be a bit cleaner.
authorDavid Given <dg@cowlark.com>
Sat, 25 May 2013 23:22:39 +0000 (00:22 +0100)
committerDavid Given <dg@cowlark.com>
Sat, 25 May 2013 23:22:39 +0000 (00:22 +0100)
--HG--
branch : dtrg-videocore
rename : plat/rpi/libsys/phys_to_user.s => plat/rpi/libsys/pi_phys_to_user.s
rename : plat/rpi/libsys/uart.s => plat/rpi/libsys/pi_uart.s
rename : plat/rpi/libsys/user_to_phys.s => plat/rpi/libsys/pi_user_to_phys.s

plat/rpi/build.mk
plat/rpi/include/pi.h
plat/rpi/libsys/pi_phys_to_user.s [moved from plat/rpi/libsys/phys_to_user.s with 89% similarity]
plat/rpi/libsys/pi_uart.s [moved from plat/rpi/libsys/uart.s with 98% similarity]
plat/rpi/libsys/pi_user_to_phys.s [moved from plat/rpi/libsys/user_to_phys.s with 89% similarity]

index eb1cd03..7bbf007 100644 (file)
@@ -19,9 +19,9 @@ platform-headers := \
 platform-libsys := \
        _hol0.s \
        errno.s \
-       phys_to_user.s \
-       user_to_phys.s \
-       uart.s \
+       pi_phys_to_user.s \
+       pi_user_to_phys.s \
+       pi_uart.s \
        creat.c \
        close.c \
        open.c \
index a69cdd8..b5c5428 100644 (file)
@@ -9,13 +9,13 @@
 #define PI_H
 
 /* Initialise the mini UART (only do this if running on bare metal! */
-extern void init_uart(void);
+extern void pi_init_uart(void);
 
 /* Converts a pointer from a physical address to a user address. */
-extern void* phys_to_user(void* ptr);
+extern void* pi_phys_to_user(void* ptr);
 
 /* Converts a pointer from a user address to a physical address. */
-extern void* user_to_phys(void* ptr);
+extern void* pi_user_to_phys(void* ptr);
 
 #endif
 
similarity index 89%
rename from plat/rpi/libsys/phys_to_user.s
rename to plat/rpi/libsys/pi_phys_to_user.s
index 649b19b..d67cac8 100644 (file)
@@ -12,8 +12,8 @@
 
 ! Transforms a physical address into a user address.
 
-.define _phys_to_user
-_phys_to_user:
+.define _pi_phys_to_user
+_pi_phys_to_user:
        ld r0, 0 (sp)
        sub r0, gp
        b lr
similarity index 98%
rename from plat/rpi/libsys/uart.s
rename to plat/rpi/libsys/pi_uart.s
index b12f2ef..caa9f6f 100644 (file)
@@ -38,8 +38,8 @@ AUX_MU_BAUD_REG = 0x7e215068
 
 ! Sets up the mini UART for use as a console.
 
-.define _init_uart
-_init_uart:
+.define _pi_init_uart
+_pi_init_uart:
        ! Configure TX and RX GPIO pins for Mini Uart function.
        mov     r1, #GPFSEL1
        ld      r0, (r1)
similarity index 89%
rename from plat/rpi/libsys/user_to_phys.s
rename to plat/rpi/libsys/pi_user_to_phys.s
index 7b988fd..dd62c06 100644 (file)
@@ -12,8 +12,8 @@
 
 ! Transforms a user address into a physical address.
 
-.define _user_to_phys
-_user_to_phys:
+.define _pi_user_to_phys
+_pi_user_to_phys:
        ld r0, 0 (sp)
        add r0, gp
        b lr