Home
last modified time | relevance | path

Searched refs:entries (Results 1 – 25 of 66) sorted by relevance

123

/rk3399_rockchip-uboot/arch/x86/cpu/qemu/
H A De820.c12 unsigned install_e820_map(unsigned max_entries, struct e820entry *entries) in install_e820_map() argument
14 entries[0].addr = 0; in install_e820_map()
15 entries[0].size = ISA_START_ADDRESS; in install_e820_map()
16 entries[0].type = E820_RAM; in install_e820_map()
18 entries[1].addr = ISA_START_ADDRESS; in install_e820_map()
19 entries[1].size = ISA_END_ADDRESS - ISA_START_ADDRESS; in install_e820_map()
20 entries[1].type = E820_RESERVED; in install_e820_map()
27 entries[2].addr = ISA_END_ADDRESS; in install_e820_map()
28 entries[2].size = gd->relocaddr - TOTAL_MALLOC_LEN - ISA_END_ADDRESS; in install_e820_map()
29 entries[2].type = E820_RAM; in install_e820_map()
[all …]
/rk3399_rockchip-uboot/arch/x86/lib/
H A De820.c21 struct e820entry *entries) in install_e820_map() argument
23 entries[0].addr = 0; in install_e820_map()
24 entries[0].size = ISA_START_ADDRESS; in install_e820_map()
25 entries[0].type = E820_RAM; in install_e820_map()
26 entries[1].addr = ISA_START_ADDRESS; in install_e820_map()
27 entries[1].size = ISA_END_ADDRESS - ISA_START_ADDRESS; in install_e820_map()
28 entries[1].type = E820_RESERVED; in install_e820_map()
29 entries[2].addr = ISA_END_ADDRESS; in install_e820_map()
30 entries[2].size = gd->ram_size - ISA_END_ADDRESS; in install_e820_map()
31 entries[2].type = E820_RAM; in install_e820_map()
[all …]
/rk3399_rockchip-uboot/arch/x86/lib/fsp/
H A Dfsp_dram.c65 unsigned install_e820_map(unsigned max_entries, struct e820entry *entries) in install_e820_map() argument
76 entries[num_entries].addr = res_desc->phys_start; in install_e820_map()
77 entries[num_entries].size = res_desc->len; in install_e820_map()
80 entries[num_entries].type = E820_RAM; in install_e820_map()
82 entries[num_entries].type = E820_RESERVED; in install_e820_map()
90 entries[num_entries].addr = CONFIG_PCIE_ECAM_BASE; in install_e820_map()
91 entries[num_entries].size = CONFIG_PCIE_ECAM_SIZE; in install_e820_map()
92 entries[num_entries].type = E820_RESERVED; in install_e820_map()
100 entries[num_entries].addr = gd->start_addr_sp - CONFIG_STACK_SIZE; in install_e820_map()
101 entries[num_entries].size = gd->ram_top - gd->start_addr_sp + \ in install_e820_map()
[all …]
/rk3399_rockchip-uboot/drivers/block/
H A Dblkcache.c90 if (_stats.max_entries <= _stats.entries) { in blkcache_fill()
94 _stats.entries--; in blkcache_fill()
126 _stats.entries++; in blkcache_fill()
141 --_stats.entries; in blkcache_invalidate()
146 void blkcache_configure(unsigned blocks, unsigned entries) in blkcache_configure() argument
150 (entries != _stats.max_entries)) { in blkcache_configure()
158 _stats.entries = 0; in blkcache_configure()
162 _stats.max_entries = entries; in blkcache_configure()
/rk3399_rockchip-uboot/arch/x86/cpu/coreboot/
H A Dsdram.c15 unsigned install_e820_map(unsigned max_entries, struct e820entry *entries) in install_e820_map() argument
28 entries[i].addr = memrange->base; in install_e820_map()
29 entries[i].size = memrange->size; in install_e820_map()
37 entries[i].type = E820_RESERVED; in install_e820_map()
39 entries[i].type = memrange->type; in install_e820_map()
H A Dtimestamp.c23 struct timestamp_entry entries[0]; /* Variable number of entries */ member
40 tse = &ts_table->entries[ts_table->num_entries++]; in timestamp_add()
58 struct timestamp_entry *tse = &ts_table->entries[i]; in timestamp_add_to_bootstage()
/rk3399_rockchip-uboot/common/
H A Dattestation_key.c65 atap_blob entries[ATAP_CERT_CHAIN_ENTRIES_MAX]; member
97 if (cert_chain.entries[i].data) in free_cert_chain()
98 free(cert_chain.entries[i].data); in free_cert_chain()
99 cert_chain.entries[i].data_length = 0; in free_cert_chain()
154 if (!copy_blob_from_buf(buf_ptr, &cert_chain->entries[i])) { in copy_cert_chain_from_buf()
161 cert_chain->entries[i].data_length); in copy_cert_chain_from_buf()
351 write_cert(KM_ALGORITHM_RSA, certchain.entries[i].data, in load_attestation_key()
352 certchain.entries[i].data_length, i); in load_attestation_key()
381 write_cert(KM_ALGORITHM_EC, certchain.entries[i].data, in load_attestation_key()
382 certchain.entries[i].data_length, i); in load_attestation_key()
[all …]
/rk3399_rockchip-uboot/tools/binman/
H A Dfunc_test.py243 def CheckNoGaps(self, entries): argument
250 for entry in entries.values():
392 entries = image._entries
393 self.assertEqual(5, len(entries))
396 self.assertIn('u-boot', entries)
397 entry = entries['u-boot']
402 self.assertIn('u-boot-align', entries)
403 entry = entries['u-boot-align']
408 self.assertIn('u-boot-size', entries)
409 entry = entries['u-boot-size']
[all …]
H A DREADME35 'spl' and 'fdt'. It supports empty entries (such as setting to 0xff). It can
36 place entries at a fixed location in the image, or fit them together with
234 The binman node describes an image. The sub-nodes describe entries in the
240 The image size is the total size of all entries. As you can see, you can
243 Note that due to a device tree requirement, all entries must have a unique
247 The attributes supported for entries are described below.
284 This sets the alignment of the end of an entry. Some entries require
302 to those for entries.
314 This sets the padding before the image entries. The first entry will
318 This sets the padding after the image entries. The padding will be
[all …]
/rk3399_rockchip-uboot/arch/x86/cpu/tangier/
H A Dsdram.c102 static unsigned sfi_setup_e820(unsigned max_entries, struct e820entry *entries) in sfi_setup_e820() argument
136 entries[total].addr = start; in sfi_setup_e820()
137 entries[total].size = size; in sfi_setup_e820()
138 entries[total].type = type; in sfi_setup_e820()
191 unsigned install_e820_map(unsigned max_entries, struct e820entry *entries) in install_e820_map() argument
193 return sfi_setup_e820(max_entries, entries); in install_e820_map()
/rk3399_rockchip-uboot/doc/device-tree-bindings/gpu/
H A Dnvidia,tegra20-host1x.txt16 - reset-names: Must include the following entries:
32 - reset-names: Must include the following entries:
45 - reset-names: Must include the following entries:
58 - reset-names: Must include the following entries:
71 - reset-names: Must include the following entries:
84 - reset-names: Must include the following entries:
94 - clock-names: Must include the following entries:
101 - reset-names: Must include the following entries:
113 - clock-names: Must include the following entries:
119 - reset-names: Must include the following entries:
[all …]
/rk3399_rockchip-uboot/arch/arm/lib/
H A Dstacktrace.c75 unsigned int entries; member
197 state->entries--; in unwind_exec_read_byte()
302 state->entries = 0; in unwind_exec_insn()
367 state->entries = 1; in unwind_tab()
370 state->entries = ((insn >> 16) & 0xFF) + 1; in unwind_tab()
376 while (state->entries > 0) { in unwind_tab()
532 state.entries = 0; in dump_core_stack()
/rk3399_rockchip-uboot/disk/
H A DKconfig86 int "Number of the EFI partition entries"
91 Specify the number of partition entries in the GPT. This is
96 If unsure, leave at 128 entries, which is the standard
100 int "Offset (in bytes) of the EFI partition entries"
105 entries may be located. This is meant to allow "punching a
110 entries at the first possible LBA following the GPT header).
/rk3399_rockchip-uboot/drivers/video/
H A Dati_radeon_fb.h105 static inline void _radeon_fifo_wait(struct radeonfb_info *rinfo, int entries) in _radeon_fifo_wait() argument
110 if ((INREG(RBBM_STATUS) & 0x7f) >= entries) in _radeon_fifo_wait()
135 #define radeon_fifo_wait(entries) _radeon_fifo_wait(rinfo,entries) argument
/rk3399_rockchip-uboot/include/
H A Dvxworks.h36 u32 entries; /* e820 table entry count */ member
/rk3399_rockchip-uboot/doc/device-tree-bindings/net/
H A Dstmmac.txt30 - snps,perfect-filter-entries: Number of perfect filter entries supported
60 snps,perfect-filter-entries = <128>;
/rk3399_rockchip-uboot/doc/device-tree-bindings/mailbox/
H A Dnvidia,tegra186-hsp.txt22 property. May contain the following entries, in any order:
24 Users of this binding MUST look up entries in the interrupt property
/rk3399_rockchip-uboot/doc/
H A DREADME.mpc85xx75 6) Create TLB entries as per boards/freescale/<board>/tlb.c
86 TLB entry : Search from TLB entries
149 9) Create TLB entries as per boards/freescale/<board>/tlb.c
164 TLB entry : Search from TLB entries
H A DREADME.t1040-l2switch30 - add/remove FDB entries
40 … show | flush | { add | del } <mac> } - add/delete a mac entry in FDB; use show to see FDB entries;
/rk3399_rockchip-uboot/scripts/kconfig/
H A Dmconf.c314 struct list_head entries; member
331 list_for_each_entry(sp, &trail, entries) { in set_subtitle()
370 list_for_each_entry(pos, data->head, entries) { in update_text()
430 list_add_tail(&stpart.entries, &trail); in search_conf()
457 list_for_each_entry_safe(pos, tmp, &head, entries) in search_conf()
658 list_add_tail(&stpart.entries, &trail); in conf()
/rk3399_rockchip-uboot/cmd/
H A Dblkcache.c24 stats.hits, stats.misses, stats.entries, in blkc_show()
/rk3399_rockchip-uboot/doc/device-tree-bindings/
H A Dconfig.txt16 u-boot,efi-partition-entries-offset
18 device) that should be skipped over before the partition entries.
/rk3399_rockchip-uboot/board/freescale/m5373evb/
H A DREADME269entries: 128 (order: 7, 512 bytes) Dentry cache hash table entries: 4096 (order: 2, 16384 bytes) I…
278 … hash table entries: 1024 (order: 0, 4096 bytes) TCP established hash table entries: 1024 (order: …
300 udc: MCF53xx USB Device is found. ID=0x5 Rev=0x41 i2c /dev entries driver
/rk3399_rockchip-uboot/drivers/usb/host/
H A Dxhci-mem.c179 free(ctrl->erst.entries); in xhci_cleanup()
551 ctrl->erst.entries = (struct xhci_erst_entry *) in xhci_mem_init()
561 struct xhci_erst_entry *entry = &ctrl->erst.entries[val]; in xhci_mem_init()
567 xhci_flush_cache((uintptr_t)ctrl->erst.entries, in xhci_mem_init()
585 val_64 |= ((uintptr_t)(ctrl->erst.entries) & ~ERST_PTR_MASK); in xhci_mem_init()
/rk3399_rockchip-uboot/board/freescale/m54455evb/
H A DREADME352 PID hash table entries: 1024 (order: 10, 4096 bytes)
354 Dentry cache hash table entries: 32768 (order: 4, 131072 bytes)
355 Inode-cache hash table entries: 16384 (order: 3, 65536 bytes)
357 Mount-cache hash table entries: 1024
361 IP route cache hash table entries: 2048 (order: 0, 8192 bytes)
362 TCP established hash table entries: 8192 (order: 2, 32768 bytes)
363 TCP bind hash table entries: 4096 (order: 1, 16384 bytes)
392 i2c /dev entries driver

123