%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11585/task/11585/root/usr/src/linux-headers-4.4.0-210/arch/arm/include/debug/ |
Upload File : |
/* * Copyright (C) 2013 Pengutronix * Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #define UARTn_CMD 0x000c #define UARTn_CMD_TXEN 0x0004 #define UARTn_STATUS 0x0010 #define UARTn_STATUS_TXC 0x0020 #define UARTn_STATUS_TXBL 0x0040 #define UARTn_TXDATA 0x0034 .macro addruart, rx, tmp, tmp2 ldr \rx, =(CONFIG_DEBUG_UART_PHYS) /* * enable TX. The driver might disable it to save energy. We * don't care about disabling at the end as during debug power * consumption isn't that important. */ ldr \tmp, =(UARTn_CMD_TXEN) str \tmp, [\rx, #UARTn_CMD] .endm .macro senduart,rd,rx strb \rd, [\rx, #UARTn_TXDATA] .endm .macro waituart,rd,rx 1001: ldr \rd, [\rx, #UARTn_STATUS] tst \rd, #UARTn_STATUS_TXBL beq 1001b .endm .macro busyuart,rd,rx 1001: ldr \rd, [\rx, UARTn_STATUS] tst \rd, #UARTn_STATUS_TXC bne 1001b .endm