| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 1 | /* | 
 | 2 |  * Procedures for drawing on the screen early on in the boot process. | 
 | 3 |  * | 
 | 4 |  * Benjamin Herrenschmidt <benh@kernel.crashing.org> | 
 | 5 |  */ | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 6 | #include <linux/kernel.h> | 
 | 7 | #include <linux/string.h> | 
 | 8 | #include <linux/init.h> | 
 | 9 | #include <linux/module.h> | 
| David S. Miller | d9b2b2a | 2008-02-13 16:56:49 -0800 | [diff] [blame] | 10 | #include <linux/lmb.h> | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 11 |  | 
 | 12 | #include <asm/sections.h> | 
 | 13 | #include <asm/prom.h> | 
 | 14 | #include <asm/btext.h> | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 15 | #include <asm/page.h> | 
 | 16 | #include <asm/mmu.h> | 
 | 17 | #include <asm/pgtable.h> | 
 | 18 | #include <asm/io.h> | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 19 | #include <asm/processor.h> | 
| David Gibson | 719c91c | 2007-02-13 15:54:22 +1100 | [diff] [blame] | 20 | #include <asm/udbg.h> | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 21 |  | 
 | 22 | #define NO_SCROLL | 
 | 23 |  | 
 | 24 | #ifndef NO_SCROLL | 
 | 25 | static void scrollscreen(void); | 
 | 26 | #endif | 
 | 27 |  | 
 | 28 | static void draw_byte(unsigned char c, long locX, long locY); | 
 | 29 | static void draw_byte_32(unsigned char *bits, unsigned int *base, int rb); | 
 | 30 | static void draw_byte_16(unsigned char *bits, unsigned int *base, int rb); | 
 | 31 | static void draw_byte_8(unsigned char *bits, unsigned int *base, int rb); | 
 | 32 |  | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 33 | #define __force_data __attribute__((__section__(".data"))) | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 34 |  | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 35 | static int g_loc_X __force_data; | 
 | 36 | static int g_loc_Y __force_data; | 
 | 37 | static int g_max_loc_X __force_data; | 
 | 38 | static int g_max_loc_Y __force_data; | 
 | 39 |  | 
 | 40 | static int dispDeviceRowBytes __force_data; | 
 | 41 | static int dispDeviceDepth  __force_data; | 
 | 42 | static int dispDeviceRect[4] __force_data; | 
 | 43 | static unsigned char *dispDeviceBase __force_data; | 
 | 44 | static unsigned char *logicalDisplayBase __force_data; | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 45 |  | 
 | 46 | unsigned long disp_BAT[2] __initdata = {0, 0}; | 
 | 47 |  | 
 | 48 | #define cmapsz	(16*256) | 
 | 49 |  | 
 | 50 | static unsigned char vga_font[cmapsz]; | 
 | 51 |  | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 52 | int boot_text_mapped __force_data = 0; | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 53 | int force_printk_to_btext = 0; | 
 | 54 |  | 
| Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 55 | #ifdef CONFIG_PPC32 | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 56 | /* Calc BAT values for mapping the display and store them | 
 | 57 |  * in disp_BAT.  Those values are then used from head.S to map | 
 | 58 |  * the display during identify_machine() and MMU_Init() | 
 | 59 |  * | 
 | 60 |  * The display is mapped to virtual address 0xD0000000, rather | 
 | 61 |  * than 1:1, because some some CHRP machines put the frame buffer | 
| Michael Ellerman | b5666f7 | 2005-12-05 10:24:33 -0600 | [diff] [blame] | 62 |  * in the region starting at 0xC0000000 (PAGE_OFFSET). | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 63 |  * This mapping is temporary and will disappear as soon as the | 
 | 64 |  * setup done by MMU_Init() is applied. | 
 | 65 |  * | 
 | 66 |  * For now, we align the BAT and then map 8Mb on 601 and 16Mb | 
 | 67 |  * on other PPCs. This may cause trouble if the framebuffer | 
 | 68 |  * is really badly aligned, but I didn't encounter this case | 
 | 69 |  * yet. | 
 | 70 |  */ | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 71 | void __init btext_prepare_BAT(void) | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 72 | { | 
| Michael Ellerman | b5666f7 | 2005-12-05 10:24:33 -0600 | [diff] [blame] | 73 | 	unsigned long vaddr = PAGE_OFFSET + 0x10000000; | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 74 | 	unsigned long addr; | 
 | 75 | 	unsigned long lowbits; | 
 | 76 |  | 
 | 77 | 	addr = (unsigned long)dispDeviceBase; | 
 | 78 | 	if (!addr) { | 
 | 79 | 		boot_text_mapped = 0; | 
 | 80 | 		return; | 
 | 81 | 	} | 
 | 82 | 	if (PVR_VER(mfspr(SPRN_PVR)) != 1) { | 
 | 83 | 		/* 603, 604, G3, G4, ... */ | 
 | 84 | 		lowbits = addr & ~0xFF000000UL; | 
 | 85 | 		addr &= 0xFF000000UL; | 
 | 86 | 		disp_BAT[0] = vaddr | (BL_16M<<2) | 2; | 
 | 87 | 		disp_BAT[1] = addr | (_PAGE_NO_CACHE | _PAGE_GUARDED | BPP_RW);	 | 
 | 88 | 	} else { | 
 | 89 | 		/* 601 */ | 
 | 90 | 		lowbits = addr & ~0xFF800000UL; | 
 | 91 | 		addr &= 0xFF800000UL; | 
 | 92 | 		disp_BAT[0] = vaddr | (_PAGE_NO_CACHE | PP_RWXX) | 4; | 
 | 93 | 		disp_BAT[1] = addr | BL_8M | 0x40; | 
 | 94 | 	} | 
 | 95 | 	logicalDisplayBase = (void *) (vaddr + lowbits); | 
 | 96 | } | 
| Paul Mackerras | 40ef8cb | 2005-10-10 22:50:37 +1000 | [diff] [blame] | 97 | #endif | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 98 |  | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 99 |  | 
 | 100 | /* This function can be used to enable the early boot text when doing | 
 | 101 |  * OF booting or within bootx init. It must be followed by a btext_unmap() | 
 | 102 |  * call before the logical address becomes unuseable | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 103 |  */ | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 104 | void __init btext_setup_display(int width, int height, int depth, int pitch, | 
 | 105 | 				unsigned long address) | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 106 | { | 
 | 107 | 	g_loc_X = 0; | 
 | 108 | 	g_loc_Y = 0; | 
 | 109 | 	g_max_loc_X = width / 8; | 
 | 110 | 	g_max_loc_Y = height / 16; | 
 | 111 | 	logicalDisplayBase = (unsigned char *)address; | 
 | 112 | 	dispDeviceBase = (unsigned char *)address; | 
 | 113 | 	dispDeviceRowBytes = pitch; | 
| Benjamin Herrenschmidt | ab13446 | 2006-07-03 17:19:48 +1000 | [diff] [blame] | 114 | 	dispDeviceDepth = depth == 15 ? 16 : depth; | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 115 | 	dispDeviceRect[0] = dispDeviceRect[1] = 0; | 
 | 116 | 	dispDeviceRect[2] = width; | 
 | 117 | 	dispDeviceRect[3] = height; | 
 | 118 | 	boot_text_mapped = 1; | 
 | 119 | } | 
 | 120 |  | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 121 | void __init btext_unmap(void) | 
 | 122 | { | 
 | 123 | 	boot_text_mapped = 0; | 
 | 124 | } | 
 | 125 |  | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 126 | /* Here's a small text engine to use during early boot | 
 | 127 |  * or for debugging purposes | 
 | 128 |  * | 
 | 129 |  * todo: | 
 | 130 |  * | 
 | 131 |  *  - build some kind of vgacon with it to enable early printk | 
 | 132 |  *  - move to a separate file | 
 | 133 |  *  - add a few video driver hooks to keep in sync with display | 
 | 134 |  *    changes. | 
 | 135 |  */ | 
 | 136 |  | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 137 | static void map_boot_text(void) | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 138 | { | 
 | 139 | 	unsigned long base, offset, size; | 
 | 140 | 	unsigned char *vbase; | 
 | 141 |  | 
 | 142 | 	/* By default, we are no longer mapped */ | 
 | 143 | 	boot_text_mapped = 0; | 
 | 144 | 	if (dispDeviceBase == 0) | 
 | 145 | 		return; | 
 | 146 | 	base = ((unsigned long) dispDeviceBase) & 0xFFFFF000UL; | 
 | 147 | 	offset = ((unsigned long) dispDeviceBase) - base; | 
 | 148 | 	size = dispDeviceRowBytes * dispDeviceRect[3] + offset | 
 | 149 | 		+ dispDeviceRect[0]; | 
 | 150 | 	vbase = __ioremap(base, size, _PAGE_NO_CACHE); | 
 | 151 | 	if (vbase == 0) | 
 | 152 | 		return; | 
 | 153 | 	logicalDisplayBase = vbase + offset; | 
 | 154 | 	boot_text_mapped = 1; | 
 | 155 | } | 
 | 156 |  | 
 | 157 | int btext_initialize(struct device_node *np) | 
 | 158 | { | 
 | 159 | 	unsigned int width, height, depth, pitch; | 
 | 160 | 	unsigned long address = 0; | 
| Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 161 | 	const u32 *prop; | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 162 |  | 
| Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 163 | 	prop = of_get_property(np, "linux,bootx-width", NULL); | 
| Benjamin Herrenschmidt | ab13446 | 2006-07-03 17:19:48 +1000 | [diff] [blame] | 164 | 	if (prop == NULL) | 
| Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 165 | 		prop = of_get_property(np, "width", NULL); | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 166 | 	if (prop == NULL) | 
 | 167 | 		return -EINVAL; | 
 | 168 | 	width = *prop; | 
| Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 169 | 	prop = of_get_property(np, "linux,bootx-height", NULL); | 
| Benjamin Herrenschmidt | ab13446 | 2006-07-03 17:19:48 +1000 | [diff] [blame] | 170 | 	if (prop == NULL) | 
| Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 171 | 		prop = of_get_property(np, "height", NULL); | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 172 | 	if (prop == NULL) | 
 | 173 | 		return -EINVAL; | 
 | 174 | 	height = *prop; | 
| Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 175 | 	prop = of_get_property(np, "linux,bootx-depth", NULL); | 
| Benjamin Herrenschmidt | ab13446 | 2006-07-03 17:19:48 +1000 | [diff] [blame] | 176 | 	if (prop == NULL) | 
| Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 177 | 		prop = of_get_property(np, "depth", NULL); | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 178 | 	if (prop == NULL) | 
 | 179 | 		return -EINVAL; | 
 | 180 | 	depth = *prop; | 
 | 181 | 	pitch = width * ((depth + 7) / 8); | 
| Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 182 | 	prop = of_get_property(np, "linux,bootx-linebytes", NULL); | 
| Benjamin Herrenschmidt | ab13446 | 2006-07-03 17:19:48 +1000 | [diff] [blame] | 183 | 	if (prop == NULL) | 
| Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 184 | 		prop = of_get_property(np, "linebytes", NULL); | 
| Benjamin Herrenschmidt | 441cbd8 | 2006-10-26 15:38:10 +1000 | [diff] [blame] | 185 | 	if (prop && *prop != 0xffffffffu) | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 186 | 		pitch = *prop; | 
 | 187 | 	if (pitch == 1) | 
 | 188 | 		pitch = 0x1000; | 
| Benjamin Herrenschmidt | b7a2da1 | 2007-11-13 13:46:52 +1100 | [diff] [blame] | 189 | 	prop = of_get_property(np, "linux,bootx-addr", NULL); | 
 | 190 | 	if (prop == NULL) | 
 | 191 | 		prop = of_get_property(np, "address", NULL); | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 192 | 	if (prop) | 
 | 193 | 		address = *prop; | 
 | 194 |  | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 195 | 	/* FIXME: Add support for PCI reg properties. Right now, only | 
 | 196 | 	 * reliable on macs | 
 | 197 | 	 */ | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 198 | 	if (address == 0) | 
 | 199 | 		return -EINVAL; | 
 | 200 |  | 
 | 201 | 	g_loc_X = 0; | 
 | 202 | 	g_loc_Y = 0; | 
 | 203 | 	g_max_loc_X = width / 8; | 
 | 204 | 	g_max_loc_Y = height / 16; | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 205 | 	dispDeviceBase = (unsigned char *)address; | 
 | 206 | 	dispDeviceRowBytes = pitch; | 
| Benjamin Herrenschmidt | ab13446 | 2006-07-03 17:19:48 +1000 | [diff] [blame] | 207 | 	dispDeviceDepth = depth == 15 ? 16 : depth; | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 208 | 	dispDeviceRect[0] = dispDeviceRect[1] = 0; | 
 | 209 | 	dispDeviceRect[2] = width; | 
 | 210 | 	dispDeviceRect[3] = height; | 
 | 211 |  | 
 | 212 | 	map_boot_text(); | 
 | 213 |  | 
 | 214 | 	return 0; | 
 | 215 | } | 
 | 216 |  | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 217 | int __init btext_find_display(int allow_nonstdout) | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 218 | { | 
| Jeremy Kerr | a7f67bd | 2006-07-12 15:35:54 +1000 | [diff] [blame] | 219 | 	const char *name; | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 220 | 	struct device_node *np = NULL;  | 
 | 221 | 	int rc = -ENODEV; | 
 | 222 |  | 
| Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 223 | 	name = of_get_property(of_chosen, "linux,stdout-path", NULL); | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 224 | 	if (name != NULL) { | 
 | 225 | 		np = of_find_node_by_path(name); | 
 | 226 | 		if (np != NULL) { | 
 | 227 | 			if (strcmp(np->type, "display") != 0) { | 
 | 228 | 				printk("boot stdout isn't a display !\n"); | 
 | 229 | 				of_node_put(np); | 
 | 230 | 				np = NULL; | 
 | 231 | 			} | 
 | 232 | 		} | 
 | 233 | 	} | 
 | 234 | 	if (np) | 
 | 235 | 		rc = btext_initialize(np); | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 236 | 	if (rc == 0 || !allow_nonstdout) | 
 | 237 | 		return rc; | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 238 |  | 
| Cyrill Gorcunov | 3329c0d | 2007-11-30 06:45:47 +1100 | [diff] [blame] | 239 | 	for_each_node_by_type(np, "display") { | 
| Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 240 | 		if (of_get_property(np, "linux,opened", NULL)) { | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 241 | 			printk("trying %s ...\n", np->full_name); | 
 | 242 | 			rc = btext_initialize(np); | 
 | 243 | 			printk("result: %d\n", rc); | 
 | 244 | 		} | 
 | 245 | 		if (rc == 0) | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 246 | 			break; | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 247 | 	} | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 248 | 	return rc; | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 249 | } | 
 | 250 |  | 
 | 251 | /* Calc the base address of a given point (x,y) */ | 
 | 252 | static unsigned char * calc_base(int x, int y) | 
 | 253 | { | 
 | 254 | 	unsigned char *base; | 
 | 255 |  | 
 | 256 | 	base = logicalDisplayBase; | 
 | 257 | 	if (base == 0) | 
 | 258 | 		base = dispDeviceBase; | 
 | 259 | 	base += (x + dispDeviceRect[0]) * (dispDeviceDepth >> 3); | 
 | 260 | 	base += (y + dispDeviceRect[1]) * dispDeviceRowBytes; | 
 | 261 | 	return base; | 
 | 262 | } | 
 | 263 |  | 
 | 264 | /* Adjust the display to a new resolution */ | 
 | 265 | void btext_update_display(unsigned long phys, int width, int height, | 
 | 266 | 			  int depth, int pitch) | 
 | 267 | { | 
 | 268 | 	if (dispDeviceBase == 0) | 
 | 269 | 		return; | 
 | 270 |  | 
 | 271 | 	/* check it's the same frame buffer (within 256MB) */ | 
 | 272 | 	if ((phys ^ (unsigned long)dispDeviceBase) & 0xf0000000) | 
 | 273 | 		return; | 
 | 274 |  | 
 | 275 | 	dispDeviceBase = (__u8 *) phys; | 
 | 276 | 	dispDeviceRect[0] = 0; | 
 | 277 | 	dispDeviceRect[1] = 0; | 
 | 278 | 	dispDeviceRect[2] = width; | 
 | 279 | 	dispDeviceRect[3] = height; | 
 | 280 | 	dispDeviceDepth = depth; | 
 | 281 | 	dispDeviceRowBytes = pitch; | 
 | 282 | 	if (boot_text_mapped) { | 
 | 283 | 		iounmap(logicalDisplayBase); | 
 | 284 | 		boot_text_mapped = 0; | 
 | 285 | 	} | 
 | 286 | 	map_boot_text(); | 
 | 287 | 	g_loc_X = 0; | 
 | 288 | 	g_loc_Y = 0; | 
 | 289 | 	g_max_loc_X = width / 8; | 
 | 290 | 	g_max_loc_Y = height / 16; | 
 | 291 | } | 
 | 292 | EXPORT_SYMBOL(btext_update_display); | 
 | 293 |  | 
 | 294 | void btext_clearscreen(void) | 
 | 295 | { | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 296 | 	unsigned int *base	= (unsigned int *)calc_base(0, 0); | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 297 | 	unsigned long width 	= ((dispDeviceRect[2] - dispDeviceRect[0]) * | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 298 | 					(dispDeviceDepth >> 3)) >> 2; | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 299 | 	int i,j; | 
 | 300 |  | 
 | 301 | 	for (i=0; i<(dispDeviceRect[3] - dispDeviceRect[1]); i++) | 
 | 302 | 	{ | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 303 | 		unsigned int *ptr = base; | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 304 | 		for(j=width; j; --j) | 
 | 305 | 			*(ptr++) = 0; | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 306 | 		base += (dispDeviceRowBytes >> 2); | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 307 | 	} | 
 | 308 | } | 
 | 309 |  | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 310 | void btext_flushscreen(void) | 
 | 311 | { | 
 | 312 | 	unsigned int *base	= (unsigned int *)calc_base(0, 0); | 
 | 313 | 	unsigned long width 	= ((dispDeviceRect[2] - dispDeviceRect[0]) * | 
 | 314 | 					(dispDeviceDepth >> 3)) >> 2; | 
 | 315 | 	int i,j; | 
 | 316 |  | 
 | 317 | 	for (i=0; i < (dispDeviceRect[3] - dispDeviceRect[1]); i++) | 
 | 318 | 	{ | 
 | 319 | 		unsigned int *ptr = base; | 
 | 320 | 		for(j = width; j > 0; j -= 8) { | 
 | 321 | 			__asm__ __volatile__ ("dcbst 0,%0" :: "r" (ptr)); | 
 | 322 | 			ptr += 8; | 
 | 323 | 		} | 
 | 324 | 		base += (dispDeviceRowBytes >> 2); | 
 | 325 | 	} | 
 | 326 | 	__asm__ __volatile__ ("sync" ::: "memory"); | 
 | 327 | } | 
 | 328 |  | 
 | 329 | void btext_flushline(void) | 
 | 330 | { | 
 | 331 | 	unsigned int *base	= (unsigned int *)calc_base(0, g_loc_Y << 4); | 
 | 332 | 	unsigned long width 	= ((dispDeviceRect[2] - dispDeviceRect[0]) * | 
 | 333 | 					(dispDeviceDepth >> 3)) >> 2; | 
 | 334 | 	int i,j; | 
 | 335 |  | 
 | 336 | 	for (i=0; i < 16; i++) | 
 | 337 | 	{ | 
 | 338 | 		unsigned int *ptr = base; | 
 | 339 | 		for(j = width; j > 0; j -= 8) { | 
 | 340 | 			__asm__ __volatile__ ("dcbst 0,%0" :: "r" (ptr)); | 
 | 341 | 			ptr += 8; | 
 | 342 | 		} | 
 | 343 | 		base += (dispDeviceRowBytes >> 2); | 
 | 344 | 	} | 
 | 345 | 	__asm__ __volatile__ ("sync" ::: "memory"); | 
 | 346 | } | 
 | 347 |  | 
 | 348 |  | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 349 | #ifndef NO_SCROLL | 
 | 350 | static void scrollscreen(void) | 
 | 351 | { | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 352 | 	unsigned int *src     	= (unsigned int *)calc_base(0,16); | 
 | 353 | 	unsigned int *dst     	= (unsigned int *)calc_base(0,0); | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 354 | 	unsigned long width    	= ((dispDeviceRect[2] - dispDeviceRect[0]) * | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 355 | 				   (dispDeviceDepth >> 3)) >> 2; | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 356 | 	int i,j; | 
 | 357 |  | 
 | 358 | 	for (i=0; i<(dispDeviceRect[3] - dispDeviceRect[1] - 16); i++) | 
 | 359 | 	{ | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 360 | 		unsigned int *src_ptr = src; | 
 | 361 | 		unsigned int *dst_ptr = dst; | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 362 | 		for(j=width; j; --j) | 
 | 363 | 			*(dst_ptr++) = *(src_ptr++); | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 364 | 		src += (dispDeviceRowBytes >> 2); | 
 | 365 | 		dst += (dispDeviceRowBytes >> 2); | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 366 | 	} | 
 | 367 | 	for (i=0; i<16; i++) | 
 | 368 | 	{ | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 369 | 		unsigned int *dst_ptr = dst; | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 370 | 		for(j=width; j; --j) | 
 | 371 | 			*(dst_ptr++) = 0; | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 372 | 		dst += (dispDeviceRowBytes >> 2); | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 373 | 	} | 
 | 374 | } | 
 | 375 | #endif /* ndef NO_SCROLL */ | 
 | 376 |  | 
 | 377 | void btext_drawchar(char c) | 
 | 378 | { | 
 | 379 | 	int cline = 0; | 
 | 380 | #ifdef NO_SCROLL | 
 | 381 | 	int x; | 
 | 382 | #endif | 
 | 383 | 	if (!boot_text_mapped) | 
 | 384 | 		return; | 
 | 385 |  | 
 | 386 | 	switch (c) { | 
 | 387 | 	case '\b': | 
 | 388 | 		if (g_loc_X > 0) | 
 | 389 | 			--g_loc_X; | 
 | 390 | 		break; | 
 | 391 | 	case '\t': | 
 | 392 | 		g_loc_X = (g_loc_X & -8) + 8; | 
 | 393 | 		break; | 
 | 394 | 	case '\r': | 
 | 395 | 		g_loc_X = 0; | 
 | 396 | 		break; | 
 | 397 | 	case '\n': | 
 | 398 | 		g_loc_X = 0; | 
 | 399 | 		g_loc_Y++; | 
 | 400 | 		cline = 1; | 
 | 401 | 		break; | 
 | 402 | 	default: | 
 | 403 | 		draw_byte(c, g_loc_X++, g_loc_Y); | 
 | 404 | 	} | 
 | 405 | 	if (g_loc_X >= g_max_loc_X) { | 
 | 406 | 		g_loc_X = 0; | 
 | 407 | 		g_loc_Y++; | 
 | 408 | 		cline = 1; | 
 | 409 | 	} | 
 | 410 | #ifndef NO_SCROLL | 
 | 411 | 	while (g_loc_Y >= g_max_loc_Y) { | 
 | 412 | 		scrollscreen(); | 
 | 413 | 		g_loc_Y--; | 
 | 414 | 	} | 
 | 415 | #else | 
 | 416 | 	/* wrap around from bottom to top of screen so we don't | 
 | 417 | 	   waste time scrolling each line.  -- paulus. */ | 
 | 418 | 	if (g_loc_Y >= g_max_loc_Y) | 
 | 419 | 		g_loc_Y = 0; | 
 | 420 | 	if (cline) { | 
 | 421 | 		for (x = 0; x < g_max_loc_X; ++x) | 
 | 422 | 			draw_byte(' ', x, g_loc_Y); | 
 | 423 | 	} | 
 | 424 | #endif | 
 | 425 | } | 
 | 426 |  | 
 | 427 | void btext_drawstring(const char *c) | 
 | 428 | { | 
 | 429 | 	if (!boot_text_mapped) | 
 | 430 | 		return; | 
 | 431 | 	while (*c) | 
 | 432 | 		btext_drawchar(*c++); | 
 | 433 | } | 
 | 434 |  | 
| Benjamin Herrenschmidt | 51d3082 | 2005-11-23 17:57:25 +1100 | [diff] [blame] | 435 | void btext_drawtext(const char *c, unsigned int len) | 
 | 436 | { | 
 | 437 | 	if (!boot_text_mapped) | 
 | 438 | 		return; | 
 | 439 | 	while (len--) | 
 | 440 | 		btext_drawchar(*c++); | 
 | 441 | } | 
 | 442 |  | 
| Paul Mackerras | 9b6b563 | 2005-10-06 12:06:20 +1000 | [diff] [blame] | 443 | void btext_drawhex(unsigned long v) | 
 | 444 | { | 
 | 445 | 	char *hex_table = "0123456789abcdef"; | 
 | 446 |  | 
 | 447 | 	if (!boot_text_mapped) | 
 | 448 | 		return; | 
 | 449 | #ifdef CONFIG_PPC64 | 
 | 450 | 	btext_drawchar(hex_table[(v >> 60) & 0x0000000FUL]); | 
 | 451 | 	btext_drawchar(hex_table[(v >> 56) & 0x0000000FUL]); | 
 | 452 | 	btext_drawchar(hex_table[(v >> 52) & 0x0000000FUL]); | 
 | 453 | 	btext_drawchar(hex_table[(v >> 48) & 0x0000000FUL]); | 
 | 454 | 	btext_drawchar(hex_table[(v >> 44) & 0x0000000FUL]); | 
 | 455 | 	btext_drawchar(hex_table[(v >> 40) & 0x0000000FUL]); | 
 | 456 | 	btext_drawchar(hex_table[(v >> 36) & 0x0000000FUL]); | 
 | 457 | 	btext_drawchar(hex_table[(v >> 32) & 0x0000000FUL]); | 
 | 458 | #endif | 
 | 459 | 	btext_drawchar(hex_table[(v >> 28) & 0x0000000FUL]); | 
 | 460 | 	btext_drawchar(hex_table[(v >> 24) & 0x0000000FUL]); | 
 | 461 | 	btext_drawchar(hex_table[(v >> 20) & 0x0000000FUL]); | 
 | 462 | 	btext_drawchar(hex_table[(v >> 16) & 0x0000000FUL]); | 
 | 463 | 	btext_drawchar(hex_table[(v >> 12) & 0x0000000FUL]); | 
 | 464 | 	btext_drawchar(hex_table[(v >>  8) & 0x0000000FUL]); | 
 | 465 | 	btext_drawchar(hex_table[(v >>  4) & 0x0000000FUL]); | 
 | 466 | 	btext_drawchar(hex_table[(v >>  0) & 0x0000000FUL]); | 
 | 467 | 	btext_drawchar(' '); | 
 | 468 | } | 
 | 469 |  | 
 | 470 | static void draw_byte(unsigned char c, long locX, long locY) | 
 | 471 | { | 
 | 472 | 	unsigned char *base	= calc_base(locX << 3, locY << 4); | 
 | 473 | 	unsigned char *font	= &vga_font[((unsigned int)c) * 16]; | 
 | 474 | 	int rb			= dispDeviceRowBytes; | 
 | 475 |  | 
 | 476 | 	switch(dispDeviceDepth) { | 
 | 477 | 	case 24: | 
 | 478 | 	case 32: | 
 | 479 | 		draw_byte_32(font, (unsigned int *)base, rb); | 
 | 480 | 		break; | 
 | 481 | 	case 15: | 
 | 482 | 	case 16: | 
 | 483 | 		draw_byte_16(font, (unsigned int *)base, rb); | 
 | 484 | 		break; | 
 | 485 | 	case 8: | 
 | 486 | 		draw_byte_8(font, (unsigned int *)base, rb); | 
 | 487 | 		break; | 
 | 488 | 	} | 
 | 489 | } | 
 | 490 |  | 
 | 491 | static unsigned int expand_bits_8[16] = { | 
 | 492 | 	0x00000000, | 
 | 493 | 	0x000000ff, | 
 | 494 | 	0x0000ff00, | 
 | 495 | 	0x0000ffff, | 
 | 496 | 	0x00ff0000, | 
 | 497 | 	0x00ff00ff, | 
 | 498 | 	0x00ffff00, | 
 | 499 | 	0x00ffffff, | 
 | 500 | 	0xff000000, | 
 | 501 | 	0xff0000ff, | 
 | 502 | 	0xff00ff00, | 
 | 503 | 	0xff00ffff, | 
 | 504 | 	0xffff0000, | 
 | 505 | 	0xffff00ff, | 
 | 506 | 	0xffffff00, | 
 | 507 | 	0xffffffff | 
 | 508 | }; | 
 | 509 |  | 
 | 510 | static unsigned int expand_bits_16[4] = { | 
 | 511 | 	0x00000000, | 
 | 512 | 	0x0000ffff, | 
 | 513 | 	0xffff0000, | 
 | 514 | 	0xffffffff | 
 | 515 | }; | 
 | 516 |  | 
 | 517 |  | 
 | 518 | static void draw_byte_32(unsigned char *font, unsigned int *base, int rb) | 
 | 519 | { | 
 | 520 | 	int l, bits; | 
 | 521 | 	int fg = 0xFFFFFFFFUL; | 
 | 522 | 	int bg = 0x00000000UL; | 
 | 523 |  | 
 | 524 | 	for (l = 0; l < 16; ++l) | 
 | 525 | 	{ | 
 | 526 | 		bits = *font++; | 
 | 527 | 		base[0] = (-(bits >> 7) & fg) ^ bg; | 
 | 528 | 		base[1] = (-((bits >> 6) & 1) & fg) ^ bg; | 
 | 529 | 		base[2] = (-((bits >> 5) & 1) & fg) ^ bg; | 
 | 530 | 		base[3] = (-((bits >> 4) & 1) & fg) ^ bg; | 
 | 531 | 		base[4] = (-((bits >> 3) & 1) & fg) ^ bg; | 
 | 532 | 		base[5] = (-((bits >> 2) & 1) & fg) ^ bg; | 
 | 533 | 		base[6] = (-((bits >> 1) & 1) & fg) ^ bg; | 
 | 534 | 		base[7] = (-(bits & 1) & fg) ^ bg; | 
 | 535 | 		base = (unsigned int *) ((char *)base + rb); | 
 | 536 | 	} | 
 | 537 | } | 
 | 538 |  | 
 | 539 | static void draw_byte_16(unsigned char *font, unsigned int *base, int rb) | 
 | 540 | { | 
 | 541 | 	int l, bits; | 
 | 542 | 	int fg = 0xFFFFFFFFUL; | 
 | 543 | 	int bg = 0x00000000UL; | 
 | 544 | 	unsigned int *eb = (int *)expand_bits_16; | 
 | 545 |  | 
 | 546 | 	for (l = 0; l < 16; ++l) | 
 | 547 | 	{ | 
 | 548 | 		bits = *font++; | 
 | 549 | 		base[0] = (eb[bits >> 6] & fg) ^ bg; | 
 | 550 | 		base[1] = (eb[(bits >> 4) & 3] & fg) ^ bg; | 
 | 551 | 		base[2] = (eb[(bits >> 2) & 3] & fg) ^ bg; | 
 | 552 | 		base[3] = (eb[bits & 3] & fg) ^ bg; | 
 | 553 | 		base = (unsigned int *) ((char *)base + rb); | 
 | 554 | 	} | 
 | 555 | } | 
 | 556 |  | 
 | 557 | static void draw_byte_8(unsigned char *font, unsigned int *base, int rb) | 
 | 558 | { | 
 | 559 | 	int l, bits; | 
 | 560 | 	int fg = 0x0F0F0F0FUL; | 
 | 561 | 	int bg = 0x00000000UL; | 
 | 562 | 	unsigned int *eb = (int *)expand_bits_8; | 
 | 563 |  | 
 | 564 | 	for (l = 0; l < 16; ++l) | 
 | 565 | 	{ | 
 | 566 | 		bits = *font++; | 
 | 567 | 		base[0] = (eb[bits >> 4] & fg) ^ bg; | 
 | 568 | 		base[1] = (eb[bits & 0xf] & fg) ^ bg; | 
 | 569 | 		base = (unsigned int *) ((char *)base + rb); | 
 | 570 | 	} | 
 | 571 | } | 
 | 572 |  | 
 | 573 | static unsigned char vga_font[cmapsz] = { | 
 | 574 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 575 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x81, 0xa5, 0x81, 0x81, 0xbd, | 
 | 576 | 0x99, 0x81, 0x81, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0xff, | 
 | 577 | 0xdb, 0xff, 0xff, 0xc3, 0xe7, 0xff, 0xff, 0x7e, 0x00, 0x00, 0x00, 0x00, | 
 | 578 | 0x00, 0x00, 0x00, 0x00, 0x6c, 0xfe, 0xfe, 0xfe, 0xfe, 0x7c, 0x38, 0x10, | 
 | 579 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x38, 0x7c, 0xfe, | 
 | 580 | 0x7c, 0x38, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, | 
 | 581 | 0x3c, 0x3c, 0xe7, 0xe7, 0xe7, 0x18, 0x18, 0x3c, 0x00, 0x00, 0x00, 0x00, | 
 | 582 | 0x00, 0x00, 0x00, 0x18, 0x3c, 0x7e, 0xff, 0xff, 0x7e, 0x18, 0x18, 0x3c, | 
 | 583 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x3c, | 
 | 584 | 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, | 
 | 585 | 0xff, 0xff, 0xe7, 0xc3, 0xc3, 0xe7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | 
 | 586 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x66, 0x42, 0x42, 0x66, 0x3c, 0x00, | 
 | 587 | 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0x99, 0xbd, | 
 | 588 | 0xbd, 0x99, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x1e, 0x0e, | 
 | 589 | 0x1a, 0x32, 0x78, 0xcc, 0xcc, 0xcc, 0xcc, 0x78, 0x00, 0x00, 0x00, 0x00, | 
 | 590 | 0x00, 0x00, 0x3c, 0x66, 0x66, 0x66, 0x66, 0x3c, 0x18, 0x7e, 0x18, 0x18, | 
 | 591 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x33, 0x3f, 0x30, 0x30, 0x30, | 
 | 592 | 0x30, 0x70, 0xf0, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0x63, | 
 | 593 | 0x7f, 0x63, 0x63, 0x63, 0x63, 0x67, 0xe7, 0xe6, 0xc0, 0x00, 0x00, 0x00, | 
 | 594 | 0x00, 0x00, 0x00, 0x18, 0x18, 0xdb, 0x3c, 0xe7, 0x3c, 0xdb, 0x18, 0x18, | 
 | 595 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfe, 0xf8, | 
 | 596 | 0xf0, 0xe0, 0xc0, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x06, 0x0e, | 
 | 597 | 0x1e, 0x3e, 0xfe, 0x3e, 0x1e, 0x0e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x00, | 
 | 598 | 0x00, 0x00, 0x18, 0x3c, 0x7e, 0x18, 0x18, 0x18, 0x7e, 0x3c, 0x18, 0x00, | 
 | 599 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, | 
 | 600 | 0x66, 0x00, 0x66, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xdb, | 
 | 601 | 0xdb, 0xdb, 0x7b, 0x1b, 0x1b, 0x1b, 0x1b, 0x1b, 0x00, 0x00, 0x00, 0x00, | 
 | 602 | 0x00, 0x7c, 0xc6, 0x60, 0x38, 0x6c, 0xc6, 0xc6, 0x6c, 0x38, 0x0c, 0xc6, | 
 | 603 | 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 604 | 0xfe, 0xfe, 0xfe, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x3c, | 
 | 605 | 0x7e, 0x18, 0x18, 0x18, 0x7e, 0x3c, 0x18, 0x7e, 0x00, 0x00, 0x00, 0x00, | 
 | 606 | 0x00, 0x00, 0x18, 0x3c, 0x7e, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, | 
 | 607 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, | 
 | 608 | 0x18, 0x7e, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 609 | 0x00, 0x18, 0x0c, 0xfe, 0x0c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 610 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x60, 0xfe, 0x60, 0x30, 0x00, 0x00, | 
 | 611 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xc0, | 
 | 612 | 0xc0, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 613 | 0x00, 0x24, 0x66, 0xff, 0x66, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 614 | 0x00, 0x00, 0x00, 0x00, 0x10, 0x38, 0x38, 0x7c, 0x7c, 0xfe, 0xfe, 0x00, | 
 | 615 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xfe, 0x7c, 0x7c, | 
 | 616 | 0x38, 0x38, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 617 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 618 | 0x00, 0x00, 0x18, 0x3c, 0x3c, 0x3c, 0x18, 0x18, 0x18, 0x00, 0x18, 0x18, | 
 | 619 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x66, 0x66, 0x24, 0x00, 0x00, 0x00, | 
 | 620 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, | 
 | 621 | 0x6c, 0xfe, 0x6c, 0x6c, 0x6c, 0xfe, 0x6c, 0x6c, 0x00, 0x00, 0x00, 0x00, | 
 | 622 | 0x18, 0x18, 0x7c, 0xc6, 0xc2, 0xc0, 0x7c, 0x06, 0x06, 0x86, 0xc6, 0x7c, | 
 | 623 | 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc2, 0xc6, 0x0c, 0x18, | 
 | 624 | 0x30, 0x60, 0xc6, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x6c, | 
 | 625 | 0x6c, 0x38, 0x76, 0xdc, 0xcc, 0xcc, 0xcc, 0x76, 0x00, 0x00, 0x00, 0x00, | 
 | 626 | 0x00, 0x30, 0x30, 0x30, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 627 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x18, 0x30, 0x30, 0x30, 0x30, | 
 | 628 | 0x30, 0x30, 0x18, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x18, | 
 | 629 | 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x18, 0x30, 0x00, 0x00, 0x00, 0x00, | 
 | 630 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x3c, 0xff, 0x3c, 0x66, 0x00, 0x00, | 
 | 631 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x7e, | 
 | 632 | 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 633 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x18, 0x30, 0x00, 0x00, 0x00, | 
 | 634 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, | 
 | 635 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 636 | 0x00, 0x00, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 637 | 0x02, 0x06, 0x0c, 0x18, 0x30, 0x60, 0xc0, 0x80, 0x00, 0x00, 0x00, 0x00, | 
 | 638 | 0x00, 0x00, 0x7c, 0xc6, 0xc6, 0xce, 0xde, 0xf6, 0xe6, 0xc6, 0xc6, 0x7c, | 
 | 639 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x38, 0x78, 0x18, 0x18, 0x18, | 
 | 640 | 0x18, 0x18, 0x18, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, | 
 | 641 | 0x06, 0x0c, 0x18, 0x30, 0x60, 0xc0, 0xc6, 0xfe, 0x00, 0x00, 0x00, 0x00, | 
 | 642 | 0x00, 0x00, 0x7c, 0xc6, 0x06, 0x06, 0x3c, 0x06, 0x06, 0x06, 0xc6, 0x7c, | 
 | 643 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x1c, 0x3c, 0x6c, 0xcc, 0xfe, | 
 | 644 | 0x0c, 0x0c, 0x0c, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xc0, | 
 | 645 | 0xc0, 0xc0, 0xfc, 0x06, 0x06, 0x06, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, | 
 | 646 | 0x00, 0x00, 0x38, 0x60, 0xc0, 0xc0, 0xfc, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, | 
 | 647 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xc6, 0x06, 0x06, 0x0c, 0x18, | 
 | 648 | 0x30, 0x30, 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, | 
 | 649 | 0xc6, 0xc6, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, | 
 | 650 | 0x00, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0x7e, 0x06, 0x06, 0x06, 0x0c, 0x78, | 
 | 651 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x00, 0x00, | 
 | 652 | 0x00, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 653 | 0x18, 0x18, 0x00, 0x00, 0x00, 0x18, 0x18, 0x30, 0x00, 0x00, 0x00, 0x00, | 
 | 654 | 0x00, 0x00, 0x00, 0x06, 0x0c, 0x18, 0x30, 0x60, 0x30, 0x18, 0x0c, 0x06, | 
 | 655 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, | 
 | 656 | 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, | 
 | 657 | 0x30, 0x18, 0x0c, 0x06, 0x0c, 0x18, 0x30, 0x60, 0x00, 0x00, 0x00, 0x00, | 
 | 658 | 0x00, 0x00, 0x7c, 0xc6, 0xc6, 0x0c, 0x18, 0x18, 0x18, 0x00, 0x18, 0x18, | 
 | 659 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xde, 0xde, | 
 | 660 | 0xde, 0xdc, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x38, | 
 | 661 | 0x6c, 0xc6, 0xc6, 0xfe, 0xc6, 0xc6, 0xc6, 0xc6, 0x00, 0x00, 0x00, 0x00, | 
 | 662 | 0x00, 0x00, 0xfc, 0x66, 0x66, 0x66, 0x7c, 0x66, 0x66, 0x66, 0x66, 0xfc, | 
 | 663 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x66, 0xc2, 0xc0, 0xc0, 0xc0, | 
 | 664 | 0xc0, 0xc2, 0x66, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x6c, | 
 | 665 | 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x6c, 0xf8, 0x00, 0x00, 0x00, 0x00, | 
 | 666 | 0x00, 0x00, 0xfe, 0x66, 0x62, 0x68, 0x78, 0x68, 0x60, 0x62, 0x66, 0xfe, | 
 | 667 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x66, 0x62, 0x68, 0x78, 0x68, | 
 | 668 | 0x60, 0x60, 0x60, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x66, | 
 | 669 | 0xc2, 0xc0, 0xc0, 0xde, 0xc6, 0xc6, 0x66, 0x3a, 0x00, 0x00, 0x00, 0x00, | 
 | 670 | 0x00, 0x00, 0xc6, 0xc6, 0xc6, 0xc6, 0xfe, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, | 
 | 671 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, 0x18, 0x18, 0x18, 0x18, | 
 | 672 | 0x18, 0x18, 0x18, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x0c, | 
 | 673 | 0x0c, 0x0c, 0x0c, 0x0c, 0xcc, 0xcc, 0xcc, 0x78, 0x00, 0x00, 0x00, 0x00, | 
 | 674 | 0x00, 0x00, 0xe6, 0x66, 0x66, 0x6c, 0x78, 0x78, 0x6c, 0x66, 0x66, 0xe6, | 
 | 675 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x60, 0x60, 0x60, 0x60, 0x60, | 
 | 676 | 0x60, 0x62, 0x66, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0xe7, | 
 | 677 | 0xff, 0xff, 0xdb, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0x00, 0x00, 0x00, 0x00, | 
 | 678 | 0x00, 0x00, 0xc6, 0xe6, 0xf6, 0xfe, 0xde, 0xce, 0xc6, 0xc6, 0xc6, 0xc6, | 
 | 679 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, | 
 | 680 | 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x66, | 
 | 681 | 0x66, 0x66, 0x7c, 0x60, 0x60, 0x60, 0x60, 0xf0, 0x00, 0x00, 0x00, 0x00, | 
 | 682 | 0x00, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xd6, 0xde, 0x7c, | 
 | 683 | 0x0c, 0x0e, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x66, 0x66, 0x66, 0x7c, 0x6c, | 
 | 684 | 0x66, 0x66, 0x66, 0xe6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, | 
 | 685 | 0xc6, 0x60, 0x38, 0x0c, 0x06, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, | 
 | 686 | 0x00, 0x00, 0xff, 0xdb, 0x99, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x3c, | 
 | 687 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, | 
 | 688 | 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0xc3, | 
 | 689 | 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0x66, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, | 
 | 690 | 0x00, 0x00, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xdb, 0xdb, 0xff, 0x66, 0x66, | 
 | 691 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0xc3, 0x66, 0x3c, 0x18, 0x18, | 
 | 692 | 0x3c, 0x66, 0xc3, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0xc3, | 
 | 693 | 0xc3, 0x66, 0x3c, 0x18, 0x18, 0x18, 0x18, 0x3c, 0x00, 0x00, 0x00, 0x00, | 
 | 694 | 0x00, 0x00, 0xff, 0xc3, 0x86, 0x0c, 0x18, 0x30, 0x60, 0xc1, 0xc3, 0xff, | 
 | 695 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x30, 0x30, 0x30, 0x30, 0x30, | 
 | 696 | 0x30, 0x30, 0x30, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, | 
 | 697 | 0xc0, 0xe0, 0x70, 0x38, 0x1c, 0x0e, 0x06, 0x02, 0x00, 0x00, 0x00, 0x00, | 
 | 698 | 0x00, 0x00, 0x3c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x3c, | 
 | 699 | 0x00, 0x00, 0x00, 0x00, 0x10, 0x38, 0x6c, 0xc6, 0x00, 0x00, 0x00, 0x00, | 
 | 700 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 701 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, | 
 | 702 | 0x30, 0x30, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 703 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x0c, 0x7c, | 
 | 704 | 0xcc, 0xcc, 0xcc, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x60, | 
 | 705 | 0x60, 0x78, 0x6c, 0x66, 0x66, 0x66, 0x66, 0x7c, 0x00, 0x00, 0x00, 0x00, | 
 | 706 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, 0xc0, 0xc0, 0xc0, 0xc6, 0x7c, | 
 | 707 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x0c, 0x0c, 0x3c, 0x6c, 0xcc, | 
 | 708 | 0xcc, 0xcc, 0xcc, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 709 | 0x00, 0x7c, 0xc6, 0xfe, 0xc0, 0xc0, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, | 
 | 710 | 0x00, 0x00, 0x38, 0x6c, 0x64, 0x60, 0xf0, 0x60, 0x60, 0x60, 0x60, 0xf0, | 
 | 711 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0xcc, 0xcc, | 
 | 712 | 0xcc, 0xcc, 0xcc, 0x7c, 0x0c, 0xcc, 0x78, 0x00, 0x00, 0x00, 0xe0, 0x60, | 
 | 713 | 0x60, 0x6c, 0x76, 0x66, 0x66, 0x66, 0x66, 0xe6, 0x00, 0x00, 0x00, 0x00, | 
 | 714 | 0x00, 0x00, 0x18, 0x18, 0x00, 0x38, 0x18, 0x18, 0x18, 0x18, 0x18, 0x3c, | 
 | 715 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x06, 0x00, 0x0e, 0x06, 0x06, | 
 | 716 | 0x06, 0x06, 0x06, 0x06, 0x66, 0x66, 0x3c, 0x00, 0x00, 0x00, 0xe0, 0x60, | 
 | 717 | 0x60, 0x66, 0x6c, 0x78, 0x78, 0x6c, 0x66, 0xe6, 0x00, 0x00, 0x00, 0x00, | 
 | 718 | 0x00, 0x00, 0x38, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x3c, | 
 | 719 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xff, 0xdb, | 
 | 720 | 0xdb, 0xdb, 0xdb, 0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 721 | 0x00, 0xdc, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x00, 0x00, 0x00, 0x00, | 
 | 722 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, | 
 | 723 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x66, 0x66, | 
 | 724 | 0x66, 0x66, 0x66, 0x7c, 0x60, 0x60, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 725 | 0x00, 0x76, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0x7c, 0x0c, 0x0c, 0x1e, 0x00, | 
 | 726 | 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x76, 0x66, 0x60, 0x60, 0x60, 0xf0, | 
 | 727 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, 0x60, | 
 | 728 | 0x38, 0x0c, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x30, | 
 | 729 | 0x30, 0xfc, 0x30, 0x30, 0x30, 0x30, 0x36, 0x1c, 0x00, 0x00, 0x00, 0x00, | 
 | 730 | 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0x76, | 
 | 731 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0xc3, 0xc3, | 
 | 732 | 0xc3, 0x66, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 733 | 0x00, 0xc3, 0xc3, 0xc3, 0xdb, 0xdb, 0xff, 0x66, 0x00, 0x00, 0x00, 0x00, | 
 | 734 | 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0x66, 0x3c, 0x18, 0x3c, 0x66, 0xc3, | 
 | 735 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0xc6, 0xc6, | 
 | 736 | 0xc6, 0xc6, 0xc6, 0x7e, 0x06, 0x0c, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 737 | 0x00, 0xfe, 0xcc, 0x18, 0x30, 0x60, 0xc6, 0xfe, 0x00, 0x00, 0x00, 0x00, | 
 | 738 | 0x00, 0x00, 0x0e, 0x18, 0x18, 0x18, 0x70, 0x18, 0x18, 0x18, 0x18, 0x0e, | 
 | 739 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x18, 0x18, 0x00, 0x18, | 
 | 740 | 0x18, 0x18, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x18, | 
 | 741 | 0x18, 0x18, 0x0e, 0x18, 0x18, 0x18, 0x18, 0x70, 0x00, 0x00, 0x00, 0x00, | 
 | 742 | 0x00, 0x00, 0x76, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 743 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x38, 0x6c, 0xc6, | 
 | 744 | 0xc6, 0xc6, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x66, | 
 | 745 | 0xc2, 0xc0, 0xc0, 0xc0, 0xc2, 0x66, 0x3c, 0x0c, 0x06, 0x7c, 0x00, 0x00, | 
 | 746 | 0x00, 0x00, 0xcc, 0x00, 0x00, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0x76, | 
 | 747 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x18, 0x30, 0x00, 0x7c, 0xc6, 0xfe, | 
 | 748 | 0xc0, 0xc0, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x38, 0x6c, | 
 | 749 | 0x00, 0x78, 0x0c, 0x7c, 0xcc, 0xcc, 0xcc, 0x76, 0x00, 0x00, 0x00, 0x00, | 
 | 750 | 0x00, 0x00, 0xcc, 0x00, 0x00, 0x78, 0x0c, 0x7c, 0xcc, 0xcc, 0xcc, 0x76, | 
 | 751 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x30, 0x18, 0x00, 0x78, 0x0c, 0x7c, | 
 | 752 | 0xcc, 0xcc, 0xcc, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x6c, 0x38, | 
 | 753 | 0x00, 0x78, 0x0c, 0x7c, 0xcc, 0xcc, 0xcc, 0x76, 0x00, 0x00, 0x00, 0x00, | 
 | 754 | 0x00, 0x00, 0x00, 0x00, 0x3c, 0x66, 0x60, 0x60, 0x66, 0x3c, 0x0c, 0x06, | 
 | 755 | 0x3c, 0x00, 0x00, 0x00, 0x00, 0x10, 0x38, 0x6c, 0x00, 0x7c, 0xc6, 0xfe, | 
 | 756 | 0xc0, 0xc0, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0x00, | 
 | 757 | 0x00, 0x7c, 0xc6, 0xfe, 0xc0, 0xc0, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, | 
 | 758 | 0x00, 0x60, 0x30, 0x18, 0x00, 0x7c, 0xc6, 0xfe, 0xc0, 0xc0, 0xc6, 0x7c, | 
 | 759 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x38, 0x18, 0x18, | 
 | 760 | 0x18, 0x18, 0x18, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x3c, 0x66, | 
 | 761 | 0x00, 0x38, 0x18, 0x18, 0x18, 0x18, 0x18, 0x3c, 0x00, 0x00, 0x00, 0x00, | 
 | 762 | 0x00, 0x60, 0x30, 0x18, 0x00, 0x38, 0x18, 0x18, 0x18, 0x18, 0x18, 0x3c, | 
 | 763 | 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0x00, 0x10, 0x38, 0x6c, 0xc6, 0xc6, | 
 | 764 | 0xfe, 0xc6, 0xc6, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x38, 0x6c, 0x38, 0x00, | 
 | 765 | 0x38, 0x6c, 0xc6, 0xc6, 0xfe, 0xc6, 0xc6, 0xc6, 0x00, 0x00, 0x00, 0x00, | 
 | 766 | 0x18, 0x30, 0x60, 0x00, 0xfe, 0x66, 0x60, 0x7c, 0x60, 0x60, 0x66, 0xfe, | 
 | 767 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6e, 0x3b, 0x1b, | 
 | 768 | 0x7e, 0xd8, 0xdc, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x6c, | 
 | 769 | 0xcc, 0xcc, 0xfe, 0xcc, 0xcc, 0xcc, 0xcc, 0xce, 0x00, 0x00, 0x00, 0x00, | 
 | 770 | 0x00, 0x10, 0x38, 0x6c, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, | 
 | 771 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0x00, 0x00, 0x7c, 0xc6, 0xc6, | 
 | 772 | 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x30, 0x18, | 
 | 773 | 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, | 
 | 774 | 0x00, 0x30, 0x78, 0xcc, 0x00, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0x76, | 
 | 775 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x30, 0x18, 0x00, 0xcc, 0xcc, 0xcc, | 
 | 776 | 0xcc, 0xcc, 0xcc, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0x00, | 
 | 777 | 0x00, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7e, 0x06, 0x0c, 0x78, 0x00, | 
 | 778 | 0x00, 0xc6, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, | 
 | 779 | 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0x00, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, | 
 | 780 | 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x7e, | 
 | 781 | 0xc3, 0xc0, 0xc0, 0xc0, 0xc3, 0x7e, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, | 
 | 782 | 0x00, 0x38, 0x6c, 0x64, 0x60, 0xf0, 0x60, 0x60, 0x60, 0x60, 0xe6, 0xfc, | 
 | 783 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc3, 0x66, 0x3c, 0x18, 0xff, 0x18, | 
 | 784 | 0xff, 0x18, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x66, 0x66, | 
 | 785 | 0x7c, 0x62, 0x66, 0x6f, 0x66, 0x66, 0x66, 0xf3, 0x00, 0x00, 0x00, 0x00, | 
 | 786 | 0x00, 0x0e, 0x1b, 0x18, 0x18, 0x18, 0x7e, 0x18, 0x18, 0x18, 0x18, 0x18, | 
 | 787 | 0xd8, 0x70, 0x00, 0x00, 0x00, 0x18, 0x30, 0x60, 0x00, 0x78, 0x0c, 0x7c, | 
 | 788 | 0xcc, 0xcc, 0xcc, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x18, 0x30, | 
 | 789 | 0x00, 0x38, 0x18, 0x18, 0x18, 0x18, 0x18, 0x3c, 0x00, 0x00, 0x00, 0x00, | 
 | 790 | 0x00, 0x18, 0x30, 0x60, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, | 
 | 791 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x30, 0x60, 0x00, 0xcc, 0xcc, 0xcc, | 
 | 792 | 0xcc, 0xcc, 0xcc, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0xdc, | 
 | 793 | 0x00, 0xdc, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x00, 0x00, 0x00, 0x00, | 
 | 794 | 0x76, 0xdc, 0x00, 0xc6, 0xe6, 0xf6, 0xfe, 0xde, 0xce, 0xc6, 0xc6, 0xc6, | 
 | 795 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x6c, 0x6c, 0x3e, 0x00, 0x7e, 0x00, | 
 | 796 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x6c, 0x6c, | 
 | 797 | 0x38, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 798 | 0x00, 0x00, 0x30, 0x30, 0x00, 0x30, 0x30, 0x60, 0xc0, 0xc6, 0xc6, 0x7c, | 
 | 799 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xc0, | 
 | 800 | 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 801 | 0x00, 0x00, 0xfe, 0x06, 0x06, 0x06, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 802 | 0x00, 0xc0, 0xc0, 0xc2, 0xc6, 0xcc, 0x18, 0x30, 0x60, 0xce, 0x9b, 0x06, | 
 | 803 | 0x0c, 0x1f, 0x00, 0x00, 0x00, 0xc0, 0xc0, 0xc2, 0xc6, 0xcc, 0x18, 0x30, | 
 | 804 | 0x66, 0xce, 0x96, 0x3e, 0x06, 0x06, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, | 
 | 805 | 0x00, 0x18, 0x18, 0x18, 0x3c, 0x3c, 0x3c, 0x18, 0x00, 0x00, 0x00, 0x00, | 
 | 806 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x6c, 0xd8, 0x6c, 0x36, 0x00, 0x00, | 
 | 807 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x6c, 0x36, | 
 | 808 | 0x6c, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x44, 0x11, 0x44, | 
 | 809 | 0x11, 0x44, 0x11, 0x44, 0x11, 0x44, 0x11, 0x44, 0x11, 0x44, 0x11, 0x44, | 
 | 810 | 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa, | 
 | 811 | 0x55, 0xaa, 0x55, 0xaa, 0xdd, 0x77, 0xdd, 0x77, 0xdd, 0x77, 0xdd, 0x77, | 
 | 812 | 0xdd, 0x77, 0xdd, 0x77, 0xdd, 0x77, 0xdd, 0x77, 0x18, 0x18, 0x18, 0x18, | 
 | 813 | 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, | 
 | 814 | 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0xf8, 0x18, 0x18, 0x18, 0x18, | 
 | 815 | 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0xf8, 0x18, 0xf8, | 
 | 816 | 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x36, 0x36, 0x36, 0x36, | 
 | 817 | 0x36, 0x36, 0x36, 0xf6, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, | 
 | 818 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x36, 0x36, 0x36, 0x36, | 
 | 819 | 0x36, 0x36, 0x36, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x18, 0xf8, | 
 | 820 | 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x36, 0x36, 0x36, 0x36, | 
 | 821 | 0x36, 0xf6, 0x06, 0xf6, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, | 
 | 822 | 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, | 
 | 823 | 0x36, 0x36, 0x36, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x06, 0xf6, | 
 | 824 | 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, | 
 | 825 | 0x36, 0xf6, 0x06, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 826 | 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0xfe, 0x00, 0x00, 0x00, 0x00, | 
 | 827 | 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x18, 0x18, 0x18, 0xf8, 0x18, 0xf8, | 
 | 828 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 829 | 0x00, 0x00, 0x00, 0xf8, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, | 
 | 830 | 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x1f, 0x00, 0x00, 0x00, 0x00, | 
 | 831 | 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0xff, | 
 | 832 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 833 | 0x00, 0x00, 0x00, 0xff, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, | 
 | 834 | 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x1f, 0x18, 0x18, 0x18, 0x18, | 
 | 835 | 0x18, 0x18, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, | 
 | 836 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x18, 0x18, | 
 | 837 | 0x18, 0x18, 0x18, 0xff, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, | 
 | 838 | 0x18, 0x18, 0x18, 0x18, 0x18, 0x1f, 0x18, 0x1f, 0x18, 0x18, 0x18, 0x18, | 
 | 839 | 0x18, 0x18, 0x18, 0x18, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x37, | 
 | 840 | 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, | 
 | 841 | 0x36, 0x37, 0x30, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 842 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x30, 0x37, 0x36, 0x36, 0x36, 0x36, | 
 | 843 | 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0xf7, 0x00, 0xff, | 
 | 844 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 845 | 0x00, 0xff, 0x00, 0xf7, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, | 
 | 846 | 0x36, 0x36, 0x36, 0x36, 0x36, 0x37, 0x30, 0x37, 0x36, 0x36, 0x36, 0x36, | 
 | 847 | 0x36, 0x36, 0x36, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0xff, | 
 | 848 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x36, 0x36, 0x36, | 
 | 849 | 0x36, 0xf7, 0x00, 0xf7, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, | 
 | 850 | 0x18, 0x18, 0x18, 0x18, 0x18, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, | 
 | 851 | 0x00, 0x00, 0x00, 0x00, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0xff, | 
 | 852 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 853 | 0x00, 0xff, 0x00, 0xff, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, | 
 | 854 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x36, 0x36, 0x36, 0x36, | 
 | 855 | 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x3f, | 
 | 856 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x18, 0x18, | 
 | 857 | 0x18, 0x1f, 0x18, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 858 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x18, 0x1f, 0x18, 0x18, 0x18, 0x18, | 
 | 859 | 0x18, 0x18, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, | 
 | 860 | 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, | 
 | 861 | 0x36, 0x36, 0x36, 0xff, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, | 
 | 862 | 0x18, 0x18, 0x18, 0x18, 0x18, 0xff, 0x18, 0xff, 0x18, 0x18, 0x18, 0x18, | 
 | 863 | 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0xf8, | 
 | 864 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 865 | 0x00, 0x00, 0x00, 0x1f, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, | 
 | 866 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, | 
 | 867 | 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, | 
 | 868 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf0, 0xf0, 0xf0, | 
 | 869 | 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, | 
 | 870 | 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, 0x0f, | 
 | 871 | 0x0f, 0x0f, 0x0f, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, | 
 | 872 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 873 | 0x00, 0x76, 0xdc, 0xd8, 0xd8, 0xd8, 0xdc, 0x76, 0x00, 0x00, 0x00, 0x00, | 
 | 874 | 0x00, 0x00, 0x78, 0xcc, 0xcc, 0xcc, 0xd8, 0xcc, 0xc6, 0xc6, 0xc6, 0xcc, | 
 | 875 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xc6, 0xc6, 0xc0, 0xc0, 0xc0, | 
 | 876 | 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 877 | 0xfe, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x00, 0x00, 0x00, 0x00, | 
 | 878 | 0x00, 0x00, 0x00, 0xfe, 0xc6, 0x60, 0x30, 0x18, 0x30, 0x60, 0xc6, 0xfe, | 
 | 879 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0xd8, 0xd8, | 
 | 880 | 0xd8, 0xd8, 0xd8, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 881 | 0x66, 0x66, 0x66, 0x66, 0x66, 0x7c, 0x60, 0x60, 0xc0, 0x00, 0x00, 0x00, | 
 | 882 | 0x00, 0x00, 0x00, 0x00, 0x76, 0xdc, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, | 
 | 883 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x18, 0x3c, 0x66, 0x66, | 
 | 884 | 0x66, 0x3c, 0x18, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, | 
 | 885 | 0x6c, 0xc6, 0xc6, 0xfe, 0xc6, 0xc6, 0x6c, 0x38, 0x00, 0x00, 0x00, 0x00, | 
 | 886 | 0x00, 0x00, 0x38, 0x6c, 0xc6, 0xc6, 0xc6, 0x6c, 0x6c, 0x6c, 0x6c, 0xee, | 
 | 887 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x30, 0x18, 0x0c, 0x3e, 0x66, | 
 | 888 | 0x66, 0x66, 0x66, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 889 | 0x00, 0x7e, 0xdb, 0xdb, 0xdb, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 890 | 0x00, 0x00, 0x00, 0x03, 0x06, 0x7e, 0xdb, 0xdb, 0xf3, 0x7e, 0x60, 0xc0, | 
 | 891 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x30, 0x60, 0x60, 0x7c, 0x60, | 
 | 892 | 0x60, 0x60, 0x30, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, | 
 | 893 | 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x00, 0x00, 0x00, 0x00, | 
 | 894 | 0x00, 0x00, 0x00, 0x00, 0xfe, 0x00, 0x00, 0xfe, 0x00, 0x00, 0xfe, 0x00, | 
 | 895 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x7e, 0x18, | 
 | 896 | 0x18, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, | 
 | 897 | 0x18, 0x0c, 0x06, 0x0c, 0x18, 0x30, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, | 
 | 898 | 0x00, 0x00, 0x00, 0x0c, 0x18, 0x30, 0x60, 0x30, 0x18, 0x0c, 0x00, 0x7e, | 
 | 899 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x1b, 0x1b, 0x1b, 0x18, 0x18, | 
 | 900 | 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, | 
 | 901 | 0x18, 0x18, 0x18, 0x18, 0xd8, 0xd8, 0xd8, 0x70, 0x00, 0x00, 0x00, 0x00, | 
 | 902 | 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x00, 0x7e, 0x00, 0x18, 0x18, 0x00, | 
 | 903 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0xdc, 0x00, | 
 | 904 | 0x76, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x6c, 0x6c, | 
 | 905 | 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 906 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x00, 0x00, 0x00, | 
 | 907 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 908 | 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0c, 0x0c, | 
 | 909 | 0x0c, 0x0c, 0x0c, 0xec, 0x6c, 0x6c, 0x3c, 0x1c, 0x00, 0x00, 0x00, 0x00, | 
 | 910 | 0x00, 0xd8, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 911 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0xd8, 0x30, 0x60, 0xc8, 0xf8, 0x00, | 
 | 912 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 913 | 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 914 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 
 | 915 | 0x00, 0x00, 0x00, 0x00, | 
 | 916 | }; | 
| David Gibson | 719c91c | 2007-02-13 15:54:22 +1100 | [diff] [blame] | 917 |  | 
 | 918 | void __init udbg_init_btext(void) | 
 | 919 | { | 
 | 920 | 	/* If btext is enabled, we might have a BAT setup for early display, | 
 | 921 | 	 * thus we do enable some very basic udbg output | 
 | 922 | 	 */ | 
 | 923 | 	udbg_putc = btext_drawchar; | 
 | 924 | } |