Release 4.14 arch/h8300/include/asm/io.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _H8300_IO_H
#define _H8300_IO_H
#ifdef __KERNEL__
#include <linux/types.h>
/* H8/300 internal I/O functions */
#define __raw_readb __raw_readb
static inline u8 __raw_readb(const volatile void __iomem *addr)
{
return *(volatile u8 *)addr;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yoshinori Sato | 15 | 65.22% | 1 | 50.00% |
Daniel Lezcano | 8 | 34.78% | 1 | 50.00% |
Total | 23 | 100.00% | 2 | 100.00% |
#define __raw_readw __raw_readw
static inline u16 __raw_readw(const volatile void __iomem *addr)
{
return *(volatile u16 *)addr;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yoshinori Sato | 15 | 65.22% | 1 | 50.00% |
Daniel Lezcano | 8 | 34.78% | 1 | 50.00% |
Total | 23 | 100.00% | 2 | 100.00% |
#define __raw_readl __raw_readl
static inline u32 __raw_readl(const volatile void __iomem *addr)
{
return *(volatile u32 *)addr;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yoshinori Sato | 15 | 65.22% | 1 | 50.00% |
Daniel Lezcano | 8 | 34.78% | 1 | 50.00% |
Total | 23 | 100.00% | 2 | 100.00% |
#define __raw_writeb __raw_writeb
static inline void __raw_writeb(u8 b, const volatile void __iomem *addr)
{
*(volatile u8 *)addr = b;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yoshinori Sato | 19 | 70.37% | 1 | 50.00% |
Daniel Lezcano | 8 | 29.63% | 1 | 50.00% |
Total | 27 | 100.00% | 2 | 100.00% |
#define __raw_writew __raw_writew
static inline void __raw_writew(u16 b, const volatile void __iomem *addr)
{
*(volatile u16 *)addr = b;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yoshinori Sato | 19 | 70.37% | 1 | 50.00% |
Daniel Lezcano | 8 | 29.63% | 1 | 50.00% |
Total | 27 | 100.00% | 2 | 100.00% |
#define __raw_writel __raw_writel
static inline void __raw_writel(u32 b, const volatile void __iomem *addr)
{
*(volatile u32 *)addr = b;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yoshinori Sato | 19 | 70.37% | 1 | 50.00% |
Daniel Lezcano | 8 | 29.63% | 1 | 50.00% |
Total | 27 | 100.00% | 2 | 100.00% |
static inline void ctrl_bclr(int b, void __iomem *addr)
{
if (__builtin_constant_p(b))
__asm__("bclr %1,%0" : "+WU"(*(u8 *)addr): "i"(b));
else
__asm__("bclr %w1,%0" : "+WU"(*(u8 *)addr): "r"(b));
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yoshinori Sato | 23 | 92.00% | 3 | 75.00% |
Daniel Lezcano | 2 | 8.00% | 1 | 25.00% |
Total | 25 | 100.00% | 4 | 100.00% |
static inline void ctrl_bset(int b, void __iomem *addr)
{
if (__builtin_constant_p(b))
__asm__("bset %1,%0" : "+WU"(*(u8 *)addr): "i"(b));
else
__asm__("bset %w1,%0" : "+WU"(*(u8 *)addr): "r"(b));
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yoshinori Sato | 23 | 92.00% | 3 | 75.00% |
Daniel Lezcano | 2 | 8.00% | 1 | 25.00% |
Total | 25 | 100.00% | 4 | 100.00% |
#include <asm-generic/io.h>
#endif /* __KERNEL__ */
#endif /* _H8300_IO_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yoshinori Sato | 164 | 66.40% | 3 | 50.00% |
Daniel Lezcano | 79 | 31.98% | 1 | 16.67% |
Guenter Roeck | 3 | 1.21% | 1 | 16.67% |
Greg Kroah-Hartman | 1 | 0.40% | 1 | 16.67% |
Total | 247 | 100.00% | 6 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.