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
23b6fa4e
Commit
23b6fa4e
authored
6 years ago
by
Alexei Colin
Browse files
Options
Download
Email Patches
Plain Diff
cadence: uart: comply to console_register prototype
Signed-off-by:
Alexei Colin
<
acolin@isi.edu
>
parent
9d068f66
master
v2.5
v2.5-rc1
v2.5-rc0
v2.4
v2.4-rc2
v2.4-rc1
v2.4-rc0
v2.3
v2.3-rc2
v2.3-rc1
v2.3-rc0
v2.2
v2.2-rc2
v2.2-rc1
v2.2-rc0
v2.1
v2.1-rc1
v2.1-rc0
arm_cca_v0.2
arm_cca_v0.1
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
drivers/cadence/uart/aarch64/cdns_console.S
+6
-4
drivers/cadence/uart/aarch64/cdns_console.S
include/drivers/cadence/cdns_uart.h
+1
-1
include/drivers/cadence/cdns_uart.h
with
7 additions
and
5 deletions
+7
-5
drivers/cadence/uart/aarch64/cdns_console.S
View file @
23b6fa4e
...
...
@@ -56,21 +56,23 @@ endfunc console_cdns_core_init
.
globl
console_cdns_register
/
*
-----------------------------------------------
*
int
console_cdns_register
(
uint
64
_t
baseaddr
,
*
int
console_cdns_register
(
uint
ptr
_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
)
.
*
In
:
x0
-
UART
register
base
address
*
x1
-
pointer
to
empty
console_cdns_t
struct
*
w1
-
UART
clock
in
Hz
*
w2
-
Baud
rate
*
x3
-
pointer
to
empty
console_16550_t
struct
*
Out
:
return
1
on
success
,
0
on
error
*
Clobber
list
:
x0
,
x1
,
x2
,
x6
,
x7
,
x14
*
-----------------------------------------------
*/
func
console_cdns_register
mov
x7
,
x30
mov
x6
,
x
1
mov
x6
,
x
3
cbz
x6
,
register_fail
str
x0
,
[
x6
,
#
CONSOLE_T_CDNS_BASE
]
...
...
@@ -78,7 +80,7 @@ func console_cdns_register
cbz
x0
,
register_fail
mov
x0
,
x6
mov
x30
,
v
7
mov
x30
,
x
7
finish_console_register
cdns
putc
=
1
,
getc
=
1
,
flush
=
1
register_fail
:
...
...
This diff is collapsed.
Click to expand it.
include/drivers/cadence/cdns_uart.h
View file @
23b6fa4e
...
...
@@ -42,7 +42,7 @@ typedef struct {
* for the lifetime of the console, such as a global or static local variable.
* Its contents will be reinitialized from scratch.
*/
int
console_cdns_register
(
uint
64
_t
baseaddr
,
uint32_t
clock
,
uint32_t
baud
,
int
console_cdns_register
(
uint
ptr
_t
baseaddr
,
uint32_t
clock
,
uint32_t
baud
,
console_cdns_t
*
console
);
#endif
/*__ASSEMBLY__*/
...
...
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