/kernel/linux/linux-5.10/drivers/base/regmap/ |
D | regcache.c | 26 static int regcache_hw_init(struct regmap *map) in regcache_hw_init() argument 34 if (!map->num_reg_defaults_raw) in regcache_hw_init() 38 for (count = 0, i = 0; i < map->num_reg_defaults_raw; i++) in regcache_hw_init() 39 if (regmap_readable(map, i * map->reg_stride) && in regcache_hw_init() 40 !regmap_volatile(map, i * map->reg_stride)) in regcache_hw_init() 45 map->cache_bypass = true; in regcache_hw_init() 49 map->num_reg_defaults = count; in regcache_hw_init() 50 map->reg_defaults = kmalloc_array(count, sizeof(struct reg_default), in regcache_hw_init() 52 if (!map->reg_defaults) in regcache_hw_init() 55 if (!map->reg_defaults_raw) { in regcache_hw_init() [all …]
|
D | regmap.c | 3 // Register map access API 36 static inline bool regmap_should_log(struct regmap *map) in regmap_should_log() argument 38 return (map->dev && strcmp(dev_name(map->dev), LOG_DEVICE) == 0); in regmap_should_log() 41 static inline bool regmap_should_log(struct regmap *map) { return false; } in regmap_should_log() argument 45 static int _regmap_update_bits(struct regmap *map, unsigned int reg, 74 bool regmap_check_range_table(struct regmap *map, unsigned int reg, in regmap_check_range_table() argument 90 bool regmap_writeable(struct regmap *map, unsigned int reg) in regmap_writeable() argument 92 if (map->max_register && reg > map->max_register) in regmap_writeable() 95 if (map->writeable_reg) in regmap_writeable() 96 return map->writeable_reg(map->dev, reg); in regmap_writeable() [all …]
|
D | regmap-debugfs.c | 3 // Register map access API - debugfs 19 struct regmap *map; member 38 struct regmap *map = file->private_data; in regmap_name_read_file() local 47 if (map->dev && map->dev->driver) in regmap_name_read_file() 48 name = map->dev->driver->name; in regmap_name_read_file() 67 static void regmap_debugfs_free_dump_cache(struct regmap *map) in regmap_debugfs_free_dump_cache() argument 71 while (!list_empty(&map->debugfs_off_cache)) { in regmap_debugfs_free_dump_cache() 72 c = list_first_entry(&map->debugfs_off_cache, in regmap_debugfs_free_dump_cache() 80 static bool regmap_printable(struct regmap *map, unsigned int reg) in regmap_printable() argument 82 if (regmap_precious(map, reg)) in regmap_printable() [all …]
|
D | trace.h | 18 TP_PROTO(struct regmap *map, unsigned int reg, 21 TP_ARGS(map, reg, val), 24 __string( name, regmap_name(map) ) 30 __assign_str(name, regmap_name(map)); 42 TP_PROTO(struct regmap *map, unsigned int reg, 45 TP_ARGS(map, reg, val) 51 TP_PROTO(struct regmap *map, unsigned int reg, 54 TP_ARGS(map, reg, val) 60 TP_PROTO(struct regmap *map, unsigned int reg, 63 TP_ARGS(map, reg, val) [all …]
|
/kernel/linux/linux-5.10/tools/perf/util/ |
D | map.h | 18 struct map { struct 32 u64 (*map_ip)(struct map *, u64); argument 34 u64 (*unmap_ip)(struct map *, u64); argument 43 struct kmap *__map__kmap(struct map *map); argument 44 struct kmap *map__kmap(struct map *map); 45 struct maps *map__kmaps(struct map *map); 47 static inline u64 map__map_ip(struct map *map, u64 ip) in map__map_ip() argument 49 return ip - map->start + map->pgoff; in map__map_ip() 52 static inline u64 map__unmap_ip(struct map *map, u64 ip) in map__unmap_ip() argument 54 return ip + map->start - map->pgoff; in map__unmap_ip() [all …]
|
D | map.c | 13 #include "map.h" 28 static void __maps__insert(struct maps *maps, struct map *map); 116 void map__init(struct map *map, u64 start, u64 end, u64 pgoff, struct dso *dso) in map__init() argument 118 map->start = start; in map__init() 119 map->end = end; in map__init() 120 map->pgoff = pgoff; in map__init() 121 map->reloc = 0; in map__init() 122 map->dso = dso__get(dso); in map__init() 123 map->map_ip = map__map_ip; in map__init() 124 map->unmap_ip = map__unmap_ip; in map__init() [all …]
|
D | hashmap.c | 4 * Generic non-thread safe hash map implementation. 38 void hashmap__init(struct hashmap *map, hashmap_hash_fn hash_fn, in hashmap__init() argument 41 map->hash_fn = hash_fn; in hashmap__init() 42 map->equal_fn = equal_fn; in hashmap__init() 43 map->ctx = ctx; in hashmap__init() 45 map->buckets = NULL; in hashmap__init() 46 map->cap = 0; in hashmap__init() 47 map->cap_bits = 0; in hashmap__init() 48 map->sz = 0; in hashmap__init() 55 struct hashmap *map = malloc(sizeof(struct hashmap)); in hashmap__new() local [all …]
|
D | mmap.c | 39 size_t mmap__mmap_len(struct mmap *map) in mmap__mmap_len() argument 41 return perf_mmap__mmap_len(&map->core); in mmap__mmap_len() 71 static int perf_mmap__aio_enabled(struct mmap *map) in perf_mmap__aio_enabled() argument 73 return map->aio.nr_cblocks > 0; in perf_mmap__aio_enabled() 77 static int perf_mmap__aio_alloc(struct mmap *map, int idx) in perf_mmap__aio_alloc() argument 79 map->aio.data[idx] = mmap(NULL, mmap__mmap_len(map), PROT_READ|PROT_WRITE, in perf_mmap__aio_alloc() 81 if (map->aio.data[idx] == MAP_FAILED) { in perf_mmap__aio_alloc() 82 map->aio.data[idx] = NULL; in perf_mmap__aio_alloc() 89 static void perf_mmap__aio_free(struct mmap *map, int idx) in perf_mmap__aio_free() argument 91 if (map->aio.data[idx]) { in perf_mmap__aio_free() [all …]
|
/kernel/linux/linux-5.10/include/linux/mtd/ |
D | map.h | 22 #define map_bankwidth(map) 1 argument 23 #define map_bankwidth_is_1(map) (map_bankwidth(map) == 1) argument 24 #define map_bankwidth_is_large(map) (0) argument 25 #define map_words(map) (1) argument 28 #define map_bankwidth_is_1(map) (0) argument 34 # define map_bankwidth(map) ((map)->bankwidth) argument 36 # define map_bankwidth(map) 2 argument 37 # define map_bankwidth_is_large(map) (0) argument 38 # define map_words(map) (1) argument 40 #define map_bankwidth_is_2(map) (map_bankwidth(map) == 2) argument [all …]
|
/kernel/linux/linux-5.10/drivers/mtd/maps/ |
D | pci.c | 7 * Generic PCI memory map driver. We support the following boards: 17 #include <linux/mtd/map.h> 23 int (*init)(struct pci_dev *dev, struct map_pci_info *map); 24 void (*exit)(struct pci_dev *dev, struct map_pci_info *map); 25 unsigned long (*translate)(struct map_pci_info *map, unsigned long ofs); 30 struct map_info map; member 32 void (*exit)(struct pci_dev *dev, struct map_pci_info *map); 33 unsigned long (*translate)(struct map_pci_info *map, unsigned long ofs); 39 struct map_pci_info *map = (struct map_pci_info *)_map; in mtd_pci_read8() local 41 val.x[0]= readb(map->base + map->translate(map, ofs)); in mtd_pci_read8() [all …]
|
D | amd76xrom.c | 15 #include <linux/mtd/map.h> 42 struct map_info map; member 71 struct amd76xrom_map_info *map, *scratch; in amd76xrom_cleanup() local 82 list_for_each_entry_safe(map, scratch, &window->maps, list) { in amd76xrom_cleanup() 83 if (map->rsrc.parent) { in amd76xrom_cleanup() 84 release_resource(&map->rsrc); in amd76xrom_cleanup() 86 mtd_device_unregister(map->mtd); in amd76xrom_cleanup() 87 map_destroy(map->mtd); in amd76xrom_cleanup() 88 list_del(&map->list); in amd76xrom_cleanup() 89 kfree(map); in amd76xrom_cleanup() [all …]
|
D | ichxrom.c | 15 #include <linux/mtd/map.h> 47 struct map_info map; member 59 struct ichxrom_map_info *map, *scratch; in ichxrom_cleanup() local 70 list_for_each_entry_safe(map, scratch, &window->maps, list) { in ichxrom_cleanup() 71 if (map->rsrc.parent) in ichxrom_cleanup() 72 release_resource(&map->rsrc); in ichxrom_cleanup() 73 mtd_device_unregister(map->mtd); in ichxrom_cleanup() 74 map_destroy(map->mtd); in ichxrom_cleanup() 75 list_del(&map->list); in ichxrom_cleanup() 76 kfree(map); in ichxrom_cleanup() [all …]
|
D | ck804xrom.c | 18 #include <linux/mtd/map.h> 46 struct map_info map; member 84 struct ck804xrom_map_info *map, *scratch; in ck804xrom_cleanup() local 94 list_for_each_entry_safe(map, scratch, &window->maps, list) { in ck804xrom_cleanup() 95 if (map->rsrc.parent) in ck804xrom_cleanup() 96 release_resource(&map->rsrc); in ck804xrom_cleanup() 98 mtd_device_unregister(map->mtd); in ck804xrom_cleanup() 99 map_destroy(map->mtd); in ck804xrom_cleanup() 100 list_del(&map->list); in ck804xrom_cleanup() 101 kfree(map); in ck804xrom_cleanup() [all …]
|
/kernel/linux/linux-5.10/net/sctp/ |
D | tsnmap.c | 29 static void sctp_tsnmap_update(struct sctp_tsnmap *map); 30 static void sctp_tsnmap_find_gap_ack(unsigned long *map, __u16 off, 32 static int sctp_tsnmap_grow(struct sctp_tsnmap *map, u16 size); 35 struct sctp_tsnmap *sctp_tsnmap_init(struct sctp_tsnmap *map, __u16 len, in sctp_tsnmap_init() argument 38 if (!map->tsn_map) { in sctp_tsnmap_init() 39 map->tsn_map = kzalloc(len>>3, gfp); in sctp_tsnmap_init() 40 if (map->tsn_map == NULL) in sctp_tsnmap_init() 43 map->len = len; in sctp_tsnmap_init() 45 bitmap_zero(map->tsn_map, map->len); in sctp_tsnmap_init() 49 map->base_tsn = initial_tsn; in sctp_tsnmap_init() [all …]
|
/kernel/linux/linux-5.10/tools/lib/bpf/ |
D | hashmap.c | 4 * Generic non-thread safe hash map implementation. 38 void hashmap__init(struct hashmap *map, hashmap_hash_fn hash_fn, in hashmap__init() argument 41 map->hash_fn = hash_fn; in hashmap__init() 42 map->equal_fn = equal_fn; in hashmap__init() 43 map->ctx = ctx; in hashmap__init() 45 map->buckets = NULL; in hashmap__init() 46 map->cap = 0; in hashmap__init() 47 map->cap_bits = 0; in hashmap__init() 48 map->sz = 0; in hashmap__init() 55 struct hashmap *map = malloc(sizeof(struct hashmap)); in hashmap__new() local [all …]
|
/kernel/linux/linux-5.10/tools/lib/perf/ |
D | mmap.c | 16 void perf_mmap__init(struct perf_mmap *map, struct perf_mmap *prev, in perf_mmap__init() argument 19 map->fd = -1; in perf_mmap__init() 20 map->overwrite = overwrite; in perf_mmap__init() 21 map->unmap_cb = unmap_cb; in perf_mmap__init() 22 refcount_set(&map->refcnt, 0); in perf_mmap__init() 24 prev->next = map; in perf_mmap__init() 27 size_t perf_mmap__mmap_len(struct perf_mmap *map) in perf_mmap__mmap_len() argument 29 return map->mask + 1 + page_size; in perf_mmap__mmap_len() 32 int perf_mmap__mmap(struct perf_mmap *map, struct perf_mmap_param *mp, in perf_mmap__mmap() argument 35 map->prev = 0; in perf_mmap__mmap() [all …]
|
D | threadmap.c | 10 static void perf_thread_map__reset(struct perf_thread_map *map, int start, int nr) in perf_thread_map__reset() argument 12 size_t size = (nr - start) * sizeof(map->map[0]); in perf_thread_map__reset() 14 memset(&map->map[start], 0, size); in perf_thread_map__reset() 15 map->err_thread = -1; in perf_thread_map__reset() 18 struct perf_thread_map *perf_thread_map__realloc(struct perf_thread_map *map, int nr) in perf_thread_map__realloc() argument 20 size_t size = sizeof(*map) + sizeof(map->map[0]) * nr; in perf_thread_map__realloc() 21 int start = map ? map->nr : 0; in perf_thread_map__realloc() 23 map = realloc(map, size); in perf_thread_map__realloc() 27 if (map) in perf_thread_map__realloc() 28 perf_thread_map__reset(map, start, nr); in perf_thread_map__realloc() [all …]
|
/kernel/linux/linux-5.10/tools/bpf/bpftool/Documentation/ |
D | bpftool-map.rst | 2 bpftool-map 13 **bpftool** [*OPTIONS*] **map** *COMMAND* 21 MAP COMMANDS 24 | **bpftool** **map** { **show** | **list** } [*MAP*] 25 | **bpftool** **map create** *FILE* **type** *TYPE* **key** *KEY_SIZE* **value** *VALUE_SIZE* \ 26 | **entries** *MAX_ENTRIES* **name** *NAME* [**flags** *FLAGS*] [**inner_map** *MAP*] \ 28 | **bpftool** **map dump** *MAP* 29 | **bpftool** **map update** *MAP* [**key** *DATA*] [**value** *VALUE*] [*UPDATE_FLAGS*] 30 | **bpftool** **map lookup** *MAP* [**key** *DATA*] 31 | **bpftool** **map getnext** *MAP* [**key** *DATA*] [all …]
|
/kernel/linux/linux-5.10/drivers/mtd/lpddr/ |
D | qinfo_probe.c | 16 #include <linux/mtd/map.h> 20 static int lpddr_chip_setup(struct map_info *map, struct lpddr_private *lpddr); 21 struct mtd_info *lpddr_probe(struct map_info *map); 22 static struct lpddr_private *lpddr_probe_chip(struct map_info *map); 23 static int lpddr_pfow_present(struct map_info *map, 44 static long lpddr_get_qinforec_pos(struct map_info *map, char *id_str) in lpddr_get_qinforec_pos() argument 48 int bankwidth = map_bankwidth(map) * 8; in lpddr_get_qinforec_pos() 58 printk(KERN_ERR"%s qinfo id string is wrong! \n", map->name); in lpddr_get_qinforec_pos() 63 static uint16_t lpddr_info_query(struct map_info *map, char *id_str) in lpddr_info_query() argument 66 int bits_per_chip = map_bankwidth(map) * 8; in lpddr_info_query() [all …]
|
/kernel/linux/linux-5.10/kernel/bpf/ |
D | local_storage.c | 20 struct bpf_map map; member 27 static struct bpf_cgroup_storage_map *map_to_storage(struct bpf_map *map) in map_to_storage() argument 29 return container_of(map, struct bpf_cgroup_storage_map, map); in map_to_storage() 32 static bool attach_type_isolated(const struct bpf_map *map) in attach_type_isolated() argument 34 return map->key_size == sizeof(struct bpf_cgroup_storage_key); in attach_type_isolated() 37 static int bpf_cgroup_storage_key_cmp(const struct bpf_cgroup_storage_map *map, in bpf_cgroup_storage_key_cmp() argument 40 if (attach_type_isolated(&map->map)) { in bpf_cgroup_storage_key_cmp() 65 cgroup_storage_lookup(struct bpf_cgroup_storage_map *map, in cgroup_storage_lookup() argument 68 struct rb_root *root = &map->root; in cgroup_storage_lookup() 72 spin_lock_bh(&map->lock); in cgroup_storage_lookup() [all …]
|
D | arraymap.c | 25 for (i = 0; i < array->map.max_entries; i++) { in bpf_array_free_percpu() 36 for (i = 0; i < array->map.max_entries; i++) { in bpf_array_alloc_percpu() 138 /* allocate all map elements and zero-initialize them */ in array_map_alloc() 158 array->map.bypass_spec_v1 = bypass_spec_v1; in array_map_alloc() 160 /* copy mandatory map attributes */ in array_map_alloc() 161 bpf_map_init_from_attr(&array->map, attr); in array_map_alloc() 162 bpf_map_charge_move(&array->map.memory, &mem); in array_map_alloc() 166 bpf_map_charge_finish(&array->map.memory); in array_map_alloc() 171 return &array->map; in array_map_alloc() 175 static void *array_map_lookup_elem(struct bpf_map *map, void *key) in array_map_lookup_elem() argument [all …]
|
/kernel/linux/linux-5.10/kernel/trace/ |
D | tracing_map.c | 3 * tracing_map - lock-free map for tracing 7 * tracing_map implementation inspired by lock-free map algorithms 37 * tracing_map_add_sum_field() when the tracing map was set up. 51 * call to tracing_map_add_sum_field() when the tracing map was set 69 * tracing_map_add_var() when the tracing map was set up. 84 * when the tracing map was set up. 98 * call to tracing_map_add_var() when the tracing map was set 116 * tracing_map_add_var() when the tracing map was set up. The reset 202 static int tracing_map_add_field(struct tracing_map *map, in tracing_map_add_field() argument 207 if (map->n_fields < TRACING_MAP_FIELDS_MAX) { in tracing_map_add_field() [all …]
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/prog_tests/ |
D | hashmap.c | 48 struct hashmap *map; in test_hashmap_generic() local 50 map = hashmap__new(hash_fn, equal_fn, NULL); in test_hashmap_generic() 51 if (CHECK(IS_ERR(map), "hashmap__new", in test_hashmap_generic() 52 "failed to create map: %ld\n", PTR_ERR(map))) in test_hashmap_generic() 59 err = hashmap__update(map, k, v, &oldk, &oldv); in test_hashmap_generic() 65 err = hashmap__add(map, k, v); in test_hashmap_generic() 67 err = hashmap__set(map, k, v, &oldk, &oldv); in test_hashmap_generic() 77 if (CHECK(!hashmap__find(map, k, &oldv), "elem_find", in test_hashmap_generic() 85 if (CHECK(hashmap__size(map) != ELEM_CNT, "hashmap__size", in test_hashmap_generic() 86 "invalid map size: %zu\n", hashmap__size(map))) in test_hashmap_generic() [all …]
|
/kernel/linux/linux-5.10/drivers/xen/ |
D | gntdev.c | 65 static int unmap_grant_pages(struct gntdev_grant_map *map, 81 struct gntdev_grant_map *map; in gntdev_print_maps() local 84 list_for_each_entry(map, &priv->maps, next) in gntdev_print_maps() 86 map->index, map->count, in gntdev_print_maps() 87 map->index == text_index && text ? text : ""); in gntdev_print_maps() 91 static void gntdev_free_map(struct gntdev_grant_map *map) in gntdev_free_map() argument 93 if (map == NULL) in gntdev_free_map() 97 if (map->dma_vaddr) { in gntdev_free_map() 100 args.dev = map->dma_dev; in gntdev_free_map() 101 args.coherent = !!(map->dma_flags & GNTDEV_DMA_FLAG_COHERENT); in gntdev_free_map() [all …]
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/progs/ |
D | map_ptr_kern.c | 42 static inline int check_bpf_map_fields(struct bpf_map *map, __u32 key_size, in check_bpf_map_fields() argument 45 VERIFY(map->map_type == g_map_type); in check_bpf_map_fields() 46 VERIFY(map->key_size == key_size); in check_bpf_map_fields() 47 VERIFY(map->value_size == value_size); in check_bpf_map_fields() 48 VERIFY(map->max_entries == max_entries); in check_bpf_map_fields() 49 VERIFY(map->id > 0); in check_bpf_map_fields() 50 VERIFY(map->memory.pages > 0); in check_bpf_map_fields() 98 struct bpf_map map; member 115 struct bpf_map *map = (struct bpf_map *)&m_hash; in check_hash() local 118 VERIFY(check_default_noinline(&hash->map, map)); in check_hash() [all …]
|