• Home
  • Raw
  • Download

Lines Matching refs:fdb

387 	struct fdbar_t *fdb = find_fd(image, size);  in dump_fd()  local
389 if (!fdb) in dump_fd()
392 printf("FLMAP0: 0x%08x\n", fdb->flmap0); in dump_fd()
393 printf(" NR: %d\n", (fdb->flmap0 >> 24) & 7); in dump_fd()
394 printf(" FRBA: 0x%x\n", ((fdb->flmap0 >> 16) & 0xff) << 4); in dump_fd()
395 printf(" NC: %d\n", ((fdb->flmap0 >> 8) & 3) + 1); in dump_fd()
396 printf(" FCBA: 0x%x\n", ((fdb->flmap0) & 0xff) << 4); in dump_fd()
398 printf("FLMAP1: 0x%08x\n", fdb->flmap1); in dump_fd()
399 printf(" ISL: 0x%02x\n", (fdb->flmap1 >> 24) & 0xff); in dump_fd()
400 printf(" FPSBA: 0x%x\n", ((fdb->flmap1 >> 16) & 0xff) << 4); in dump_fd()
401 printf(" NM: %d\n", (fdb->flmap1 >> 8) & 3); in dump_fd()
402 printf(" FMBA: 0x%x\n", ((fdb->flmap1) & 0xff) << 4); in dump_fd()
404 printf("FLMAP2: 0x%08x\n", fdb->flmap2); in dump_fd()
405 printf(" PSL: 0x%04x\n", (fdb->flmap2 >> 8) & 0xffff); in dump_fd()
406 printf(" FMSBA: 0x%x\n", ((fdb->flmap2) & 0xff) << 4); in dump_fd()
408 printf("FLUMAP1: 0x%08x\n", fdb->flumap1); in dump_fd()
410 (fdb->flumap1 >> 8) & 0xff); in dump_fd()
412 (fdb->flumap1 & 0xff) << 4); in dump_fd()
414 (image + ((fdb->flumap1 & 0xff) << 4)), in dump_fd()
415 (fdb->flumap1 >> 8) & 0xff); in dump_fd()
417 dump_frba((struct frba_t *)(image + (((fdb->flmap0 >> 16) & 0xff) in dump_fd()
419 dump_fcba((struct fcba_t *)(image + (((fdb->flmap0) & 0xff) << 4))); in dump_fd()
421 (image + (((fdb->flmap1 >> 16) & 0xff) << 4))); in dump_fd()
422 dump_fmba((struct fmba_t *)(image + (((fdb->flmap1) & 0xff) << 4))); in dump_fd()
423 dump_fmsba((struct fmsba_t *)(image + (((fdb->flmap2) & 0xff) << 4))); in dump_fd()
439 struct fdbar_t *fdb; in write_regions() local
444 fdb = find_fd(image, size); in write_regions()
445 if (!fdb) in write_regions()
448 frba = (struct frba_t *)(image + (((fdb->flmap0 >> 16) & 0xff) << 4)); in write_regions()
524 struct fdbar_t *fdb = find_fd(image, size); in set_spi_frequency() local
527 fcba = (struct fcba_t *)(image + (((fdb->flmap0) & 0xff) << 4)); in set_spi_frequency()
547 struct fdbar_t *fdb = find_fd(image, size); in set_em100_mode() local
550 fcba = (struct fcba_t *)(image + (((fdb->flmap0) & 0xff) << 4)); in set_em100_mode()
563 struct fdbar_t *fdb = find_fd(image, size); in lock_descriptor() local
570 fmba = (struct fmba_t *)(image + (((fdb->flmap1) & 0xff) << 4)); in lock_descriptor()
584 struct fdbar_t *fdb = find_fd(image, size); in unlock_descriptor() local
587 fmba = (struct fmba_t *)(image + (((fdb->flmap1) & 0xff) << 4)); in unlock_descriptor()
629 struct fdbar_t *fdb = find_fd(image, size); in inject_region() local
637 if (!fdb) in inject_region()
639 frba = (struct frba_t *)(image + (((fdb->flmap0 >> 16) & 0xff) << 4)); in inject_region()