Searched refs:info (Results 1 - 25 of 492) sorted by relevance

1234567891011>>

/u-boot/lib/at91/
H A Dat91.c12 void atmel_logo_info(vidinfo_t *info) argument
14 info->logo_width = ATMEL_LOGO_8BPP_WIDTH;
15 info->logo_height = ATMEL_LOGO_8BPP_HEIGHT;
16 info->logo_x_offset = ATMEL_LOGO_8BPP_X_OFFSET;
17 info->logo_y_offset = ATMEL_LOGO_8BPP_X_OFFSET;
18 info->logo_addr = (u_long)atmel_logo_8bpp;
21 void microchip_logo_info(vidinfo_t *info) argument
23 info->logo_width = MICROCHIP_LOGO_8BPP_WIDTH;
24 info->logo_height = MICROCHIP_LOGO_8BPP_HEIGHT;
25 info
[all...]
/u-boot/drivers/mtd/
H A Dcfi_flash.c69 flash_info_t flash_info[CFI_MAX_FLASH_BANKS]; /* FLASH chips info */
185 flash_info_t *info; local
188 info = &flash_info[i];
189 if (info->size && info->start[0] <= base &&
190 base <= info->start[0] + info->size - 1)
191 return info;
198 unsigned long flash_sector_size(flash_info_t *info, flash_sect_t sect) argument
200 if (sect != (info
210 flash_map(flash_info_t *info, flash_sect_t sect, uint offset) argument
217 flash_unmap(flash_info_t *info, flash_sect_t sect, unsigned int offset, void *addr) argument
225 flash_make_cmd(flash_info_t *info, u32 cmd, void *cmdbuf) argument
289 flash_read_uchar(flash_info_t *info, uint offset) argument
307 flash_read_word(flash_info_t *info, uint offset) argument
321 flash_read_long(flash_info_t *info, flash_sect_t sect, uint offset) argument
357 flash_write_cmd(flash_info_t *info, flash_sect_t sect, uint offset, u32 cmd) argument
405 flash_unlock_seq(flash_info_t *info, flash_sect_t sect) argument
413 flash_isequal(flash_info_t *info, flash_sect_t sect, uint offset, uchar cmd) argument
461 flash_isset(flash_info_t *info, flash_sect_t sect, uint offset, uchar cmd) argument
494 flash_toggle(flash_info_t *info, flash_sect_t sect, uint offset, uchar cmd) argument
532 flash_is_busy(flash_info_t *info, flash_sect_t sect) argument
569 flash_status_check(flash_info_t *info, flash_sect_t sector, ulong tout, char *prompt) argument
608 flash_full_status_check(flash_info_t *info, flash_sect_t sector, ulong tout, char *prompt) argument
650 use_flash_status_poll(flash_info_t *info) argument
660 flash_status_poll(flash_info_t *info, void *src, void *dst, ulong tout, char *prompt) argument
714 flash_add_byte(flash_info_t *info, cfiword_t *cword, uchar c) argument
760 find_sector(flash_info_t *info, ulong addr) argument
786 flash_write_cfiword(flash_info_t *info, ulong dest, cfiword_t cword) argument
873 flash_write_cfibuffer(flash_info_t *info, ulong dest, uchar *cp, int len) argument
1056 flash_erase(flash_info_t *info, int s_first, int s_last) argument
1183 sector_erased(flash_info_t *info, int i) argument
1206 flash_print_info(flash_info_t *info) argument
1318 write_buff(flash_info_t *info, uchar *src, ulong addr, ulong cnt) argument
1437 manufact_match(flash_info_t *info, u32 manu) argument
1446 cfi_protect_bugfix(flash_info_t *info, long sector, int prot) argument
1480 flash_real_protect(flash_info_t *info, long sector, int prot) argument
1606 flash_read_user_serial(flash_info_t *info, void *buffer, int offset, int len) argument
1624 flash_read_factory_serial(flash_info_t *info, void *buffer, int offset, int len) argument
1663 cmdset_intel_read_jedec_ids(flash_info_t *info) argument
1677 cmdset_intel_init(flash_info_t *info, struct cfi_qry *qry) argument
1695 cmdset_amd_read_jedec_ids(flash_info_t *info) argument
1756 cmdset_amd_init(flash_info_t *info, struct cfi_qry *qry) argument
1776 flash_read_jedec_ids(flash_info_t *info) argument
1804 flash_info_t *info = &flash_info[banknum]; local
1872 flash_read_cfi(flash_info_t *info, void *buf, unsigned int start, size_t len) argument
1882 __flash_cmd_reset(flash_info_t *info) argument
1897 __flash_detect_cfi(flash_info_t *info, struct cfi_qry *qry) argument
1965 flash_detect_cfi(flash_info_t *info, struct cfi_qry *qry) argument
1999 flash_fixup_amd(flash_info_t *info, struct cfi_qry *qry) argument
2016 flash_fixup_atmel(flash_info_t *info, struct cfi_qry *qry) argument
2035 flash_fixup_stm(flash_info_t *info, struct cfi_qry *qry) argument
2055 flash_fixup_sst(flash_info_t *info, struct cfi_qry *qry) argument
2074 flash_fixup_num(flash_info_t *info, struct cfi_qry *qry) argument
2100 flash_info_t *info = &flash_info[banknum]; local
[all...]
/u-boot/drivers/scsi/
H A Dscsi_emul.c20 int sb_scsi_emul_command(struct scsi_emul_info *info, argument
25 info->buff_used = 0;
29 struct scsi_inquiry_resp *resp = (void *)info->buff;
31 info->alloc_len = req->cmd[4];
35 strncpy(resp->vendor, info->vendor, sizeof(resp->vendor));
36 strncpy(resp->product, info->product, sizeof(resp->product));
38 info->buff_used = sizeof(*resp);
44 struct scsi_read_capacity_resp *resp = (void *)info->buff;
47 if (info->file_size)
48 blocks = info
[all...]
H A Dsandbox_scsi.c40 struct scsi_emul_info *info = &priv->eminfo; local
45 ret = sb_scsi_emul_command(info, req, req->cmdlen);
53 log_debug("read %x %x\n", info->seek_block, info->read_len);
54 os_lseek(priv->fd, info->seek_block * info->block_size,
56 bytes_read = os_read(priv->fd, req->pdata, info->buff_used);
59 if (bytes_read != info->buff_used)
62 req->pdata = info->buff;
63 info
93 struct scsi_emul_info *info = &priv->eminfo; local
125 struct scsi_emul_info *info = &priv->eminfo; local
[all...]
/u-boot/arch/x86/lib/coreboot/
H A Dcb_sysinfo.c36 static void cb_parse_memory(unsigned char *ptr, struct sysinfo_t *info) argument
45 info->n_memranges = 0;
51 info->memrange[info->n_memranges].base =
54 info->memrange[info->n_memranges].size =
57 info->memrange[info->n_memranges].type = range->type;
59 info->n_memranges++;
63 static void cb_parse_serial(unsigned char *ptr, struct sysinfo_t *info) argument
70 cb_parse_vboot_handoff(unsigned char *ptr, struct sysinfo_t *info) argument
78 cb_parse_vbnv(unsigned char *ptr, struct sysinfo_t *info) argument
86 cb_parse_cbmem_entry(unsigned char *ptr, struct sysinfo_t *info) argument
97 cb_parse_gpios(unsigned char *ptr, struct sysinfo_t *info) argument
109 cb_parse_vdat(unsigned char *ptr, struct sysinfo_t *info) argument
117 cb_parse_mac_addresses(unsigned char *ptr, struct sysinfo_t *info) argument
130 cb_parse_tstamp(void *ptr, struct sysinfo_t *info) argument
137 cb_parse_cbmem_cons(void *ptr, struct sysinfo_t *info) argument
144 cb_parse_acpi_gnvs(unsigned char *ptr, struct sysinfo_t *info) argument
151 cb_parse_board_id(unsigned char *ptr, struct sysinfo_t *info) argument
158 cb_parse_ram_code(unsigned char *ptr, struct sysinfo_t *info) argument
165 cb_parse_optiontable(void *ptr, struct sysinfo_t *info) argument
171 cb_parse_checksum(void *ptr, struct sysinfo_t *info) argument
180 cb_parse_framebuffer(void *ptr, struct sysinfo_t *info) argument
186 cb_parse_string(unsigned char *ptr, char **info) argument
191 cb_parse_wifi_calibration(void *ptr, struct sysinfo_t *info) argument
198 cb_parse_ramoops(void *ptr, struct sysinfo_t *info) argument
206 cb_parse_mtc(void *ptr, struct sysinfo_t *info) argument
214 cb_parse_spi_flash(void *ptr, struct sysinfo_t *info) argument
223 cb_parse_boot_media_params(unsigned char *ptr, struct sysinfo_t *info) argument
235 cb_parse_vpd(void *ptr, struct sysinfo_t *info) argument
242 cb_parse_tsc_info(void *ptr, struct sysinfo_t *info) argument
253 cb_parse_x86_rom_var_mtrr(void *ptr, struct sysinfo_t *info) argument
260 cb_parse_mrc_cache(void *ptr, struct sysinfo_t *info) argument
267 cb_parse_acpi_rsdp(void *ptr, struct sysinfo_t *info) argument
278 cb_parse_header(void *addr, int len, struct sysinfo_t *info) argument
459 get_coreboot_info(struct sysinfo_t *info) argument
[all...]
/u-boot/common/
H A Dflash.c27 flash_protect(int flag, ulong from, ulong to, flash_info_t *info) argument
34 if (!info || info->sector_count == 0 || info->size == 0 || to < from) {
38 s_end = info->sector_count - 1; /* index of last sector */
39 b_end = info->start[0] + info->size - 1; /* bank end address */
49 if (info->flash_id == FLASH_UNKNOWN ||
50 to < info->start[0] || from > b_end) {
54 for (i=0; i<info
89 flash_info_t *info; local
128 flash_info_t *info; local
[all...]
/u-boot/drivers/video/ti/
H A Dtilcdc-panel.h12 struct tilcdc_panel_info *info);
/u-boot/cmd/x86/
H A Dcbsysinfo.c188 static void show_table(struct sysinfo_t *info, bool verbose) argument
190 struct cb_serial *ser = info->serial;
194 gd->arch.coreboot_table, info->table_size, info->rec_count,
195 info->rec_count, info);
196 if (info->header)
197 printf(", forwarded to %p\n", info->header);
200 print_dec("CPU KHz", info->cpu_khz);
202 print_addr("Serial I/O port", info
[all...]
/u-boot/drivers/mtd/nand/raw/
H A Dpxa3xx_nand.c139 #define nand_writel(info, off, val) \
140 writel((val), (info)->mmio_base + (off))
142 #define nand_readl(info, off) \
143 readl((info)->mmio_base + (off))
412 struct pxa3xx_nand_info *info = host->info_data; local
427 info->ndtr0cs0 = ndtr0;
428 info->ndtr1cs0 = ndtr1;
429 nand_writel(info, NDTR0CS0, ndtr0);
430 nand_writel(info, NDTR1CS0, ndtr1);
436 struct pxa3xx_nand_info *info local
476 struct pxa3xx_nand_info *info = host->info_data; local
534 pxa3xx_nand_start(struct pxa3xx_nand_info *info) argument
565 disable_int(struct pxa3xx_nand_info *info, uint32_t int_mask) argument
573 drain_fifo(struct pxa3xx_nand_info *info, void *data, int len) argument
606 handle_data_pio(struct pxa3xx_nand_info *info) argument
655 pxa3xx_nand_irq_thread(struct pxa3xx_nand_info *info) argument
663 pxa3xx_nand_irq(struct pxa3xx_nand_info *info) argument
764 set_command_address(struct pxa3xx_nand_info *info, unsigned int page_size, uint16_t column, int page_addr) argument
784 prepare_start_command(struct pxa3xx_nand_info *info, int command) argument
832 prepare_set_command(struct pxa3xx_nand_info *info, int command, int ext_cmd_type, uint16_t column, int page_addr) argument
1032 struct pxa3xx_nand_info *info = host->info_data; local
1093 struct pxa3xx_nand_info *info = host->info_data; local
1234 struct pxa3xx_nand_info *info = host->info_data; local
1281 struct pxa3xx_nand_info *info = host->info_data; local
1343 struct pxa3xx_nand_info *info = host->info_data; local
1357 struct pxa3xx_nand_info *info = host->info_data; local
1371 struct pxa3xx_nand_info *info = host->info_data; local
1383 struct pxa3xx_nand_info *info = host->info_data; local
1399 struct pxa3xx_nand_info *info = host->info_data; local
1435 pxa3xx_nand_config_ident(struct pxa3xx_nand_info *info) argument
1448 pxa3xx_nand_config_tail(struct pxa3xx_nand_info *info) argument
1459 pxa3xx_nand_detect_config(struct pxa3xx_nand_info *info) argument
1473 pxa3xx_nand_init_buff(struct pxa3xx_nand_info *info) argument
1483 struct pxa3xx_nand_info *info = host->info_data; local
1514 pxa_ecc_init(struct pxa3xx_nand_info *info, struct nand_ecc_ctrl *ecc, int strength, int ecc_stepsize, int page_size) argument
1572 struct pxa3xx_nand_info *info = host->info_data; local
1682 alloc_nand_resource(struct udevice *dev, struct pxa3xx_nand_info *info) argument
1751 pxa3xx_nand_probe_dt(struct udevice *dev, struct pxa3xx_nand_info *info) argument
1794 struct pxa3xx_nand_info *info = dev_get_priv(dev); local
[all...]
/u-boot/arch/arm/mach-uniphier/boot-device/
H A Dboot-device.c19 #include "../soc-info.h"
145 const struct uniphier_boot_device_info *info)
150 if (info->boot_is_swapped && info->boot_is_swapped())
155 if (info->boot_device_is_sd && info->boot_device_is_sd(pinmon))
158 if (info->boot_device_is_usb && info->boot_device_is_usb(pinmon))
161 boot_sel = pinmon >> info->boot_device_sel_shift;
163 BUG_ON(!is_power_of_2(*info
144 __uniphier_boot_device_raw( const struct uniphier_boot_device_info *info) argument
171 const struct uniphier_boot_device_info *info; local
184 const struct uniphier_boot_device_info *info; local
201 const struct uniphier_boot_device_info *info; local
222 const struct uniphier_boot_device_info *info; local
[all...]
/u-boot/tools/
H A Dsunxi-spl-image-builder.c81 static void scramble(const struct image_info *info, argument
88 if (info->boot0) {
91 unsigned seedmod = info->eraseblock_size / info->page_size;
94 if (!info->scramble)
113 static int write_page(const struct image_info *info, uint8_t *buffer, argument
117 int steps = info->usable_page_size / info->ecc_step_size;
118 int eccbytes = DIV_ROUND_UP(info->ecc_strength * 14, 8);
126 memset(buffer, 0xff, info
238 create_image(const struct image_info *info) argument
343 check_image_info(struct image_info *info) argument
400 struct image_info info; local
[all...]
H A Dfdt_add_pubkey.c65 static void reset_info(struct image_sign_info *info) argument
67 if (!info)
68 fprintf(stderr, "Error: info is NULL in %s\n", __func__);
70 memset(info, 0, sizeof(struct image_sign_info));
72 info->keydir = keydir;
73 info->keyname = keyname;
74 info->name = algo_name;
75 info->require_keys = require_keys;
76 info->crypto = image_get_crypto_algo(algo_name);
78 if (!info
85 add_pubkey(struct image_sign_info *info) argument
121 struct image_sign_info info; local
[all...]
/u-boot/include/u-boot/
H A Daes.h13 int image_aes_encrypt(struct image_cipher_info *info,
16 int image_aes_add_cipher_data(struct image_cipher_info *info, void *keydest,
19 int image_aes_encrypt(struct image_cipher_info *info, argument
26 int image_aes_add_cipher_data(struct image_cipher_info *info, void *keydest, argument
34 int image_aes_decrypt(struct image_cipher_info *info,
38 int image_aes_decrypt(struct image_cipher_info *info, argument
H A Decdsa.h20 * @info: Specifies key and FIT information
34 int ecdsa_sign(struct image_sign_info *info, const struct image_region region[],
44 * @info: Specifies key and FIT information
50 int ecdsa_add_verify_data(struct image_sign_info *info, void *keydest);
55 * @info: Specifies key and FIT information
62 int ecdsa_verify(struct image_sign_info *info,
/u-boot/drivers/clk/renesas/
H A Drenesas-cpg-mssr.c29 int renesas_clk_get_mod(struct clk *clk, struct cpg_mssr_info *info, argument
35 for (i = 0; i < info->mod_clk_size; i++) {
36 if (info->mod_clk[i].id !=
37 (info->mod_clk_base + MOD_CLK_PACK(clkid)))
40 *mssr = &info->mod_clk[i];
47 int renesas_clk_get_core(struct clk *clk, struct cpg_mssr_info *info, argument
53 for (i = 0; i < info->core_clk_size; i++) {
54 if (info->core_clk[i].id != clkid)
57 *core = &info->core_clk[i];
64 int renesas_clk_get_parent(struct clk *clk, struct cpg_mssr_info *info, argument
93 renesas_clk_endisable(struct clk *clk, void __iomem *base, struct cpg_mssr_info *info, bool enable) argument
117 renesas_clk_remove(void __iomem *base, struct cpg_mssr_info *info) argument
[all...]
/u-boot/lib/
H A Dtiny-printf.c22 void (*putc)(struct printf_info *info, char ch);
25 static void out(struct printf_info *info, char c) argument
27 *info->bf++ = c;
30 static void out_dgt(struct printf_info *info, char dgt) argument
32 out(info, dgt + (dgt < 10 ? '0' : 'a' - 10));
33 info->zs = 1;
36 static void div_out(struct printf_info *info, unsigned long *num, argument
46 if (info->zs || dgt > 0)
47 out_dgt(info, dgt);
51 static void string(struct printf_info *info, cha argument
70 mac_address_string(struct printf_info *info, u8 *addr, bool separator) argument
124 ip4_addr_string(struct printf_info *info, u8 *addr) argument
160 pointer(struct printf_info *info, const char *fmt, void *ptr) argument
199 _vprintf(struct printf_info *info, const char *fmt, va_list va) argument
330 putc_normal(struct printf_info *info, char ch) argument
337 struct printf_info info; local
345 struct printf_info info; local
359 putc_outstr(struct printf_info *info, char ch) argument
366 struct printf_info info; local
384 struct printf_info info; local
399 struct printf_info info; local
[all...]
/u-boot/boot/
H A Dfdt_region.c166 * @info: State information
174 static int fdt_add_region(struct fdt_region_state *info, int offset, int size) argument
178 reg = info->region ? &info->region[info->count - 1] : NULL;
179 if (info->can_merge && info->count &&
180 info->count <= info->max_regions &&
183 } else if (info
198 region_list_contains_offset(struct fdt_region_state *info, const void *fdt, int target) argument
237 fdt_add_alias_regions(const void *fdt, struct fdt_region *region, int count, int max_regions, struct fdt_region_state *info) argument
313 fdt_include_supernodes(struct fdt_region_state *info, int depth) argument
362 fdt_first_region(const void *fdt, int (*h_include)(void *priv, const void *fdt, int offset, int type, const char *data, int size), void *priv, struct fdt_region *region, char *path, int path_len, int flags, struct fdt_region_state *info) argument
460 fdt_next_region(const void *fdt, int (*h_include)(void *priv, const void *fdt, int offset, int type, const char *data, int size), void *priv, struct fdt_region *region, char *path, int path_len, int flags, struct fdt_region_state *info) argument
[all...]
/u-boot/drivers/pinctrl/mscc/
H A Dmscc-common.c62 struct mscc_pinctrl *info = dev_get_priv(dev); local
64 return info->num_func;
70 struct mscc_pinctrl *info = dev_get_priv(dev); local
72 return info->function_names[function];
92 struct mscc_pinctrl *info = dev_get_priv(dev); local
93 struct mscc_pin_caps *pin = info->mscc_pins[pin_selector].drv_data;
96 f = mscc_pin_function_idx(pin_selector, selector, info->mscc_pins);
107 regoff = info->mscc_gpios[MSCC_GPIO_ALT0];
110 regoff = info->mscc_gpios[MSCC_GPIO_ALT1];
114 mscc_setbits(offset, info
128 struct mscc_pinctrl *info = dev_get_priv(dev); local
136 struct mscc_pinctrl *info = dev_get_priv(dev); local
141 mscc_create_group_func_map(struct udevice *dev, struct mscc_pinctrl *info) argument
166 mscc_pinctrl_register(struct udevice *dev, struct mscc_pinctrl *info) argument
181 struct mscc_pinctrl *info = dev_get_priv(dev->parent); local
197 struct mscc_pinctrl *info = dev_get_priv(dev->parent); local
211 struct mscc_pinctrl *info = dev_get_priv(dev->parent); local
221 struct mscc_pinctrl *info = dev_get_priv(dev->parent); local
231 struct mscc_pinctrl *info = dev_get_priv(dev->parent); local
[all...]
/u-boot/drivers/power/
H A Dexynos-tmu.c107 static int get_cur_temp(struct tmu_info *info) argument
109 struct exynos5_tmu_reg *reg = info->tmu_base;
118 if (info->tmu_state == TMU_STATUS_NORMAL) {
129 cur_temp = cur_temp - info->te1 + info->dc_value;
178 * @param info pointer to the tmu_info struct
182 static int get_tmu_fdt_values(struct tmu_info *info, const void *blob) argument
208 info->tmu_base = (struct exynos5_tmu_reg *)addr;
211 info->tmu_mux = fdtdec_get_int(blob,
214 if (info
266 tmu_setup_parameters(struct tmu_info *info) argument
[all...]
/u-boot/test/dm/
H A Dscsi.c17 const struct disk_partition *info; local
32 info = &part->gpt_part_info;
33 ut_asserteq_str("sda1", info->name);
34 ut_asserteq_str("U-Boot", info->type);
35 ut_asserteq(0x83 /* linux */, info->sys_ind);
/u-boot/board/gateworks/gw_ventana/
H A Deeprom.c21 * EEPROM board info struct populated by read_eeprom so that we only have to
211 read_eeprom(struct ventana_board_info *info) argument
217 unsigned char *buf = (unsigned char *)info;
219 memset(info, 0, sizeof(*info));
222 if (gsc_i2c_read(BOARD_EEPROM_ADDR, 0x00, 1, buf, sizeof(*info))) {
228 if (info->model[0] != 'G' || info->model[1] != 'W') {
231 sizeof(*info));
236 for (chksum = 0, i = 0; i < sizeof(*info)
351 struct ventana_board_info *info = &ventana_info; local
[all...]
/u-boot/board/variscite/imx8mn_var_som/
H A Dimx8mn_var_som.c62 static void display_som_infos(struct var_imx8_eeprom_info *info) argument
64 char partnumber[sizeof(info->partnumber) +
65 sizeof(info->partnumber2) + 1];
66 char assembly[sizeof(info->assembly) + 1];
67 char date[sizeof(info->date) + 1];
70 memcpy(partnumber, info->partnumber, sizeof(info->partnumber));
73 if (info->eeprom_version >= 3)
74 memcpy(partnumber + sizeof(info->partnumber), info
93 var_read_som_eeprom(struct var_imx8_eeprom_info *info) argument
131 struct var_imx8_eeprom_info *info; local
[all...]
/u-boot/drivers/pinctrl/nxp/
H A Dpinctrl-imx.c25 struct imx_pinctrl_soc_info *info = priv->info; local
32 u32 mux_shift = info->mux_mask ? ffs(info->mux_mask) - 1 : 0;
37 if (info->flags & IMX8_USE_SCU)
39 else if (info->flags & SHARE_MUX_CONF_REG)
69 if (info->flags & IMX8_USE_SCU) {
70 imx_pinctrl_scu_conf_pins(info, pin_data, npins);
79 if (!(info->flags & ZERO_OFFSET_VALID) && !mux_reg)
82 if (info
202 imx_pinctrl_probe(struct udevice *dev, struct imx_pinctrl_soc_info *info) argument
263 struct imx_pinctrl_soc_info *info = priv->info; local
[all...]
/u-boot/common/spl/
H A Dspl_ubi.c19 struct ubispl_info info; local
27 info.read = nand_spl_read_block;
28 info.peb_size = CONFIG_SYS_NAND_BLOCK_SIZE;
33 info.read = onenand_spl_read_block;
34 info.peb_size = CFG_SYS_ONENAND_BLOCK_SIZE;
40 info.ubi = (struct ubi_scan_info *)CONFIG_SPL_UBI_INFO_ADDR;
41 info.fastmap = IS_ENABLED(CONFIG_MTD_UBI_FASTMAP);
43 info.peb_offset = CONFIG_SPL_UBI_PEB_OFFSET;
44 info.vid_offset = CONFIG_SPL_UBI_VID_OFFSET;
45 info
[all...]
/u-boot/drivers/net/
H A Dmcffec.c40 static void init_eth_info(struct fec_info_s *info) argument
45 if (info->index == 0)
48 info->rxbd = (cbd_t *)DBUF_LENGTH;
51 info->rxbd = (cbd_t *)((u32)info->rxbd + tmp);
52 tmp = (u32)info->rxbd;
53 info->txbd =
54 (cbd_t *)((u32)info->txbd + tmp +
56 tmp = (u32)info->txbd;
57 info
78 fec_reset(struct fec_info_s *info) argument
123 struct fec_info_s *info = dev_get_priv(dev); local
273 struct fec_info_s *info = dev_get_priv(dev); local
364 struct fec_info_s *info = dev_get_priv(dev); local
430 struct fec_info_s *info = dev_get_priv(dev); local
482 struct fec_info_s *info = dev_get_priv(dev); local
509 struct fec_info_s *info = dev_get_priv(dev); local
[all...]

Completed in 251 milliseconds

1234567891011>>