2 * Copyright (c) 2016 IBM Corporation.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
14 #include "../include/asm/opal-api.h"
16 #ifdef CONFIG_PPC64_BOOT_WRAPPER
18 /* Global OPAL struct used by opal-call.S */
24 static u32 opal_con_id
;
26 /* see opal-wrappers.S */
27 int64_t opal_console_write(int64_t term_number
, u64
*length
, const u8
*buffer
);
28 int64_t opal_console_read(int64_t term_number
, uint64_t *length
, u8
*buffer
);
29 int64_t opal_console_write_buffer_space(uint64_t term_number
, uint64_t *length
);
30 int64_t opal_console_flush(uint64_t term_number
);
31 int64_t opal_poll_events(uint64_t *outstanding_event_mask
);
33 void opal_kentry(unsigned long fdt_addr
, void *vmlinux_addr
);
35 static int opal_con_open(void)
38 * When OPAL loads the boot kernel it stashes the OPAL base and entry
39 * address in r8 and r9 so the kernel can use the OPAL console
40 * before unflattening the devicetree. While executing the wrapper will
41 * probably trash r8 and r9 so this kentry hook restores them before
42 * entering the decompressed kernel.
44 platform_ops
.kentry
= opal_kentry
;
48 static void opal_con_putc(unsigned char c
)
54 rc
= opal_console_write_buffer_space(opal_con_id
, &olen
);
55 len
= be64_to_cpu(olen
);
58 opal_poll_events(NULL
);
62 olen
= cpu_to_be64(1);
63 opal_console_write(opal_con_id
, &olen
, &c
);
66 static void opal_con_close(void)
68 opal_console_flush(opal_con_id
);
71 static void opal_init(void)
75 opal_node
= finddevice("/ibm,opal");
78 if (getprop(opal_node
, "opal-base-address", &opal
.base
, sizeof(u64
)) < 0)
80 opal
.base
= be64_to_cpu(opal
.base
);
81 if (getprop(opal_node
, "opal-entry-address", &opal
.entry
, sizeof(u64
)) < 0)
83 opal
.entry
= be64_to_cpu(opal
.entry
);
86 int opal_console_init(void *devp
, struct serial_console_data
*scdp
)
91 int n
= getprop(devp
, "reg", &opal_con_id
, sizeof(u32
));
94 opal_con_id
= be32_to_cpu(opal_con_id
);
98 scdp
->open
= opal_con_open
;
99 scdp
->putc
= opal_con_putc
;
100 scdp
->close
= opal_con_close
;
105 int opal_console_init(void *devp
, struct serial_console_data
*scdp
)
109 #endif /* __powerpc64__ */