mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 16:37:30 +00:00
Merge branch 'master' of /home/wd/git/u-boot/custodians
This commit is contained in:
commit
812083d34d
3 changed files with 6 additions and 0 deletions
|
@ -71,6 +71,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define COMMON_INS(func, ops) \
|
#define COMMON_INS(func, ops) \
|
||||||
|
.section .text._ins##func; \
|
||||||
ENTRY(_ins##func) \
|
ENTRY(_ins##func) \
|
||||||
P0 = R0; /* P0 = port */ \
|
P0 = R0; /* P0 = port */ \
|
||||||
CLI_OUTER; /* 3 instructions before first read access */ \
|
CLI_OUTER; /* 3 instructions before first read access */ \
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
|
|
||||||
.align 2
|
.align 2
|
||||||
|
|
||||||
|
.section .text._outsl
|
||||||
ENTRY(_outsl)
|
ENTRY(_outsl)
|
||||||
P0 = R0; /* P0 = port */
|
P0 = R0; /* P0 = port */
|
||||||
P1 = R1; /* P1 = address */
|
P1 = R1; /* P1 = address */
|
||||||
|
@ -23,6 +24,7 @@ ENTRY(_outsl)
|
||||||
RTS;
|
RTS;
|
||||||
ENDPROC(_outsl)
|
ENDPROC(_outsl)
|
||||||
|
|
||||||
|
.section .text._outsw
|
||||||
ENTRY(_outsw)
|
ENTRY(_outsw)
|
||||||
P0 = R0; /* P0 = port */
|
P0 = R0; /* P0 = port */
|
||||||
P1 = R1; /* P1 = address */
|
P1 = R1; /* P1 = address */
|
||||||
|
@ -34,6 +36,7 @@ ENTRY(_outsw)
|
||||||
RTS;
|
RTS;
|
||||||
ENDPROC(_outsw)
|
ENDPROC(_outsw)
|
||||||
|
|
||||||
|
.section .text._outsb
|
||||||
ENTRY(_outsb)
|
ENTRY(_outsb)
|
||||||
P0 = R0; /* P0 = port */
|
P0 = R0; /* P0 = port */
|
||||||
P1 = R1; /* P1 = address */
|
P1 = R1; /* P1 = address */
|
||||||
|
@ -45,6 +48,7 @@ ENTRY(_outsb)
|
||||||
RTS;
|
RTS;
|
||||||
ENDPROC(_outsb)
|
ENDPROC(_outsb)
|
||||||
|
|
||||||
|
.section .text._outsw_8
|
||||||
ENTRY(_outsw_8)
|
ENTRY(_outsw_8)
|
||||||
P0 = R0; /* P0 = port */
|
P0 = R0; /* P0 = port */
|
||||||
P1 = R1; /* P1 = address */
|
P1 = R1; /* P1 = address */
|
||||||
|
|
|
@ -147,6 +147,7 @@ SECTIONS
|
||||||
*(.dynbss)
|
*(.dynbss)
|
||||||
*(.bss .bss.*)
|
*(.bss .bss.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
|
. = ALIGN(4);
|
||||||
} >ram_data
|
} >ram_data
|
||||||
__bss_vma = ADDR(.bss);
|
__bss_vma = ADDR(.bss);
|
||||||
__bss_len = SIZEOF(.bss);
|
__bss_len = SIZEOF(.bss);
|
||||||
|
|
Loading…
Reference in a new issue