Release 4.11 arch/arm/mach-iop33x/include/mach/uncompress.h
/*
* arch/arm/mach-iop33x/include/mach/uncompress.h
*/
#include <asm/types.h>
#include <asm/mach-types.h>
#include <linux/serial_reg.h>
#include <mach/hardware.h>
volatile u32 *uart_base;
#define TX_DONE (UART_LSR_TEMT | UART_LSR_THRE)
static inline void putc(char c)
{
while ((uart_base[UART_LSR] & TX_DONE) != TX_DONE)
barrier();
uart_base[UART_TX] = c;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds | 21 | 63.64% | 1 | 25.00% |
Dave Jiang | 5 | 15.15% | 1 | 25.00% |
Russell King | 4 | 12.12% | 1 | 25.00% |
Lennert Buytenhek | 3 | 9.09% | 1 | 25.00% |
Total | 33 | 100.00% | 4 | 100.00% |
static inline void flush(void)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds | 4 | 50.00% | 1 | 50.00% |
Russell King | 4 | 50.00% | 1 | 50.00% |
Total | 8 | 100.00% | 2 | 100.00% |
static __inline__ void __arch_decomp_setup(unsigned long arch_id)
{
if (machine_is_iq80331() || machine_is_iq80332())
uart_base = (volatile u32 *)IOP33X_UART0_PHYS;
else
uart_base = (volatile u32 *)0xfe800000;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Dave Jiang | 33 | 86.84% | 2 | 50.00% |
Lennert Buytenhek | 5 | 13.16% | 2 | 50.00% |
Total | 38 | 100.00% | 4 | 100.00% |
/*
* nothing to do
*/
#define arch_decomp_setup() __arch_decomp_setup(arch_id)
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Dave Jiang | 51 | 47.66% | 2 | 22.22% |
Linus Torvalds | 30 | 28.04% | 1 | 11.11% |
Russell King | 12 | 11.21% | 3 | 33.33% |
Lennert Buytenhek | 11 | 10.28% | 2 | 22.22% |
Eli Carter | 3 | 2.80% | 1 | 11.11% |
Total | 107 | 100.00% | 9 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.