]> nv-tegra.nvidia Code Review - 3rdparty/ote_partner/tlk.git/blobdiff - secure_monitor/platform/tegra/monitor/debug.c
[FOSS_TLK] Remove secure_monitor folder
[3rdparty/ote_partner/tlk.git] / secure_monitor / platform / tegra / monitor / debug.c
diff --git a/secure_monitor/platform/tegra/monitor/debug.c b/secure_monitor/platform/tegra/monitor/debug.c
deleted file mode 100644 (file)
index 705ca0d..0000000
+++ /dev/null
@@ -1,122 +0,0 @@
-/*
- * Copyright (c) 2008 Travis Geiselbrecht
- * Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files
- * (the "Software"), to deal in the Software without restriction,
- * including without limitation the rights to use, copy, modify, merge,
- * publish, distribute, sublicense, and/or sell copies of the Software,
- * and to permit persons to whom the Software is furnished to do so,
- * subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
- * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
- * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
- * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
- * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- */
-#include <debug.h>
-#include <platform/memmap.h>
-
-static unsigned int disable_debug;
-
-#define TEGRA_UART_NONE        0x0
-
-static uintptr_t uart_base[] = {
-       TEGRA_UART_NONE,
-       TEGRA_UARTA_BASE,
-       TEGRA_UARTB_BASE,
-       TEGRA_UARTC_BASE,
-       TEGRA_UARTD_BASE,
-       TEGRA_UARTE_BASE
-};
-
-static unsigned int debug_port;
-
-#define UART_RHR       0
-#define UART_THR       0
-#define UART_LSR       5
-
-static inline void write_uart_reg(int port, uint reg, unsigned char data)
-{
-       *(volatile unsigned char *)(uart_base[port] + (reg << 2)) = data;
-}
-
-static inline unsigned char read_uart_reg(int port, uint reg)
-{
-       return *(volatile unsigned char *)(uart_base[port] + (reg << 2));
-}
-
-static int uart_putc(int port, char c )
-{
-       while (!(read_uart_reg(port, UART_LSR) & (1<<6)))
-               ;
-       write_uart_reg(port, UART_THR, c);
-       return 0;
-}
-
-int uart_getc(int port, bool wait)
-{
-       if (wait) {
-               while (!(read_uart_reg(port, UART_LSR) & (1<<0)))
-                       ;
-       } else {
-               if (!(read_uart_reg(port, UART_LSR) & (1<<0)))
-                       return -1;
-       }
-       return read_uart_reg(port, UART_RHR);
-}
-
-void platform_dputc(char c)
-{
-       if (disable_debug || (debug_port == TEGRA_UART_NONE))
-               return;
-
-       if (c == '\n') {
-               uart_putc(debug_port, '\r');
-       } else if (c == '\0') {
-               return;
-       }
-       uart_putc(debug_port, c);
-}
-
-int platform_dgetc(char *c, bool wait)
-{
-       int _c;
-
-       if (disable_debug || (debug_port == TEGRA_UART_NONE))
-               return -1;
-
-       if ((_c = uart_getc(debug_port, false)) < 0)
-               return -1;
-
-       *c = _c;
-       return 0;
-}
-
-void platform_init_debug_port(unsigned int dbg_port)
-{
-       debug_port = dbg_port;
-}
-
-void platform_halt(void)
-{
-       dprintf(ALWAYS, "HALT: spinning forever...\n");
-       for(;;);
-}
-
-void platform_disable_debug_intf(void)
-{
-       disable_debug = 1;
-}
-
-void platform_enable_debug_intf(void)
-{
-       disable_debug = 0;
-}