Greg Kroah-Hartman | e3b3d0f | 2017-11-06 18:11:51 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Greg Kroah-Hartman | a9f96f0 | 2017-11-06 18:11:53 +0100 | [diff] [blame] | 2 | /* Copyright (c) 2010, 2014 The Linux Foundation. All rights reserved. */ |
Daniel Walker | 16c63f8 | 2010-11-30 11:25:39 -0800 | [diff] [blame] | 3 | |
Daniel Walker | 16c63f8 | 2010-11-30 11:25:39 -0800 | [diff] [blame] | 4 | #include <linux/init.h> |
Daniel Walker | 16c63f8 | 2010-11-30 11:25:39 -0800 | [diff] [blame] | 5 | |
Christopher Covington | 4061f49 | 2014-05-22 18:07:18 -0400 | [diff] [blame] | 6 | #include <asm/dcc.h> |
Daniel Walker | 16c63f8 | 2010-11-30 11:25:39 -0800 | [diff] [blame] | 7 | #include <asm/processor.h> |
| 8 | |
| 9 | #include "hvc_console.h" |
| 10 | |
| 11 | /* DCC Status Bits */ |
| 12 | #define DCC_STATUS_RX (1 << 30) |
| 13 | #define DCC_STATUS_TX (1 << 29) |
| 14 | |
Daniel Walker | 16c63f8 | 2010-11-30 11:25:39 -0800 | [diff] [blame] | 15 | static int hvc_dcc_put_chars(uint32_t vt, const char *buf, int count) |
| 16 | { |
| 17 | int i; |
| 18 | |
| 19 | for (i = 0; i < count; i++) { |
| 20 | while (__dcc_getstatus() & DCC_STATUS_TX) |
| 21 | cpu_relax(); |
| 22 | |
Stephen Boyd | bf73bd3 | 2011-02-03 15:48:35 -0800 | [diff] [blame] | 23 | __dcc_putchar(buf[i]); |
Daniel Walker | 16c63f8 | 2010-11-30 11:25:39 -0800 | [diff] [blame] | 24 | } |
| 25 | |
| 26 | return count; |
| 27 | } |
| 28 | |
| 29 | static int hvc_dcc_get_chars(uint32_t vt, char *buf, int count) |
| 30 | { |
| 31 | int i; |
| 32 | |
Stephen Boyd | bf73bd3 | 2011-02-03 15:48:35 -0800 | [diff] [blame] | 33 | for (i = 0; i < count; ++i) |
Daniel Walker | 16c63f8 | 2010-11-30 11:25:39 -0800 | [diff] [blame] | 34 | if (__dcc_getstatus() & DCC_STATUS_RX) |
Stephen Boyd | bf73bd3 | 2011-02-03 15:48:35 -0800 | [diff] [blame] | 35 | buf[i] = __dcc_getchar(); |
| 36 | else |
Daniel Walker | 16c63f8 | 2010-11-30 11:25:39 -0800 | [diff] [blame] | 37 | break; |
Daniel Walker | 16c63f8 | 2010-11-30 11:25:39 -0800 | [diff] [blame] | 38 | |
| 39 | return i; |
| 40 | } |
| 41 | |
Rob Herring | f377775 | 2013-09-24 21:05:58 -0500 | [diff] [blame] | 42 | static bool hvc_dcc_check(void) |
| 43 | { |
| 44 | unsigned long time = jiffies + (HZ / 10); |
| 45 | |
| 46 | /* Write a test character to check if it is handled */ |
| 47 | __dcc_putchar('\n'); |
| 48 | |
| 49 | while (time_is_after_jiffies(time)) { |
| 50 | if (!(__dcc_getstatus() & DCC_STATUS_TX)) |
| 51 | return true; |
| 52 | } |
| 53 | |
| 54 | return false; |
| 55 | } |
| 56 | |
Daniel Walker | 16c63f8 | 2010-11-30 11:25:39 -0800 | [diff] [blame] | 57 | static const struct hv_ops hvc_dcc_get_put_ops = { |
| 58 | .get_chars = hvc_dcc_get_chars, |
| 59 | .put_chars = hvc_dcc_put_chars, |
| 60 | }; |
| 61 | |
| 62 | static int __init hvc_dcc_console_init(void) |
| 63 | { |
Timur Tabi | 3d27070 | 2015-09-12 12:44:38 -0500 | [diff] [blame] | 64 | int ret; |
| 65 | |
Rob Herring | f377775 | 2013-09-24 21:05:58 -0500 | [diff] [blame] | 66 | if (!hvc_dcc_check()) |
| 67 | return -ENODEV; |
| 68 | |
Timur Tabi | 3d27070 | 2015-09-12 12:44:38 -0500 | [diff] [blame] | 69 | /* Returns -1 if error */ |
| 70 | ret = hvc_instantiate(0, 0, &hvc_dcc_get_put_ops); |
| 71 | |
| 72 | return ret < 0 ? -ENODEV : 0; |
Daniel Walker | 16c63f8 | 2010-11-30 11:25:39 -0800 | [diff] [blame] | 73 | } |
| 74 | console_initcall(hvc_dcc_console_init); |
| 75 | |
| 76 | static int __init hvc_dcc_init(void) |
| 77 | { |
Timur Tabi | 3d27070 | 2015-09-12 12:44:38 -0500 | [diff] [blame] | 78 | struct hvc_struct *p; |
| 79 | |
Rob Herring | f377775 | 2013-09-24 21:05:58 -0500 | [diff] [blame] | 80 | if (!hvc_dcc_check()) |
| 81 | return -ENODEV; |
| 82 | |
Timur Tabi | 3d27070 | 2015-09-12 12:44:38 -0500 | [diff] [blame] | 83 | p = hvc_alloc(0, 0, &hvc_dcc_get_put_ops, 128); |
| 84 | |
| 85 | return PTR_ERR_OR_ZERO(p); |
Daniel Walker | 16c63f8 | 2010-11-30 11:25:39 -0800 | [diff] [blame] | 86 | } |
| 87 | device_initcall(hvc_dcc_init); |