Lines Matching full:lop
141 * List of Pointers(LOP) contains 1024x32b pointers to 4KB page each in cio2_fbpt_init_dummy()
220 * The first not meaningful FBPT entry should point to a valid LOP in cio2_fbpt_entry_init_buf()
848 memset(b->lop, 0, sizeof(b->lop)); in cio2_vb2_buf_init()
849 /* Allocate LOP table */ in cio2_vb2_buf_init()
851 b->lop[i] = dma_alloc_coherent(dev, PAGE_SIZE, in cio2_vb2_buf_init()
853 if (!b->lop[i]) in cio2_vb2_buf_init()
857 /* Fill LOP */ in cio2_vb2_buf_init()
869 b->lop[i][j] = PFN_DOWN(sg_page_iter_dma_address(&sg_iter)); in cio2_vb2_buf_init()
877 b->lop[i][j] = PFN_DOWN(cio2->dummy_page_bus_addr); in cio2_vb2_buf_init()
881 dma_free_coherent(dev, PAGE_SIZE, b->lop[i], b->lop_bus_addr[i]); in cio2_vb2_buf_init()
968 /* Free LOP table */ in cio2_vb2_buf_cleanup()
970 if (b->lop[i]) in cio2_vb2_buf_cleanup()
972 b->lop[i], b->lop_bus_addr[i]); in cio2_vb2_buf_cleanup()