Lines Matching refs:table
370 char *table; in uninorth_create_gatt_table() local
383 table = NULL; in uninorth_create_gatt_table()
393 table = (char *) __get_free_pages(GFP_KERNEL, page_order); in uninorth_create_gatt_table()
395 if (table == NULL) { in uninorth_create_gatt_table()
401 } while (!table && (i < bridge->driver->num_aperture_sizes)); in uninorth_create_gatt_table()
403 if (table == NULL) in uninorth_create_gatt_table()
410 table_end = table + ((PAGE_SIZE * (1 << page_order)) - 1); in uninorth_create_gatt_table()
412 for (page = virt_to_page(table), i = 0; page <= virt_to_page(table_end); in uninorth_create_gatt_table()
418 bridge->gatt_table_real = (u32 *) table; in uninorth_create_gatt_table()
420 flush_dcache_range((unsigned long)table, in uninorth_create_gatt_table()
427 bridge->gatt_bus_addr = virt_to_phys(table); in uninorth_create_gatt_table()
441 if (table) in uninorth_create_gatt_table()
442 free_pages((unsigned long)table, page_order); in uninorth_create_gatt_table()
449 char *table, *table_end; in uninorth_free_gatt_table() local
463 table = (char *) bridge->gatt_table_real; in uninorth_free_gatt_table()
464 table_end = table + ((PAGE_SIZE * (1 << page_order)) - 1); in uninorth_free_gatt_table()
466 for (page = virt_to_page(table); page <= virt_to_page(table_end); page++) in uninorth_free_gatt_table()