Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\iomap.c Create Date:2022-07-28 06:48:47
Last Modify:2022-05-18 11:45:09 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:These are the "repeat MMIO read/write" functions.* Note the "__raw" accesses, since we don't want to* convert to CPU byte order. We write in "IO byte* order" (we also don't have IO barriers).

Proto:static inline void mmio_insb(void __iomem *addr, u8 *dst, int count)

Type:void

Parameter:

TypeParameterName
void __iomem *addr
u8 *dst
intcount
289  When --count >= 0 cycle
290  data = __raw_readb(addr)
291  dst = data
292  dst++
Caller
NameDescribe
ioread8_rep