~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/logic_iomem.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*
  3  * Copyright (C) 2021 Intel Corporation
  4  * Author: johannes@sipsolutions.net
  5  */
  6 #ifndef __LOGIC_IOMEM_H
  7 #define __LOGIC_IOMEM_H
  8 #include <linux/types.h>
  9 #include <linux/ioport.h>
 10 
 11 /**
 12  * struct logic_iomem_ops - emulated IO memory ops
 13  * @read: read an 8, 16, 32 or 64 bit quantity from the given offset,
 14  *      size is given in bytes (1, 2, 4 or 8)
 15  *      (64-bit only necessary if CONFIG_64BIT is set)
 16  * @write: write an 8, 16 32 or 64 bit quantity to the given offset,
 17  *      size is given in bytes (1, 2, 4 or 8)
 18  *      (64-bit only necessary if CONFIG_64BIT is set)
 19  * @set: optional, for memset_io()
 20  * @copy_from: optional, for memcpy_fromio()
 21  * @copy_to: optional, for memcpy_toio()
 22  * @unmap: optional, this region is getting unmapped
 23  */
 24 struct logic_iomem_ops {
 25         unsigned long (*read)(void *priv, unsigned int offset, int size);
 26         void (*write)(void *priv, unsigned int offset, int size,
 27                       unsigned long val);
 28 
 29         void (*set)(void *priv, unsigned int offset, u8 value, int size);
 30         void (*copy_from)(void *priv, void *buffer, unsigned int offset,
 31                           int size);
 32         void (*copy_to)(void *priv, unsigned int offset, const void *buffer,
 33                         int size);
 34 
 35         void (*unmap)(void *priv);
 36 };
 37 
 38 /**
 39  * struct logic_iomem_region_ops - ops for an IO memory handler
 40  * @map: map a range in the registered IO memory region, must
 41  *      fill *ops with the ops and may fill *priv to be passed
 42  *      to the ops. The offset is given as the offset into the
 43  *      registered resource region.
 44  *      The return value is negative for errors, or >= 0 for
 45  *      success. On success, the return value is added to the
 46  *      offset for later ops, to allow for partial mappings.
 47  */
 48 struct logic_iomem_region_ops {
 49         long (*map)(unsigned long offset, size_t size,
 50                     const struct logic_iomem_ops **ops,
 51                     void **priv);
 52 };
 53 
 54 /**
 55  * logic_iomem_add_region - register an IO memory region
 56  * @resource: the resource description for this region
 57  * @ops: the IO memory mapping ops for this resource
 58  */
 59 int logic_iomem_add_region(struct resource *resource,
 60                            const struct logic_iomem_region_ops *ops);
 61 
 62 #endif /* __LOGIC_IOMEM_H */
 63 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php