| /rk3399_ARM-atf/services/std_svc/sdei/ |
| H A D | sdei_main.c | 44 static void init_map(sdei_ev_map_t *map) in init_map() argument 46 map->reg_count = 0; in init_map() 50 static sdei_class_t map_to_class(sdei_ev_map_t *map) in map_to_class() argument 52 return is_event_critical(map) ? SDEI_CRITICAL : SDEI_NORMAL; in map_to_class() 68 sdei_ev_map_t *map; in sdei_cpu_on_init() local 72 for_each_private_map(i, map) { in sdei_cpu_on_init() 73 se = get_event_entry(map); in sdei_cpu_on_init() 103 sdei_ev_map_t *map; in sdei_class_init() local 107 for_each_shared_map(i, map) { in sdei_class_init() 110 assert((ev_num_so_far < 0) || (map->ev_num > ev_num_so_far)); in sdei_class_init() [all …]
|
| H A D | sdei_intr_mgmt.c | 37 sdei_ev_map_t *map; member 92 sdei_ev_map_t *map; in sdei_pe_unmask() local 104 for_each_private_map(i, map) { in sdei_pe_unmask() 105 se = get_event_entry(map); in sdei_pe_unmask() 106 if (is_map_bound(map) && GET_EV_STATE(se, ENABLED)) in sdei_pe_unmask() 107 plat_ic_enable_interrupt(map->intr); in sdei_pe_unmask() 110 for_each_shared_map(i, map) { in sdei_pe_unmask() 111 se = get_event_entry(map); in sdei_pe_unmask() 113 sdei_map_lock(map); in sdei_pe_unmask() 114 if (is_map_bound(map) && GET_EV_STATE(se, ENABLED) && in sdei_pe_unmask() [all …]
|
| H A D | sdei_private.h | 76 for ((_map) = (_mapping)->map, (_i) = 0; \ 98 static inline bool is_event_private(sdei_ev_map_t *map) in is_event_private() argument 100 return ((map->map_flags & BIT_32(SDEI_MAPF_PRIVATE_SHIFT_)) != 0U); in is_event_private() 103 static inline bool is_event_shared(sdei_ev_map_t *map) in is_event_shared() argument 105 return !is_event_private(map); in is_event_shared() 108 static inline bool is_event_critical(sdei_ev_map_t *map) in is_event_critical() argument 110 return ((map->map_flags & BIT_32(SDEI_MAPF_CRITICAL_SHIFT_)) != 0U); in is_event_critical() 113 static inline bool is_event_normal(sdei_ev_map_t *map) in is_event_normal() argument 115 return !is_event_critical(map); in is_event_normal() 118 static inline bool is_event_signalable(sdei_ev_map_t *map) in is_event_signalable() argument [all …]
|
| H A D | sdei_event.c | 13 #define MAP_OFF(_map, _mapping) ((_map) - (_mapping)->map) 22 sdei_entry_t *get_event_entry(const sdei_ev_map_t *map) in get_event_entry() argument 29 if ((map->map_flags & BIT_32(SDEI_MAPF_PRIVATE_SHIFT_)) != 0U) { in get_event_entry() 35 idx = MAP_OFF(map, mapping); in get_event_entry() 48 idx = MAP_OFF(map, mapping); in get_event_entry() 106 sdei_ev_map_t *map; in find_event_map_by_intr() local 115 iterate_mapping(mapping, i, map) { in find_event_map_by_intr() 116 if (map->intr == intr_num) in find_event_map_by_intr() 117 return map; in find_event_map_by_intr() 130 sdei_ev_map_t *map; in find_event_map() local [all …]
|
| /rk3399_ARM-atf/services/std_svc/drtm/ |
| H A D | drtm_res_address_map.c | 44 drtm_memory_region_descriptor_table_t *map = in drtm_build_address_map() local 52 map->revision = DRTM_ADDRESS_MAP_REVISION; in drtm_build_address_map() 53 map->reserved = 0x0000; in drtm_build_address_map() 58 map->region[i].region_address = mmap[i].base_pa; in drtm_build_address_map() 61 map->region[i].region_size_type = 0; in drtm_build_address_map() 63 map->region[i].region_size_type, in drtm_build_address_map() 70 map->region[i].region_size_type, in drtm_build_address_map() 75 map->region[i].region_size_type, in drtm_build_address_map() 78 map->region[i].region_size_type, in drtm_build_address_map() 83 map->region[i].region_size_type, in drtm_build_address_map() [all …]
|
| /rk3399_ARM-atf/plat/arm/board/neoverse_rd/common/ras/ |
| H A D | nrd_ras_common.c | 24 struct nrd_ras_ev_map *map; in nrd_find_ras_event_map_by_intr() local 33 map = nrd_ras_config->ev_map; in nrd_find_ras_event_map_by_intr() 37 if (map->intr == intr_num) in nrd_find_ras_event_map_by_intr() 38 return map; in nrd_find_ras_event_map_by_intr() 40 map++; in nrd_find_ras_event_map_by_intr() 72 struct nrd_ras_ev_map *map; in nrd_ras_platform_setup() local 88 map = nrd_ras_config->ev_map; in nrd_ras_platform_setup() 92 nrd_ras_intr_configure(map->intr, map->intr_type); in nrd_ras_platform_setup() 93 map++; in nrd_ras_platform_setup()
|
| /rk3399_ARM-atf/drivers/brcm/ |
| H A D | ocotp.c | 70 struct otpc_map *map; member 154 uint32_t address = offset / priv->map->word_size; in bcm_otpc_read() 164 for (bytes_read = 0; (bytes_read + priv->map->word_size) <= bytes;) { in bcm_otpc_read() 174 for (i = 0; i < priv->map->otpc_row_size; i++) { in bcm_otpc_read() 176 priv->map->data_r_offset[i]); in bcm_otpc_read() 186 int bcm_otpc_init(struct otpc_map *map) in bcm_otpc_init() argument 192 priv->map = map; in bcm_otpc_init()
|
| /rk3399_ARM-atf/drivers/arm/cci/ |
| H A D | cci.c | 37 static bool validate_cci_map(const int *map) in validate_cci_map() argument 45 slave_if_id = map[i]; in validate_cci_map() 112 void __init cci_init(uintptr_t base, const int *map, in cci_init() argument 115 assert(map != NULL); in cci_init() 119 cci_slave_if_map = map; in cci_init() 131 assert(validate_cci_map(map)); in cci_init()
|
| /rk3399_ARM-atf/lib/zlib/ |
| H A D | zconf.h | 529 #pragma map(deflateInit_,"DEIN") 530 #pragma map(deflateInit2_,"DEIN2") 531 #pragma map(deflateEnd,"DEEND") 532 #pragma map(deflateBound,"DEBND") 533 #pragma map(inflateInit_,"ININ") 534 #pragma map(inflateInit2_,"ININ2") 535 #pragma map(inflateEnd,"INEND") 536 #pragma map(inflateSync,"INSY") 537 #pragma map(inflateSetDictionary,"INSEDI") 538 #pragma map(compressBound,"CMBND") [all …]
|
| /rk3399_ARM-atf/fdts/ |
| H A D | n1sdp-multi-chip.dts | 50 distance-map { 51 compatible = "numa-distance-map-v1"; 82 interrupt-map-mask = <0 0 0 7>; 83 interrupt-map = <0 0 0 1 &gic 0 0 0 649 IRQ_TYPE_LEVEL_HIGH>, 87 msi-map = <0 &its_secondary_pcie 0 0x10000>; 88 iommu-map = <0 &smmu_secondary_pcie 0 0x10000>;
|
| H A D | n1sdp.dtsi | 168 interrupt-map-mask = <0 0 0 7>; 169 interrupt-map = <0 0 0 1 &gic 0 0 0 169 IRQ_TYPE_LEVEL_HIGH>, 173 msi-map = <0 &its_pcie 0 0x10000>; 174 iommu-map = <0 &smmu_pcie 0 0x10000>; 191 interrupt-map-mask = <0 0 0 7>; 192 interrupt-map = <0 0 0 1 &gic 0 0 0 201 IRQ_TYPE_LEVEL_HIGH>, 196 msi-map = <0 &its_ccix 0 0x10000>; 197 iommu-map = <0 &smmu_ccix 0 0x10000>;
|
| H A D | fvp-ve-Cortex-A7x1.dts | 46 no-map; 81 interrupt-map-mask = <0 0 63>; 82 interrupt-map = <0 0 0 &gic GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>,
|
| H A D | morello-soc.dts | 25 no-map; 128 /* The first bank of memory, memory map is actually provided by UEFI. */ 167 interrupt-map-mask = <0 0 0 7>; 168 interrupt-map = <0 0 0 1 &gic 0 0 0 169 IRQ_TYPE_LEVEL_HIGH>, 172 msi-map = <0 &its_pcie 0 0x10000>; 173 iommu-map = <0 &smmu_pcie 0 0x10000>; 203 interrupt-map-mask = <0 0 0 7>; 204 interrupt-map = <0 0 0 1 &gic 0 0 0 201 IRQ_TYPE_LEVEL_HIGH>, 208 msi-map = <0 &its_ccix 0 0x10000>; 209 iommu-map = <0 &smmu_ccix 0 0x10000>;
|
| H A D | fvp-base-gicv23-interrupts.dtsi | 27 * 3. Bit map of event flags 85 interrupt-map = <0 0 0 &gic 0 GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>, 135 interrupt-map = <0 0 0 1 &gic 0 GIC_SPI 168 IRQ_TYPE_LEVEL_HIGH>, 139 msi-map = <0x0 &its 0x0 0x10000>;
|
| H A D | fvp-base-psci-common.dtsi | 96 no-map; 135 interrupt-map-mask = <0 0 63>; 149 interrupt-map-mask = <0x0 0x0 0x0 0x7>; 150 iommu-map = <0x0 &smmu 0x0 0x10000>;
|
| H A D | fvp-ve-Cortex-A5x1.dts | 47 no-map; 146 interrupt-map-mask = <0 0 63>; 147 interrupt-map = <0 0 0 &gic GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>,
|
| H A D | rdaspen-defs.dtsi | 269 cpu-map { \ 284 cpu-map { \ 303 cpu-map { \ 326 cpu-map { \
|
| H A D | morello-fvp.dts | 24 no-map; 58 cpu-map { 110 /* The first bank of memory, memory map is actually provided by UEFI. */
|
| /rk3399_ARM-atf/include/services/ |
| H A D | sdei.h | 89 .map = (_private), \ 93 .map = (_shared), \ 121 sdei_ev_map_t *map; member
|
| /rk3399_ARM-atf/plat/arm/board/tc/fdts/ |
| H A D | tc_spmc_common_sp_manifest.dtsi | 8 * Secure world memory map. For a full view of the DRAM map, see platform_def.h
|
| /rk3399_ARM-atf/tools/renesas/rcar_layout_create/ |
| H A D | makefile | 105 …static -Wl,--build-id=none -T $(MEMORY_DEF_SA0) -o $(OUTPUT_FILE_SA0) -Wl,-Map $(FILE_NAME_SA0).map 114 …static -Wl,--build-id=none -T $(MEMORY_DEF_SA6) -o $(OUTPUT_FILE_SA6) -Wl,-Map $(FILE_NAME_SA6).map 125 $(CL) *.bin *.map *.srec *.elf *.o
|
| /rk3399_ARM-atf/tools/renesas/rzg_layout_create/ |
| H A D | makefile | 102 …static -Wl,--build-id=none -T $(MEMORY_DEF_SA0) -o $(OUTPUT_FILE_SA0) -Wl,-Map $(FILE_NAME_SA0).map 111 …static -Wl,--build-id=none -T $(MEMORY_DEF_SA6) -o $(OUTPUT_FILE_SA6) -Wl,-Map $(FILE_NAME_SA6).map 122 $(CL) *.bin *.map *.srec *.elf *.o
|
| /rk3399_ARM-atf/ |
| H A D | .gitignore | 17 tools/renesas/rcar_layout_create/*.map 21 tools/renesas/rzg_layout_create/*.map
|
| /rk3399_ARM-atf/include/drivers/brcm/ |
| H A D | ocotp.h | 23 int bcm_otpc_init(struct otpc_map *map);
|
| /rk3399_ARM-atf/docs/plat/marvell/ |
| H A D | index.rst | 11 armada/misc/mvebu-a8k-addr-map
|