Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
776bd2b6
Unverified
Commit
776bd2b6
authored
6 years ago
by
Dimitris Papastamos
Committed by
GitHub
6 years ago
Browse files
Options
Download
Plain Diff
Merge pull request #1630 from antonio-nino-diaz-arm/an/fix-console
pl011: cnds: cbmem: 16550: Fix comments
parents
02126db8
65199dc8
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
drivers/arm/pl011/aarch32/pl011_console.S
+3
-2
drivers/arm/pl011/aarch32/pl011_console.S
drivers/arm/pl011/aarch64/pl011_console.S
+3
-2
drivers/arm/pl011/aarch64/pl011_console.S
drivers/cadence/uart/aarch64/cdns_console.S
+3
-2
drivers/cadence/uart/aarch64/cdns_console.S
drivers/coreboot/cbmem_console/aarch64/cbmem_console.S
+2
-2
drivers/coreboot/cbmem_console/aarch64/cbmem_console.S
drivers/ti/uart/aarch64/16550_console.S
+3
-2
drivers/ti/uart/aarch64/16550_console.S
with
14 additions
and
10 deletions
+14
-10
drivers/arm/pl011/aarch32/pl011_console.S
View file @
776bd2b6
...
...
@@ -89,8 +89,9 @@ endfunc console_pl011_core_init
.
globl
console_pl011_register
/
*
-------------------------------------------------------
*
init
console_pl011_register
(
console_pl011_t
*
console
,
*
uintptr_t
base
,
uint32_t
clk
,
uint32_t
baud
)
*
int
console_pl011_register
(
uintptr_t
baseaddr
,
*
uint32_t
clock
,
uint32_t
baud
,
*
console_pl011_t
*
console
)
;
*
Function
to
initialize
and
register
a
new
PL011
*
console
.
Storage
passed
in
for
the
console
struct
*
*
must
*
be
persistent
(
i
.
e
.
not
from
the
stack
)
.
...
...
This diff is collapsed.
Click to expand it.
drivers/arm/pl011/aarch64/pl011_console.S
View file @
776bd2b6
...
...
@@ -85,8 +85,9 @@ endfunc console_pl011_core_init
.
globl
console_pl011_register
/
*
-----------------------------------------------
*
int
console_pl011_register
(
console_pl011_t
*
console
,
uintptr_t
base
,
uint32_t
clk
,
uint32_t
baud
)
*
int
console_pl011_register
(
uintptr_t
baseaddr
,
*
uint32_t
clock
,
uint32_t
baud
,
*
console_pl011_t
*
console
)
;
*
Function
to
initialize
and
register
a
new
PL011
*
console
.
Storage
passed
in
for
the
console
struct
*
*
must
*
be
persistent
(
i
.
e
.
not
from
the
stack
)
.
...
...
This diff is collapsed.
Click to expand it.
drivers/cadence/uart/aarch64/cdns_console.S
View file @
776bd2b6
...
...
@@ -54,8 +54,9 @@ endfunc console_cdns_core_init
.
globl
console_cdns_register
/
*
-----------------------------------------------
*
int
console_cdns_register
(
console_cdns_t
*
console
,
uintptr_t
base
,
uint32_t
clk
,
uint32_t
baud
)
*
int
console_cdns_register
(
uint64_t
baseaddr
,
*
uint32_t
clock
,
uint32_t
baud
,
*
console_cdns_t
*
console
)
;
*
Function
to
initialize
and
register
a
new
CDNS
*
console
.
Storage
passed
in
for
the
console
struct
*
*
must
*
be
persistent
(
i
.
e
.
not
from
the
stack
)
.
...
...
This diff is collapsed.
Click to expand it.
drivers/coreboot/cbmem_console/aarch64/cbmem_console.S
View file @
776bd2b6
...
...
@@ -19,8 +19,8 @@
.
globl
console_cbmc_flush
/
*
-----------------------------------------------
*
int
console_cbmc_register
(
console_cbmc_t
*
consol
e
,
*
uintptr_t
bas
e
)
*
int
console_cbmc_register
(
uintptr_t
bas
e
,
*
console_cbmc_t
*
consol
e
)
;
*
Registers
a
new
CBMEM
console
instance
.
Reads
*
the
size
field
from
the
buffer
header
structure
*
and
stores
it
in
our
console_cbmc_t
struct
,
so
...
...
This diff is collapsed.
Click to expand it.
drivers/ti/uart/aarch64/16550_console.S
View file @
776bd2b6
...
...
@@ -87,8 +87,9 @@ endfunc console_16550_core_init
.
globl
console_16550_register
/
*
-----------------------------------------------
*
int
console_16550_register
(
console_16550_t
*
console
,
uintptr_t
base
,
uint32_t
clk
,
uint32_t
baud
)
*
int
console_16550_register
(
uintptr_t
baseaddr
,
*
uint32_t
clock
,
uint32_t
baud
,
*
console_16550_t
*
console
)
;
*
Function
to
initialize
and
register
a
new
16550
*
console
.
Storage
passed
in
for
the
console
struct
*
*
must
*
be
persistent
(
i
.
e
.
not
from
the
stack
)
.
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help