Lines Matching full:raw

143 		.font_start_addr = STI_PTR(font->raw),  in sti_putc()
536 cooked_font->raw = nf; in sti_select_fbfont()
558 if ((font->raw->width == width) && in sti_search_font()
559 (font->raw->height == height)) in sti_search_font()
594 struct sti_rom *rom = sti->rom->raw; in sti_dump_rom()
614 struct sti_rom_font *f = font_start->raw; in sti_dump_rom()
639 cooked_font->raw = raw_font; in sti_cook_fonts()
650 cooked_font->raw = raw_font; in sti_cook_fonts()
663 int size = f->raw->bytes_per_char * 256 + sizeof(struct sti_rom_font); in sti_font_convert_bytemode()
675 q = (unsigned char *) f->raw; in sti_font_convert_bytemode()
681 f->raw = (struct sti_rom_font *) (n + 3); in sti_font_convert_bytemode()
703 struct sti_rom *raw; in sti_get_bmode_rom() local
710 raw = kmalloc(size, STI_LOWMEM); in sti_get_bmode_rom()
711 if (raw) { in sti_get_bmode_rom()
712 sti_bmode_rom_copy(address, size, raw); in sti_get_bmode_rom()
713 memmove (&raw->res004, &raw->type[0], 0x3c); in sti_get_bmode_rom()
714 raw->type[3] = raw->res004; in sti_get_bmode_rom()
716 BMODE_RELOCATE (raw->region_list); in sti_get_bmode_rom()
717 BMODE_RELOCATE (raw->font_start); in sti_get_bmode_rom()
719 BMODE_RELOCATE (raw->init_graph); in sti_get_bmode_rom()
720 BMODE_RELOCATE (raw->state_mgmt); in sti_get_bmode_rom()
721 BMODE_RELOCATE (raw->font_unpmv); in sti_get_bmode_rom()
722 BMODE_RELOCATE (raw->block_move); in sti_get_bmode_rom()
723 BMODE_RELOCATE (raw->inq_conf); in sti_get_bmode_rom()
725 raw_font = ((void *)raw) + raw->font_start; in sti_get_bmode_rom()
733 return raw; in sti_get_bmode_rom()
738 struct sti_rom *raw; in sti_get_wmode_rom() local
744 raw = kmalloc(size, STI_LOWMEM); in sti_get_wmode_rom()
745 if (raw) in sti_get_wmode_rom()
746 sti_rom_copy(address, size, raw); in sti_get_wmode_rom()
748 return raw; in sti_get_wmode_rom()
755 struct sti_rom *raw = NULL; in sti_read_rom() local
763 raw = sti_get_wmode_rom (address); in sti_read_rom()
765 raw = sti_get_bmode_rom (address); in sti_read_rom()
767 if (!raw) in sti_read_rom()
770 if (!sti_cook_fonts(cooked, raw)) { in sti_read_rom()
775 if (raw->region_list) in sti_read_rom()
776 memcpy(sti->regions, ((void *)raw)+raw->region_list, sizeof(sti->regions)); in sti_read_rom()
778 address = (unsigned long) STI_PTR(raw); in sti_read_rom()
782 raw->alt_code_type == ALT_CODE_TYPE_PA_RISC_64 in sti_read_rom()
785 sti->font_unpmv = address + (raw->font_unpmv & 0x03ffffff); in sti_read_rom()
786 sti->block_move = address + (raw->block_move & 0x03ffffff); in sti_read_rom()
787 sti->init_graph = address + (raw->init_graph & 0x03ffffff); in sti_read_rom()
788 sti->inq_conf = address + (raw->inq_conf & 0x03ffffff); in sti_read_rom()
791 sti->rom->raw = raw; in sti_read_rom()
796 sti->font->width = sti->font->raw->width; in sti_read_rom()
797 sti->font->height = sti->font->raw->height; in sti_read_rom()
800 sti->sti_mem_request = raw->sti_mem_req; in sti_read_rom()
801 sti->graphics_id[0] = raw->graphics_id[0]; in sti_read_rom()
802 sti->graphics_id[1] = raw->graphics_id[1]; in sti_read_rom()
808 revno = (raw->revno[0] << 8) | raw->revno[1]; in sti_read_rom()
833 kfree(raw); in sti_read_rom()