Lines Matching full:raw

144 		.font_start_addr = STI_PTR(font->raw),  in sti_putc()
537 cooked_font->raw = nf; in sti_select_fbfont()
556 unsigned char *p = (unsigned char *)font->raw; in sti_dump_font()
561 font->raw->bytes_per_char); in sti_dump_font()
563 for (n = 0; n < 256 * font->raw->bytes_per_char; n += 16, p += 16) { in sti_dump_font()
579 if ((font->raw->width == width) && in sti_search_font()
580 (font->raw->height == height)) in sti_search_font()
615 struct sti_rom *rom = sti->rom->raw; in sti_dump_rom()
635 struct sti_rom_font *f = font_start->raw; in sti_dump_rom()
660 cooked_font->raw = raw_font; in sti_cook_fonts()
671 cooked_font->raw = raw_font; in sti_cook_fonts()
684 int size = f->raw->bytes_per_char * (f->raw->last_char + 1) + sizeof(struct sti_rom_font); in sti_font_convert_bytemode()
696 q = (unsigned char *) f->raw; in sti_font_convert_bytemode()
702 f->raw = (struct sti_rom_font *) (n + 3); in sti_font_convert_bytemode()
724 struct sti_rom *raw; in sti_get_bmode_rom() local
731 raw = kmalloc(size, STI_LOWMEM); in sti_get_bmode_rom()
732 if (raw) { in sti_get_bmode_rom()
733 sti_bmode_rom_copy(address, size, raw); in sti_get_bmode_rom()
734 memmove (&raw->res004, &raw->type[0], 0x3c); in sti_get_bmode_rom()
735 raw->type[3] = raw->res004; in sti_get_bmode_rom()
737 BMODE_RELOCATE (raw->region_list); in sti_get_bmode_rom()
738 BMODE_RELOCATE (raw->font_start); in sti_get_bmode_rom()
740 BMODE_RELOCATE (raw->init_graph); in sti_get_bmode_rom()
741 BMODE_RELOCATE (raw->state_mgmt); in sti_get_bmode_rom()
742 BMODE_RELOCATE (raw->font_unpmv); in sti_get_bmode_rom()
743 BMODE_RELOCATE (raw->block_move); in sti_get_bmode_rom()
744 BMODE_RELOCATE (raw->inq_conf); in sti_get_bmode_rom()
746 raw_font = ((void *)raw) + raw->font_start; in sti_get_bmode_rom()
754 return raw; in sti_get_bmode_rom()
759 struct sti_rom *raw; in sti_get_wmode_rom() local
765 raw = kmalloc(size, STI_LOWMEM); in sti_get_wmode_rom()
766 if (raw) in sti_get_wmode_rom()
767 sti_rom_copy(address, size, raw); in sti_get_wmode_rom()
769 return raw; in sti_get_wmode_rom()
776 struct sti_rom *raw = NULL; in sti_read_rom() local
784 raw = sti_get_wmode_rom (address); in sti_read_rom()
786 raw = sti_get_bmode_rom (address); in sti_read_rom()
788 if (!raw) in sti_read_rom()
791 if (!sti_cook_fonts(cooked, raw)) { in sti_read_rom()
796 if (raw->region_list) in sti_read_rom()
797 memcpy(sti->regions, ((void *)raw)+raw->region_list, sizeof(sti->regions)); in sti_read_rom()
799 address = (unsigned long) STI_PTR(raw); in sti_read_rom()
803 raw->alt_code_type == ALT_CODE_TYPE_PA_RISC_64 in sti_read_rom()
806 sti->font_unpmv = address + (raw->font_unpmv & 0x03ffffff); in sti_read_rom()
807 sti->block_move = address + (raw->block_move & 0x03ffffff); in sti_read_rom()
808 sti->init_graph = address + (raw->init_graph & 0x03ffffff); in sti_read_rom()
809 sti->inq_conf = address + (raw->inq_conf & 0x03ffffff); in sti_read_rom()
812 sti->rom->raw = raw; in sti_read_rom()
817 sti->font->width = sti->font->raw->width; in sti_read_rom()
818 sti->font->height = sti->font->raw->height; in sti_read_rom()
822 sti->sti_mem_request = raw->sti_mem_req; in sti_read_rom()
823 sti->graphics_id[0] = raw->graphics_id[0]; in sti_read_rom()
824 sti->graphics_id[1] = raw->graphics_id[1]; in sti_read_rom()
830 revno = (raw->revno[0] << 8) | raw->revno[1]; in sti_read_rom()
855 kfree(raw); in sti_read_rom()