Server IP : 209.38.156.173 / Your IP : 216.73.216.128 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/1534260/root/usr/src/linux-headers-5.15.0-152/arch/arm/mach-spear/include/mach/ |
Upload File : |
/* * arch/arm/plat-spear/include/plat/uncompress.h * * Serial port stubs for kernel decompress status messages * * Copyright (C) 2009 ST Microelectronics * Viresh Kumar <vireshk@kernel.org> * * This file is licensed under the terms of the GNU General Public * License version 2. This program is licensed "as is" without any * warranty of any kind, whether express or implied. */ #include <linux/io.h> #include <linux/amba/serial.h> #include <mach/spear.h> #ifndef __PLAT_UNCOMPRESS_H #define __PLAT_UNCOMPRESS_H /* * This does not append a newline */ static inline void putc(int c) { void __iomem *base = (void __iomem *)SPEAR_DBG_UART_BASE; while (readl_relaxed(base + UART01x_FR) & UART01x_FR_TXFF) barrier(); writel_relaxed(c, base + UART01x_DR); } static inline void flush(void) { } /* * nothing to do */ #define arch_decomp_setup() #endif /* __PLAT_UNCOMPRESS_H */