diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-03-30 16:54:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-03-30 16:54:50 -0400 |
commit | dfbbe89e197a77f2c8046a51c74e33e35f878080 (patch) | |
tree | 23b860ad3d68a12503f04c44c2e4465fbb8bdae9 | |
parent | 712b0006bf3a9ed0b14a56c3291975e582127766 (diff) | |
parent | f23c20c83d523e5f8cda1f8f7ed52fe6afffbe29 (diff) |
Merge branch 'drm-next' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6
* 'drm-next' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6: (53 commits)
drm: detect hdmi monitor by hdmi identifier (v3)
drm: drm_fops.c unlock missing on error path
drm: reorder struct drm_ioctl_desc to save space on 64 bit builds
radeon: add some new pci ids
drm: read EDID extensions from monitor
drm: Use a little stash on the stack to avoid kmalloc in most DRM ioctls.
drm/radeon: add regs required for occlusion queries support
drm/i915: check the return value from the copy from user
drm/radeon: fix logic in r600_page_table_init() to match ati_gart
drm/radeon: r600 ptes are 64-bit, cleanup cleanup function.
drm/radeon: don't call irq changes on r600 suspend/resume
drm/radeon: fix r600 writeback across suspend/resume
drm/radeon: fix r600 writeback setup.
drm: fix warnings about new mappings in info code.
drm/radeon: NULL noise: drivers/gpu/drm/radeon/radeon_*.c
drm/radeon: fix r600 pci mapping calls.
drm/radeon: r6xx/r7xx: fix possible oops in r600_page_table_cleanup()
radeon: call the correct idle function, logic got inverted.
drm/radeon: RS600: fix interrupt handling
drm/r600: fix rptr address along lines of previous fixes to radeon.
...
39 files changed, 27309 insertions, 434 deletions
diff --git a/drivers/gpu/drm/ati_pcigart.c b/drivers/gpu/drm/ati_pcigart.c index c533d0c9ec61..628eae3e9b83 100644 --- a/drivers/gpu/drm/ati_pcigart.c +++ b/drivers/gpu/drm/ati_pcigart.c | |||
@@ -77,7 +77,7 @@ int drm_ati_pcigart_cleanup(struct drm_device *dev, struct drm_ati_pcigart_info | |||
77 | if (!entry->busaddr[i]) | 77 | if (!entry->busaddr[i]) |
78 | break; | 78 | break; |
79 | pci_unmap_page(dev->pdev, entry->busaddr[i], | 79 | pci_unmap_page(dev->pdev, entry->busaddr[i], |
80 | PAGE_SIZE, PCI_DMA_TODEVICE); | 80 | PAGE_SIZE, PCI_DMA_BIDIRECTIONAL); |
81 | } | 81 | } |
82 | 82 | ||
83 | if (gart_info->gart_table_location == DRM_ATI_GART_MAIN) | 83 | if (gart_info->gart_table_location == DRM_ATI_GART_MAIN) |
@@ -95,13 +95,14 @@ EXPORT_SYMBOL(drm_ati_pcigart_cleanup); | |||
95 | 95 | ||
96 | int drm_ati_pcigart_init(struct drm_device *dev, struct drm_ati_pcigart_info *gart_info) | 96 | int drm_ati_pcigart_init(struct drm_device *dev, struct drm_ati_pcigart_info *gart_info) |
97 | { | 97 | { |
98 | struct drm_local_map *map = &gart_info->mapping; | ||
98 | struct drm_sg_mem *entry = dev->sg; | 99 | struct drm_sg_mem *entry = dev->sg; |
99 | void *address = NULL; | 100 | void *address = NULL; |
100 | unsigned long pages; | 101 | unsigned long pages; |
101 | u32 *pci_gart, page_base; | 102 | u32 *pci_gart = NULL, page_base, gart_idx; |
102 | dma_addr_t bus_address = 0; | 103 | dma_addr_t bus_address = 0; |
103 | int i, j, ret = 0; | 104 | int i, j, ret = 0; |
104 | int max_pages; | 105 | int max_ati_pages, max_real_pages; |
105 | 106 | ||
106 | if (!entry) { | 107 | if (!entry) { |
107 | DRM_ERROR("no scatter/gather memory!\n"); | 108 | DRM_ERROR("no scatter/gather memory!\n"); |
@@ -117,6 +118,7 @@ int drm_ati_pcigart_init(struct drm_device *dev, struct drm_ati_pcigart_info *ga | |||
117 | goto done; | 118 | goto done; |
118 | } | 119 | } |
119 | 120 | ||
121 | pci_gart = gart_info->table_handle->vaddr; | ||
120 | address = gart_info->table_handle->vaddr; | 122 | address = gart_info->table_handle->vaddr; |
121 | bus_address = gart_info->table_handle->busaddr; | 123 | bus_address = gart_info->table_handle->busaddr; |
122 | } else { | 124 | } else { |
@@ -127,18 +129,23 @@ int drm_ati_pcigart_init(struct drm_device *dev, struct drm_ati_pcigart_info *ga | |||
127 | (unsigned long)address); | 129 | (unsigned long)address); |
128 | } | 130 | } |
129 | 131 | ||
130 | pci_gart = (u32 *) address; | ||
131 | 132 | ||
132 | max_pages = (gart_info->table_size / sizeof(u32)); | 133 | max_ati_pages = (gart_info->table_size / sizeof(u32)); |
133 | pages = (entry->pages <= max_pages) | 134 | max_real_pages = max_ati_pages / (PAGE_SIZE / ATI_PCIGART_PAGE_SIZE); |
134 | ? entry->pages : max_pages; | 135 | pages = (entry->pages <= max_real_pages) |
136 | ? entry->pages : max_real_pages; | ||
135 | 137 | ||
136 | memset(pci_gart, 0, max_pages * sizeof(u32)); | 138 | if (gart_info->gart_table_location == DRM_ATI_GART_MAIN) { |
139 | memset(pci_gart, 0, max_ati_pages * sizeof(u32)); | ||
140 | } else { | ||
141 | memset_io((void __iomem *)map->handle, 0, max_ati_pages * sizeof(u32)); | ||
142 | } | ||
137 | 143 | ||
144 | gart_idx = 0; | ||
138 | for (i = 0; i < pages; i++) { | 145 | for (i = 0; i < pages; i++) { |
139 | /* we need to support large memory configurations */ | 146 | /* we need to support large memory configurations */ |
140 | entry->busaddr[i] = pci_map_page(dev->pdev, entry->pagelist[i], | 147 | entry->busaddr[i] = pci_map_page(dev->pdev, entry->pagelist[i], |
141 | 0, PAGE_SIZE, PCI_DMA_TODEVICE); | 148 | 0, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL); |
142 | if (entry->busaddr[i] == 0) { | 149 | if (entry->busaddr[i] == 0) { |
143 | DRM_ERROR("unable to map PCIGART pages!\n"); | 150 | DRM_ERROR("unable to map PCIGART pages!\n"); |
144 | drm_ati_pcigart_cleanup(dev, gart_info); | 151 | drm_ati_pcigart_cleanup(dev, gart_info); |
@@ -149,19 +156,26 @@ int drm_ati_pcigart_init(struct drm_device *dev, struct drm_ati_pcigart_info *ga | |||
149 | page_base = (u32) entry->busaddr[i]; | 156 | page_base = (u32) entry->busaddr[i]; |
150 | 157 | ||
151 | for (j = 0; j < (PAGE_SIZE / ATI_PCIGART_PAGE_SIZE); j++) { | 158 | for (j = 0; j < (PAGE_SIZE / ATI_PCIGART_PAGE_SIZE); j++) { |
159 | u32 val; | ||
160 | |||
152 | switch(gart_info->gart_reg_if) { | 161 | switch(gart_info->gart_reg_if) { |
153 | case DRM_ATI_GART_IGP: | 162 | case DRM_ATI_GART_IGP: |
154 | *pci_gart = cpu_to_le32((page_base) | 0xc); | 163 | val = page_base | 0xc; |
155 | break; | 164 | break; |
156 | case DRM_ATI_GART_PCIE: | 165 | case DRM_ATI_GART_PCIE: |
157 | *pci_gart = cpu_to_le32((page_base >> 8) | 0xc); | 166 | val = (page_base >> 8) | 0xc; |
158 | break; | 167 | break; |
159 | default: | 168 | default: |
160 | case DRM_ATI_GART_PCI: | 169 | case DRM_ATI_GART_PCI: |
161 | *pci_gart = cpu_to_le32(page_base); | 170 | val = page_base; |
162 | break; | 171 | break; |
163 | } | 172 | } |
164 | pci_gart++; | 173 | if (gart_info->gart_table_location == |
174 | DRM_ATI_GART_MAIN) | ||
175 | pci_gart[gart_idx] = cpu_to_le32(val); | ||
176 | else | ||
177 | DRM_WRITE32(map, gart_idx * sizeof(u32), val); | ||
178 | gart_idx++; | ||
165 | page_base += ATI_PCIGART_PAGE_SIZE; | 179 | page_base += ATI_PCIGART_PAGE_SIZE; |
166 | } | 180 | } |
167 | } | 181 | } |
diff --git a/drivers/gpu/drm/drm_bufs.c b/drivers/gpu/drm/drm_bufs.c index 12715d3c078d..6d80d17f1e96 100644 --- a/drivers/gpu/drm/drm_bufs.c +++ b/drivers/gpu/drm/drm_bufs.c | |||
@@ -34,15 +34,17 @@ | |||
34 | */ | 34 | */ |
35 | 35 | ||
36 | #include <linux/vmalloc.h> | 36 | #include <linux/vmalloc.h> |
37 | #include <linux/log2.h> | ||
38 | #include <asm/shmparam.h> | ||
37 | #include "drmP.h" | 39 | #include "drmP.h" |
38 | 40 | ||
39 | unsigned long drm_get_resource_start(struct drm_device *dev, unsigned int resource) | 41 | resource_size_t drm_get_resource_start(struct drm_device *dev, unsigned int resource) |
40 | { | 42 | { |
41 | return pci_resource_start(dev->pdev, resource); | 43 | return pci_resource_start(dev->pdev, resource); |
42 | } | 44 | } |
43 | EXPORT_SYMBOL(drm_get_resource_start); | 45 | EXPORT_SYMBOL(drm_get_resource_start); |
44 | 46 | ||
45 | unsigned long drm_get_resource_len(struct drm_device *dev, unsigned int resource) | 47 | resource_size_t drm_get_resource_len(struct drm_device *dev, unsigned int resource) |
46 | { | 48 | { |
47 | return pci_resource_len(dev->pdev, resource); | 49 | return pci_resource_len(dev->pdev, resource); |
48 | } | 50 | } |
@@ -50,24 +52,44 @@ unsigned long drm_get_resource_len(struct drm_device *dev, unsigned int resource | |||
50 | EXPORT_SYMBOL(drm_get_resource_len); | 52 | EXPORT_SYMBOL(drm_get_resource_len); |
51 | 53 | ||
52 | static struct drm_map_list *drm_find_matching_map(struct drm_device *dev, | 54 | static struct drm_map_list *drm_find_matching_map(struct drm_device *dev, |
53 | drm_local_map_t *map) | 55 | struct drm_local_map *map) |
54 | { | 56 | { |
55 | struct drm_map_list *entry; | 57 | struct drm_map_list *entry; |
56 | list_for_each_entry(entry, &dev->maplist, head) { | 58 | list_for_each_entry(entry, &dev->maplist, head) { |
57 | if (entry->map && (entry->master == dev->primary->master) && (map->type == entry->map->type) && | 59 | /* |
58 | ((entry->map->offset == map->offset) || | 60 | * Because the kernel-userspace ABI is fixed at a 32-bit offset |
59 | ((map->type == _DRM_SHM) && (map->flags&_DRM_CONTAINS_LOCK)))) { | 61 | * while PCI resources may live above that, we ignore the map |
62 | * offset for maps of type _DRM_FRAMEBUFFER or _DRM_REGISTERS. | ||
63 | * It is assumed that each driver will have only one resource of | ||
64 | * each type. | ||
65 | */ | ||
66 | if (!entry->map || | ||
67 | map->type != entry->map->type || | ||
68 | entry->master != dev->primary->master) | ||
69 | continue; | ||
70 | switch (map->type) { | ||
71 | case _DRM_SHM: | ||
72 | if (map->flags != _DRM_CONTAINS_LOCK) | ||
73 | break; | ||
74 | case _DRM_REGISTERS: | ||
75 | case _DRM_FRAME_BUFFER: | ||
60 | return entry; | 76 | return entry; |
77 | default: /* Make gcc happy */ | ||
78 | ; | ||
61 | } | 79 | } |
80 | if (entry->map->offset == map->offset) | ||
81 | return entry; | ||
62 | } | 82 | } |
63 | 83 | ||
64 | return NULL; | 84 | return NULL; |
65 | } | 85 | } |
66 | 86 | ||
67 | static int drm_map_handle(struct drm_device *dev, struct drm_hash_item *hash, | 87 | static int drm_map_handle(struct drm_device *dev, struct drm_hash_item *hash, |
68 | unsigned long user_token, int hashed_handle) | 88 | unsigned long user_token, int hashed_handle, int shm) |
69 | { | 89 | { |
70 | int use_hashed_handle; | 90 | int use_hashed_handle, shift; |
91 | unsigned long add; | ||
92 | |||
71 | #if (BITS_PER_LONG == 64) | 93 | #if (BITS_PER_LONG == 64) |
72 | use_hashed_handle = ((user_token & 0xFFFFFFFF00000000UL) || hashed_handle); | 94 | use_hashed_handle = ((user_token & 0xFFFFFFFF00000000UL) || hashed_handle); |
73 | #elif (BITS_PER_LONG == 32) | 95 | #elif (BITS_PER_LONG == 32) |
@@ -83,30 +105,47 @@ static int drm_map_handle(struct drm_device *dev, struct drm_hash_item *hash, | |||
83 | if (ret != -EINVAL) | 105 | if (ret != -EINVAL) |
84 | return ret; | 106 | return ret; |
85 | } | 107 | } |
108 | |||
109 | shift = 0; | ||
110 | add = DRM_MAP_HASH_OFFSET >> PAGE_SHIFT; | ||
111 | if (shm && (SHMLBA > PAGE_SIZE)) { | ||
112 | int bits = ilog2(SHMLBA >> PAGE_SHIFT) + 1; | ||
113 | |||
114 | /* For shared memory, we have to preserve the SHMLBA | ||
115 | * bits of the eventual vma->vm_pgoff value during | ||
116 | * mmap(). Otherwise we run into cache aliasing problems | ||
117 | * on some platforms. On these platforms, the pgoff of | ||
118 | * a mmap() request is used to pick a suitable virtual | ||
119 | * address for the mmap() region such that it will not | ||
120 | * cause cache aliasing problems. | ||
121 | * | ||
122 | * Therefore, make sure the SHMLBA relevant bits of the | ||
123 | * hash value we use are equal to those in the original | ||
124 | * kernel virtual address. | ||
125 | */ | ||
126 | shift = bits; | ||
127 | add |= ((user_token >> PAGE_SHIFT) & ((1UL << bits) - 1UL)); | ||
128 | } | ||
129 | |||
86 | return drm_ht_just_insert_please(&dev->map_hash, hash, | 130 | return drm_ht_just_insert_please(&dev->map_hash, hash, |
87 | user_token, 32 - PAGE_SHIFT - 3, | 131 | user_token, 32 - PAGE_SHIFT - 3, |
88 | 0, DRM_MAP_HASH_OFFSET >> PAGE_SHIFT); | 132 | shift, add); |
89 | } | 133 | } |
90 | 134 | ||
91 | /** | 135 | /** |
92 | * Ioctl to specify a range of memory that is available for mapping by a non-root process. | 136 | * Core function to create a range of memory available for mapping by a |
93 | * | 137 | * non-root process. |
94 | * \param inode device inode. | ||
95 | * \param file_priv DRM file private. | ||
96 | * \param cmd command. | ||
97 | * \param arg pointer to a drm_map structure. | ||
98 | * \return zero on success or a negative value on error. | ||
99 | * | 138 | * |
100 | * Adjusts the memory offset to its absolute value according to the mapping | 139 | * Adjusts the memory offset to its absolute value according to the mapping |
101 | * type. Adds the map to the map list drm_device::maplist. Adds MTRR's where | 140 | * type. Adds the map to the map list drm_device::maplist. Adds MTRR's where |
102 | * applicable and if supported by the kernel. | 141 | * applicable and if supported by the kernel. |
103 | */ | 142 | */ |
104 | static int drm_addmap_core(struct drm_device * dev, unsigned int offset, | 143 | static int drm_addmap_core(struct drm_device * dev, resource_size_t offset, |
105 | unsigned int size, enum drm_map_type type, | 144 | unsigned int size, enum drm_map_type type, |
106 | enum drm_map_flags flags, | 145 | enum drm_map_flags flags, |
107 | struct drm_map_list ** maplist) | 146 | struct drm_map_list ** maplist) |
108 | { | 147 | { |
109 | struct drm_map *map; | 148 | struct drm_local_map *map; |
110 | struct drm_map_list *list; | 149 | struct drm_map_list *list; |
111 | drm_dma_handle_t *dmah; | 150 | drm_dma_handle_t *dmah; |
112 | unsigned long user_token; | 151 | unsigned long user_token; |
@@ -129,9 +168,9 @@ static int drm_addmap_core(struct drm_device * dev, unsigned int offset, | |||
129 | drm_free(map, sizeof(*map), DRM_MEM_MAPS); | 168 | drm_free(map, sizeof(*map), DRM_MEM_MAPS); |
130 | return -EINVAL; | 169 | return -EINVAL; |
131 | } | 170 | } |
132 | DRM_DEBUG("offset = 0x%08lx, size = 0x%08lx, type = %d\n", | 171 | DRM_DEBUG("offset = 0x%08llx, size = 0x%08lx, type = %d\n", |
133 | map->offset, map->size, map->type); | 172 | (unsigned long long)map->offset, map->size, map->type); |
134 | if ((map->offset & (~PAGE_MASK)) || (map->size & (~PAGE_MASK))) { | 173 | if ((map->offset & (~(resource_size_t)PAGE_MASK)) || (map->size & (~PAGE_MASK))) { |
135 | drm_free(map, sizeof(*map), DRM_MEM_MAPS); | 174 | drm_free(map, sizeof(*map), DRM_MEM_MAPS); |
136 | return -EINVAL; | 175 | return -EINVAL; |
137 | } | 176 | } |
@@ -259,7 +298,8 @@ static int drm_addmap_core(struct drm_device * dev, unsigned int offset, | |||
259 | drm_free(map, sizeof(*map), DRM_MEM_MAPS); | 298 | drm_free(map, sizeof(*map), DRM_MEM_MAPS); |
260 | return -EPERM; | 299 | return -EPERM; |
261 | } | 300 | } |
262 | DRM_DEBUG("AGP offset = 0x%08lx, size = 0x%08lx\n", map->offset, map->size); | 301 | DRM_DEBUG("AGP offset = 0x%08llx, size = 0x%08lx\n", |
302 | (unsigned long long)map->offset, map->size); | ||
263 | 303 | ||
264 | break; | 304 | break; |
265 | case _DRM_GEM: | 305 | case _DRM_GEM: |
@@ -309,7 +349,8 @@ static int drm_addmap_core(struct drm_device * dev, unsigned int offset, | |||
309 | /* We do it here so that dev->struct_mutex protects the increment */ | 349 | /* We do it here so that dev->struct_mutex protects the increment */ |
310 | user_token = (map->type == _DRM_SHM) ? (unsigned long)map->handle : | 350 | user_token = (map->type == _DRM_SHM) ? (unsigned long)map->handle : |
311 | map->offset; | 351 | map->offset; |
312 | ret = drm_map_handle(dev, &list->hash, user_token, 0); | 352 | ret = drm_map_handle(dev, &list->hash, user_token, 0, |
353 | (map->type == _DRM_SHM)); | ||
313 | if (ret) { | 354 | if (ret) { |
314 | if (map->type == _DRM_REGISTERS) | 355 | if (map->type == _DRM_REGISTERS) |
315 | iounmap(map->handle); | 356 | iounmap(map->handle); |
@@ -327,9 +368,9 @@ static int drm_addmap_core(struct drm_device * dev, unsigned int offset, | |||
327 | return 0; | 368 | return 0; |
328 | } | 369 | } |
329 | 370 | ||
330 | int drm_addmap(struct drm_device * dev, unsigned int offset, | 371 | int drm_addmap(struct drm_device * dev, resource_size_t offset, |
331 | unsigned int size, enum drm_map_type type, | 372 | unsigned int size, enum drm_map_type type, |
332 | enum drm_map_flags flags, drm_local_map_t ** map_ptr) | 373 | enum drm_map_flags flags, struct drm_local_map ** map_ptr) |
333 | { | 374 | { |
334 | struct drm_map_list *list; | 375 | struct drm_map_list *list; |
335 | int rc; | 376 | int rc; |
@@ -342,6 +383,17 @@ int drm_addmap(struct drm_device * dev, unsigned int offset, | |||
342 | 383 | ||
343 | EXPORT_SYMBOL(drm_addmap); | 384 | EXPORT_SYMBOL(drm_addmap); |
344 | 385 | ||
386 | /** | ||
387 | * Ioctl to specify a range of memory that is available for mapping by a | ||
388 | * non-root process. | ||
389 | * | ||
390 | * \param inode device inode. | ||
391 | * \param file_priv DRM file private. | ||
392 | * \param cmd command. | ||
393 | * \param arg pointer to a drm_map structure. | ||
394 | * \return zero on success or a negative value on error. | ||
395 | * | ||
396 | */ | ||
345 | int drm_addmap_ioctl(struct drm_device *dev, void *data, | 397 | int drm_addmap_ioctl(struct drm_device *dev, void *data, |
346 | struct drm_file *file_priv) | 398 | struct drm_file *file_priv) |
347 | { | 399 | { |
@@ -367,19 +419,13 @@ int drm_addmap_ioctl(struct drm_device *dev, void *data, | |||
367 | * Remove a map private from list and deallocate resources if the mapping | 419 | * Remove a map private from list and deallocate resources if the mapping |
368 | * isn't in use. | 420 | * isn't in use. |
369 | * | 421 | * |
370 | * \param inode device inode. | ||
371 | * \param file_priv DRM file private. | ||
372 | * \param cmd command. | ||
373 | * \param arg pointer to a struct drm_map structure. | ||
374 | * \return zero on success or a negative value on error. | ||
375 | * | ||
376 | * Searches the map on drm_device::maplist, removes it from the list, see if | 422 | * Searches the map on drm_device::maplist, removes it from the list, see if |
377 | * its being used, and free any associate resource (such as MTRR's) if it's not | 423 | * its being used, and free any associate resource (such as MTRR's) if it's not |
378 | * being on use. | 424 | * being on use. |
379 | * | 425 | * |
380 | * \sa drm_addmap | 426 | * \sa drm_addmap |
381 | */ | 427 | */ |
382 | int drm_rmmap_locked(struct drm_device *dev, drm_local_map_t *map) | 428 | int drm_rmmap_locked(struct drm_device *dev, struct drm_local_map *map) |
383 | { | 429 | { |
384 | struct drm_map_list *r_list = NULL, *list_t; | 430 | struct drm_map_list *r_list = NULL, *list_t; |
385 | drm_dma_handle_t dmah; | 431 | drm_dma_handle_t dmah; |
@@ -442,7 +488,7 @@ int drm_rmmap_locked(struct drm_device *dev, drm_local_map_t *map) | |||
442 | } | 488 | } |
443 | EXPORT_SYMBOL(drm_rmmap_locked); | 489 | EXPORT_SYMBOL(drm_rmmap_locked); |
444 | 490 | ||
445 | int drm_rmmap(struct drm_device *dev, drm_local_map_t *map) | 491 | int drm_rmmap(struct drm_device *dev, struct drm_local_map *map) |
446 | { | 492 | { |
447 | int ret; | 493 | int ret; |
448 | 494 | ||
@@ -462,12 +508,18 @@ EXPORT_SYMBOL(drm_rmmap); | |||
462 | * One use case might be after addmap is allowed for normal users for SHM and | 508 | * One use case might be after addmap is allowed for normal users for SHM and |
463 | * gets used by drivers that the server doesn't need to care about. This seems | 509 | * gets used by drivers that the server doesn't need to care about. This seems |
464 | * unlikely. | 510 | * unlikely. |
511 | * | ||
512 | * \param inode device inode. | ||
513 | * \param file_priv DRM file private. | ||
514 | * \param cmd command. | ||
515 | * \param arg pointer to a struct drm_map structure. | ||
516 | * \return zero on success or a negative value on error. | ||
465 | */ | 517 | */ |
466 | int drm_rmmap_ioctl(struct drm_device *dev, void *data, | 518 | int drm_rmmap_ioctl(struct drm_device *dev, void *data, |
467 | struct drm_file *file_priv) | 519 | struct drm_file *file_priv) |
468 | { | 520 | { |
469 | struct drm_map *request = data; | 521 | struct drm_map *request = data; |
470 | drm_local_map_t *map = NULL; | 522 | struct drm_local_map *map = NULL; |
471 | struct drm_map_list *r_list; | 523 | struct drm_map_list *r_list; |
472 | int ret; | 524 | int ret; |
473 | 525 | ||
@@ -1534,7 +1586,7 @@ int drm_mapbufs(struct drm_device *dev, void *data, | |||
1534 | && (dma->flags & _DRM_DMA_USE_SG)) | 1586 | && (dma->flags & _DRM_DMA_USE_SG)) |
1535 | || (drm_core_check_feature(dev, DRIVER_FB_DMA) | 1587 | || (drm_core_check_feature(dev, DRIVER_FB_DMA) |
1536 | && (dma->flags & _DRM_DMA_USE_FB))) { | 1588 | && (dma->flags & _DRM_DMA_USE_FB))) { |
1537 | struct drm_map *map = dev->agp_buffer_map; | 1589 | struct drm_local_map *map = dev->agp_buffer_map; |
1538 | unsigned long token = dev->agp_buffer_token; | 1590 | unsigned long token = dev->agp_buffer_token; |
1539 | 1591 | ||
1540 | if (!map) { | 1592 | if (!map) { |
diff --git a/drivers/gpu/drm/drm_context.c b/drivers/gpu/drm/drm_context.c index 809ec0f03452..7d1e53c10d4b 100644 --- a/drivers/gpu/drm/drm_context.c +++ b/drivers/gpu/drm/drm_context.c | |||
@@ -143,7 +143,7 @@ int drm_getsareactx(struct drm_device *dev, void *data, | |||
143 | struct drm_file *file_priv) | 143 | struct drm_file *file_priv) |
144 | { | 144 | { |
145 | struct drm_ctx_priv_map *request = data; | 145 | struct drm_ctx_priv_map *request = data; |
146 | struct drm_map *map; | 146 | struct drm_local_map *map; |
147 | struct drm_map_list *_entry; | 147 | struct drm_map_list *_entry; |
148 | 148 | ||
149 | mutex_lock(&dev->struct_mutex); | 149 | mutex_lock(&dev->struct_mutex); |
@@ -186,7 +186,7 @@ int drm_setsareactx(struct drm_device *dev, void *data, | |||
186 | struct drm_file *file_priv) | 186 | struct drm_file *file_priv) |
187 | { | 187 | { |
188 | struct drm_ctx_priv_map *request = data; | 188 | struct drm_ctx_priv_map *request = data; |
189 | struct drm_map *map = NULL; | 189 | struct drm_local_map *map = NULL; |
190 | struct drm_map_list *r_list = NULL; | 190 | struct drm_map_list *r_list = NULL; |
191 | 191 | ||
192 | mutex_lock(&dev->struct_mutex); | 192 | mutex_lock(&dev->struct_mutex); |
diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c index ed32edb17166..c4ada8b6295b 100644 --- a/drivers/gpu/drm/drm_drv.c +++ b/drivers/gpu/drm/drm_drv.c | |||
@@ -254,15 +254,19 @@ int drm_lastclose(struct drm_device * dev) | |||
254 | int drm_init(struct drm_driver *driver) | 254 | int drm_init(struct drm_driver *driver) |
255 | { | 255 | { |
256 | struct pci_dev *pdev = NULL; | 256 | struct pci_dev *pdev = NULL; |
257 | struct pci_device_id *pid; | 257 | const struct pci_device_id *pid; |
258 | int i; | 258 | int i; |
259 | 259 | ||
260 | DRM_DEBUG("\n"); | 260 | DRM_DEBUG("\n"); |
261 | 261 | ||
262 | INIT_LIST_HEAD(&driver->device_list); | 262 | INIT_LIST_HEAD(&driver->device_list); |
263 | 263 | ||
264 | if (driver->driver_features & DRIVER_MODESET) | ||
265 | return pci_register_driver(&driver->pci_driver); | ||
266 | |||
267 | /* If not using KMS, fall back to stealth mode manual scanning. */ | ||
264 | for (i = 0; driver->pci_driver.id_table[i].vendor != 0; i++) { | 268 | for (i = 0; driver->pci_driver.id_table[i].vendor != 0; i++) { |
265 | pid = (struct pci_device_id *)&driver->pci_driver.id_table[i]; | 269 | pid = &driver->pci_driver.id_table[i]; |
266 | 270 | ||
267 | /* Loop around setting up a DRM device for each PCI device | 271 | /* Loop around setting up a DRM device for each PCI device |
268 | * matching our ID and device class. If we had the internal | 272 | * matching our ID and device class. If we had the internal |
@@ -287,68 +291,17 @@ int drm_init(struct drm_driver *driver) | |||
287 | 291 | ||
288 | EXPORT_SYMBOL(drm_init); | 292 | EXPORT_SYMBOL(drm_init); |
289 | 293 | ||
290 | /** | ||
291 | * Called via cleanup_module() at module unload time. | ||
292 | * | ||
293 | * Cleans up all DRM device, calling drm_lastclose(). | ||
294 | * | ||
295 | * \sa drm_init | ||
296 | */ | ||
297 | static void drm_cleanup(struct drm_device * dev) | ||
298 | { | ||
299 | struct drm_map_list *r_list, *list_temp; | ||
300 | DRM_DEBUG("\n"); | ||
301 | |||
302 | if (!dev) { | ||
303 | DRM_ERROR("cleanup called no dev\n"); | ||
304 | return; | ||
305 | } | ||
306 | |||
307 | drm_vblank_cleanup(dev); | ||
308 | |||
309 | drm_lastclose(dev); | ||
310 | |||
311 | if (drm_core_has_MTRR(dev) && drm_core_has_AGP(dev) && | ||
312 | dev->agp && dev->agp->agp_mtrr >= 0) { | ||
313 | int retval; | ||
314 | retval = mtrr_del(dev->agp->agp_mtrr, | ||
315 | dev->agp->agp_info.aper_base, | ||
316 | dev->agp->agp_info.aper_size * 1024 * 1024); | ||
317 | DRM_DEBUG("mtrr_del=%d\n", retval); | ||
318 | } | ||
319 | |||
320 | if (dev->driver->unload) | ||
321 | dev->driver->unload(dev); | ||
322 | |||
323 | if (drm_core_has_AGP(dev) && dev->agp) { | ||
324 | drm_free(dev->agp, sizeof(*dev->agp), DRM_MEM_AGPLISTS); | ||
325 | dev->agp = NULL; | ||
326 | } | ||
327 | |||
328 | drm_ht_remove(&dev->map_hash); | ||
329 | drm_ctxbitmap_cleanup(dev); | ||
330 | |||
331 | list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head) | ||
332 | drm_rmmap(dev, r_list->map); | ||
333 | |||
334 | if (drm_core_check_feature(dev, DRIVER_MODESET)) | ||
335 | drm_put_minor(&dev->control); | ||
336 | |||
337 | if (dev->driver->driver_features & DRIVER_GEM) | ||
338 | drm_gem_destroy(dev); | ||
339 | |||
340 | drm_put_minor(&dev->primary); | ||
341 | if (drm_put_dev(dev)) | ||
342 | DRM_ERROR("Cannot unload module\n"); | ||
343 | } | ||
344 | |||
345 | void drm_exit(struct drm_driver *driver) | 294 | void drm_exit(struct drm_driver *driver) |
346 | { | 295 | { |
347 | struct drm_device *dev, *tmp; | 296 | struct drm_device *dev, *tmp; |
348 | DRM_DEBUG("\n"); | 297 | DRM_DEBUG("\n"); |
349 | 298 | ||
350 | list_for_each_entry_safe(dev, tmp, &driver->device_list, driver_item) | 299 | if (driver->driver_features & DRIVER_MODESET) { |
351 | drm_cleanup(dev); | 300 | pci_unregister_driver(&driver->pci_driver); |
301 | } else { | ||
302 | list_for_each_entry_safe(dev, tmp, &driver->device_list, driver_item) | ||
303 | drm_put_dev(dev); | ||
304 | } | ||
352 | 305 | ||
353 | DRM_INFO("Module unloaded\n"); | 306 | DRM_INFO("Module unloaded\n"); |
354 | } | 307 | } |
@@ -468,6 +421,7 @@ int drm_ioctl(struct inode *inode, struct file *filp, | |||
468 | drm_ioctl_t *func; | 421 | drm_ioctl_t *func; |
469 | unsigned int nr = DRM_IOCTL_NR(cmd); | 422 | unsigned int nr = DRM_IOCTL_NR(cmd); |
470 | int retcode = -EINVAL; | 423 | int retcode = -EINVAL; |
424 | char stack_kdata[128]; | ||
471 | char *kdata = NULL; | 425 | char *kdata = NULL; |
472 | 426 | ||
473 | atomic_inc(&dev->ioctl_count); | 427 | atomic_inc(&dev->ioctl_count); |
@@ -506,10 +460,14 @@ int drm_ioctl(struct inode *inode, struct file *filp, | |||
506 | retcode = -EACCES; | 460 | retcode = -EACCES; |
507 | } else { | 461 | } else { |
508 | if (cmd & (IOC_IN | IOC_OUT)) { | 462 | if (cmd & (IOC_IN | IOC_OUT)) { |
509 | kdata = kmalloc(_IOC_SIZE(cmd), GFP_KERNEL); | 463 | if (_IOC_SIZE(cmd) <= sizeof(stack_kdata)) { |
510 | if (!kdata) { | 464 | kdata = stack_kdata; |
511 | retcode = -ENOMEM; | 465 | } else { |
512 | goto err_i1; | 466 | kdata = kmalloc(_IOC_SIZE(cmd), GFP_KERNEL); |
467 | if (!kdata) { | ||
468 | retcode = -ENOMEM; | ||
469 | goto err_i1; | ||
470 | } | ||
513 | } | 471 | } |
514 | } | 472 | } |
515 | 473 | ||
@@ -530,7 +488,7 @@ int drm_ioctl(struct inode *inode, struct file *filp, | |||
530 | } | 488 | } |
531 | 489 | ||
532 | err_i1: | 490 | err_i1: |
533 | if (kdata) | 491 | if (kdata != stack_kdata) |
534 | kfree(kdata); | 492 | kfree(kdata); |
535 | atomic_dec(&dev->ioctl_count); | 493 | atomic_dec(&dev->ioctl_count); |
536 | if (retcode) | 494 | if (retcode) |
@@ -540,7 +498,7 @@ int drm_ioctl(struct inode *inode, struct file *filp, | |||
540 | 498 | ||
541 | EXPORT_SYMBOL(drm_ioctl); | 499 | EXPORT_SYMBOL(drm_ioctl); |
542 | 500 | ||
543 | drm_local_map_t *drm_getsarea(struct drm_device *dev) | 501 | struct drm_local_map *drm_getsarea(struct drm_device *dev) |
544 | { | 502 | { |
545 | struct drm_map_list *entry; | 503 | struct drm_map_list *entry; |
546 | 504 | ||
diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c index a839a28d8ee6..c67400067b85 100644 --- a/drivers/gpu/drm/drm_edid.c +++ b/drivers/gpu/drm/drm_edid.c | |||
@@ -550,11 +550,20 @@ static int add_detailed_info(struct drm_connector *connector, | |||
550 | } | 550 | } |
551 | 551 | ||
552 | #define DDC_ADDR 0x50 | 552 | #define DDC_ADDR 0x50 |
553 | 553 | /** | |
554 | unsigned char *drm_do_probe_ddc_edid(struct i2c_adapter *adapter) | 554 | * Get EDID information via I2C. |
555 | * | ||
556 | * \param adapter : i2c device adaptor | ||
557 | * \param buf : EDID data buffer to be filled | ||
558 | * \param len : EDID data buffer length | ||
559 | * \return 0 on success or -1 on failure. | ||
560 | * | ||
561 | * Try to fetch EDID information by calling i2c driver function. | ||
562 | */ | ||
563 | int drm_do_probe_ddc_edid(struct i2c_adapter *adapter, | ||
564 | unsigned char *buf, int len) | ||
555 | { | 565 | { |
556 | unsigned char start = 0x0; | 566 | unsigned char start = 0x0; |
557 | unsigned char *buf = kmalloc(EDID_LENGTH, GFP_KERNEL); | ||
558 | struct i2c_msg msgs[] = { | 567 | struct i2c_msg msgs[] = { |
559 | { | 568 | { |
560 | .addr = DDC_ADDR, | 569 | .addr = DDC_ADDR, |
@@ -564,31 +573,36 @@ unsigned char *drm_do_probe_ddc_edid(struct i2c_adapter *adapter) | |||
564 | }, { | 573 | }, { |
565 | .addr = DDC_ADDR, | 574 | .addr = DDC_ADDR, |
566 | .flags = I2C_M_RD, | 575 | .flags = I2C_M_RD, |
567 | .len = EDID_LENGTH, | 576 | .len = len, |
568 | .buf = buf, | 577 | .buf = buf, |
569 | } | 578 | } |
570 | }; | 579 | }; |
571 | 580 | ||
572 | if (!buf) { | ||
573 | dev_warn(&adapter->dev, "unable to allocate memory for EDID " | ||
574 | "block.\n"); | ||
575 | return NULL; | ||
576 | } | ||
577 | |||
578 | if (i2c_transfer(adapter, msgs, 2) == 2) | 581 | if (i2c_transfer(adapter, msgs, 2) == 2) |
579 | return buf; | 582 | return 0; |
580 | 583 | ||
581 | dev_info(&adapter->dev, "unable to read EDID block.\n"); | 584 | dev_info(&adapter->dev, "unable to read EDID block.\n"); |
582 | kfree(buf); | 585 | return -1; |
583 | return NULL; | ||
584 | } | 586 | } |
585 | EXPORT_SYMBOL(drm_do_probe_ddc_edid); | 587 | EXPORT_SYMBOL(drm_do_probe_ddc_edid); |
586 | 588 | ||
587 | static unsigned char *drm_ddc_read(struct i2c_adapter *adapter) | 589 | /** |
590 | * Get EDID information. | ||
591 | * | ||
592 | * \param adapter : i2c device adaptor. | ||
593 | * \param buf : EDID data buffer to be filled | ||
594 | * \param len : EDID data buffer length | ||
595 | * \return 0 on success or -1 on failure. | ||
596 | * | ||
597 | * Initialize DDC, then fetch EDID information | ||
598 | * by calling drm_do_probe_ddc_edid function. | ||
599 | */ | ||
600 | static int drm_ddc_read(struct i2c_adapter *adapter, | ||
601 | unsigned char *buf, int len) | ||
588 | { | 602 | { |
589 | struct i2c_algo_bit_data *algo_data = adapter->algo_data; | 603 | struct i2c_algo_bit_data *algo_data = adapter->algo_data; |
590 | unsigned char *edid = NULL; | ||
591 | int i, j; | 604 | int i, j; |
605 | int ret = -1; | ||
592 | 606 | ||
593 | algo_data->setscl(algo_data->data, 1); | 607 | algo_data->setscl(algo_data->data, 1); |
594 | 608 | ||
@@ -616,7 +630,7 @@ static unsigned char *drm_ddc_read(struct i2c_adapter *adapter) | |||
616 | msleep(15); | 630 | msleep(15); |
617 | 631 | ||
618 | /* Do the real work */ | 632 | /* Do the real work */ |
619 | edid = drm_do_probe_ddc_edid(adapter); | 633 | ret = drm_do_probe_ddc_edid(adapter, buf, len); |
620 | algo_data->setsda(algo_data->data, 0); | 634 | algo_data->setsda(algo_data->data, 0); |
621 | algo_data->setscl(algo_data->data, 0); | 635 | algo_data->setscl(algo_data->data, 0); |
622 | msleep(15); | 636 | msleep(15); |
@@ -632,7 +646,7 @@ static unsigned char *drm_ddc_read(struct i2c_adapter *adapter) | |||
632 | msleep(15); | 646 | msleep(15); |
633 | algo_data->setscl(algo_data->data, 0); | 647 | algo_data->setscl(algo_data->data, 0); |
634 | algo_data->setsda(algo_data->data, 0); | 648 | algo_data->setsda(algo_data->data, 0); |
635 | if (edid) | 649 | if (ret == 0) |
636 | break; | 650 | break; |
637 | } | 651 | } |
638 | /* Release the DDC lines when done or the Apple Cinema HD display | 652 | /* Release the DDC lines when done or the Apple Cinema HD display |
@@ -641,9 +655,31 @@ static unsigned char *drm_ddc_read(struct i2c_adapter *adapter) | |||
641 | algo_data->setsda(algo_data->data, 1); | 655 | algo_data->setsda(algo_data->data, 1); |
642 | algo_data->setscl(algo_data->data, 1); | 656 | algo_data->setscl(algo_data->data, 1); |
643 | 657 | ||
644 | return edid; | 658 | return ret; |
645 | } | 659 | } |
646 | 660 | ||
661 | static int drm_ddc_read_edid(struct drm_connector *connector, | ||
662 | struct i2c_adapter *adapter, | ||
663 | char *buf, int len) | ||
664 | { | ||
665 | int ret; | ||
666 | |||
667 | ret = drm_ddc_read(adapter, buf, len); | ||
668 | if (ret != 0) { | ||
669 | dev_info(&connector->dev->pdev->dev, "%s: no EDID data\n", | ||
670 | drm_get_connector_name(connector)); | ||
671 | goto end; | ||
672 | } | ||
673 | if (!edid_is_valid((struct edid *)buf)) { | ||
674 | dev_warn(&connector->dev->pdev->dev, "%s: EDID invalid.\n", | ||
675 | drm_get_connector_name(connector)); | ||
676 | ret = -1; | ||
677 | } | ||
678 | end: | ||
679 | return ret; | ||
680 | } | ||
681 | |||
682 | #define MAX_EDID_EXT_NUM 4 | ||
647 | /** | 683 | /** |
648 | * drm_get_edid - get EDID data, if available | 684 | * drm_get_edid - get EDID data, if available |
649 | * @connector: connector we're probing | 685 | * @connector: connector we're probing |
@@ -656,27 +692,118 @@ static unsigned char *drm_ddc_read(struct i2c_adapter *adapter) | |||
656 | struct edid *drm_get_edid(struct drm_connector *connector, | 692 | struct edid *drm_get_edid(struct drm_connector *connector, |
657 | struct i2c_adapter *adapter) | 693 | struct i2c_adapter *adapter) |
658 | { | 694 | { |
695 | int ret; | ||
659 | struct edid *edid; | 696 | struct edid *edid; |
660 | 697 | ||
661 | edid = (struct edid *)drm_ddc_read(adapter); | 698 | edid = kmalloc(EDID_LENGTH * (MAX_EDID_EXT_NUM + 1), |
662 | if (!edid) { | 699 | GFP_KERNEL); |
663 | dev_info(&connector->dev->pdev->dev, "%s: no EDID data\n", | 700 | if (edid == NULL) { |
664 | drm_get_connector_name(connector)); | 701 | dev_warn(&connector->dev->pdev->dev, |
665 | return NULL; | 702 | "Failed to allocate EDID\n"); |
703 | goto end; | ||
666 | } | 704 | } |
667 | if (!edid_is_valid(edid)) { | 705 | |
668 | dev_warn(&connector->dev->pdev->dev, "%s: EDID invalid.\n", | 706 | /* Read first EDID block */ |
669 | drm_get_connector_name(connector)); | 707 | ret = drm_ddc_read_edid(connector, adapter, |
670 | kfree(edid); | 708 | (unsigned char *)edid, EDID_LENGTH); |
671 | return NULL; | 709 | if (ret != 0) |
710 | goto clean_up; | ||
711 | |||
712 | /* There are EDID extensions to be read */ | ||
713 | if (edid->extensions != 0) { | ||
714 | int edid_ext_num = edid->extensions; | ||
715 | |||
716 | if (edid_ext_num > MAX_EDID_EXT_NUM) { | ||
717 | dev_warn(&connector->dev->pdev->dev, | ||
718 | "The number of extension(%d) is " | ||
719 | "over max (%d), actually read number (%d)\n", | ||
720 | edid_ext_num, MAX_EDID_EXT_NUM, | ||
721 | MAX_EDID_EXT_NUM); | ||
722 | /* Reset EDID extension number to be read */ | ||
723 | edid_ext_num = MAX_EDID_EXT_NUM; | ||
724 | } | ||
725 | /* Read EDID including extensions too */ | ||
726 | ret = drm_ddc_read_edid(connector, adapter, (char *)edid, | ||
727 | EDID_LENGTH * (edid_ext_num + 1)); | ||
728 | if (ret != 0) | ||
729 | goto clean_up; | ||
730 | |||
672 | } | 731 | } |
673 | 732 | ||
674 | connector->display_info.raw_edid = (char *)edid; | 733 | connector->display_info.raw_edid = (char *)edid; |
734 | goto end; | ||
675 | 735 | ||
736 | clean_up: | ||
737 | kfree(edid); | ||
738 | edid = NULL; | ||
739 | end: | ||
676 | return edid; | 740 | return edid; |
741 | |||
677 | } | 742 | } |
678 | EXPORT_SYMBOL(drm_get_edid); | 743 | EXPORT_SYMBOL(drm_get_edid); |
679 | 744 | ||
745 | #define HDMI_IDENTIFIER 0x000C03 | ||
746 | #define VENDOR_BLOCK 0x03 | ||
747 | /** | ||
748 | * drm_detect_hdmi_monitor - detect whether monitor is hdmi. | ||
749 | * @edid: monitor EDID information | ||
750 | * | ||
751 | * Parse the CEA extension according to CEA-861-B. | ||
752 | * Return true if HDMI, false if not or unknown. | ||
753 | */ | ||
754 | bool drm_detect_hdmi_monitor(struct edid *edid) | ||
755 | { | ||
756 | char *edid_ext = NULL; | ||
757 | int i, hdmi_id, edid_ext_num; | ||
758 | int start_offset, end_offset; | ||
759 | bool is_hdmi = false; | ||
760 | |||
761 | /* No EDID or EDID extensions */ | ||
762 | if (edid == NULL || edid->extensions == 0) | ||
763 | goto end; | ||
764 | |||
765 | /* Chose real EDID extension number */ | ||
766 | edid_ext_num = edid->extensions > MAX_EDID_EXT_NUM ? | ||
767 | MAX_EDID_EXT_NUM : edid->extensions; | ||
768 | |||
769 | /* Find CEA extension */ | ||
770 | for (i = 0; i < edid_ext_num; i++) { | ||
771 | edid_ext = (char *)edid + EDID_LENGTH * (i + 1); | ||
772 | /* This block is CEA extension */ | ||
773 | if (edid_ext[0] == 0x02) | ||
774 | break; | ||
775 | } | ||
776 | |||
777 | if (i == edid_ext_num) | ||
778 | goto end; | ||
779 | |||
780 | /* Data block offset in CEA extension block */ | ||
781 | start_offset = 4; | ||
782 | end_offset = edid_ext[2]; | ||
783 | |||
784 | /* | ||
785 | * Because HDMI identifier is in Vendor Specific Block, | ||
786 | * search it from all data blocks of CEA extension. | ||
787 | */ | ||
788 | for (i = start_offset; i < end_offset; | ||
789 | /* Increased by data block len */ | ||
790 | i += ((edid_ext[i] & 0x1f) + 1)) { | ||
791 | /* Find vendor specific block */ | ||
792 | if ((edid_ext[i] >> 5) == VENDOR_BLOCK) { | ||
793 | hdmi_id = edid_ext[i + 1] | (edid_ext[i + 2] << 8) | | ||
794 | edid_ext[i + 3] << 16; | ||
795 | /* Find HDMI identifier */ | ||
796 | if (hdmi_id == HDMI_IDENTIFIER) | ||
797 | is_hdmi = true; | ||
798 | break; | ||
799 | } | ||
800 | } | ||
801 | |||
802 | end: | ||
803 | return is_hdmi; | ||
804 | } | ||
805 | EXPORT_SYMBOL(drm_detect_hdmi_monitor); | ||
806 | |||
680 | /** | 807 | /** |
681 | * drm_add_edid_modes - add modes from EDID data, if available | 808 | * drm_add_edid_modes - add modes from EDID data, if available |
682 | * @connector: connector we're probing | 809 | * @connector: connector we're probing |
diff --git a/drivers/gpu/drm/drm_fops.c b/drivers/gpu/drm/drm_fops.c index e13cb62bbaee..09a3571c9908 100644 --- a/drivers/gpu/drm/drm_fops.c +++ b/drivers/gpu/drm/drm_fops.c | |||
@@ -274,6 +274,7 @@ static int drm_open_helper(struct inode *inode, struct file *filp, | |||
274 | /* create a new master */ | 274 | /* create a new master */ |
275 | priv->minor->master = drm_master_create(priv->minor); | 275 | priv->minor->master = drm_master_create(priv->minor); |
276 | if (!priv->minor->master) { | 276 | if (!priv->minor->master) { |
277 | mutex_unlock(&dev->struct_mutex); | ||
277 | ret = -ENOMEM; | 278 | ret = -ENOMEM; |
278 | goto out_free; | 279 | goto out_free; |
279 | } | 280 | } |
diff --git a/drivers/gpu/drm/drm_gem.c b/drivers/gpu/drm/drm_gem.c index 88d3368ffddd..c1173d8c4588 100644 --- a/drivers/gpu/drm/drm_gem.c +++ b/drivers/gpu/drm/drm_gem.c | |||
@@ -502,7 +502,7 @@ int drm_gem_mmap(struct file *filp, struct vm_area_struct *vma) | |||
502 | struct drm_file *priv = filp->private_data; | 502 | struct drm_file *priv = filp->private_data; |
503 | struct drm_device *dev = priv->minor->dev; | 503 | struct drm_device *dev = priv->minor->dev; |
504 | struct drm_gem_mm *mm = dev->mm_private; | 504 | struct drm_gem_mm *mm = dev->mm_private; |
505 | struct drm_map *map = NULL; | 505 | struct drm_local_map *map = NULL; |
506 | struct drm_gem_object *obj; | 506 | struct drm_gem_object *obj; |
507 | struct drm_hash_item *hash; | 507 | struct drm_hash_item *hash; |
508 | unsigned long prot; | 508 | unsigned long prot; |
diff --git a/drivers/gpu/drm/drm_info.c b/drivers/gpu/drm/drm_info.c index 1b699768ccfb..f0f6c6b93f3a 100644 --- a/drivers/gpu/drm/drm_info.c +++ b/drivers/gpu/drm/drm_info.c | |||
@@ -72,7 +72,7 @@ int drm_vm_info(struct seq_file *m, void *data) | |||
72 | { | 72 | { |
73 | struct drm_info_node *node = (struct drm_info_node *) m->private; | 73 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
74 | struct drm_device *dev = node->minor->dev; | 74 | struct drm_device *dev = node->minor->dev; |
75 | struct drm_map *map; | 75 | struct drm_local_map *map; |
76 | struct drm_map_list *r_list; | 76 | struct drm_map_list *r_list; |
77 | 77 | ||
78 | /* Hardcoded from _DRM_FRAME_BUFFER, | 78 | /* Hardcoded from _DRM_FRAME_BUFFER, |
@@ -94,9 +94,9 @@ int drm_vm_info(struct seq_file *m, void *data) | |||
94 | else | 94 | else |
95 | type = types[map->type]; | 95 | type = types[map->type]; |
96 | 96 | ||
97 | seq_printf(m, "%4d 0x%08lx 0x%08lx %4.4s 0x%02x 0x%08lx ", | 97 | seq_printf(m, "%4d 0x%016llx 0x%08lx %4.4s 0x%02x 0x%08lx ", |
98 | i, | 98 | i, |
99 | map->offset, | 99 | (unsigned long long)map->offset, |
100 | map->size, type, map->flags, | 100 | map->size, type, map->flags, |
101 | (unsigned long) r_list->user_token); | 101 | (unsigned long) r_list->user_token); |
102 | if (map->mtrr < 0) | 102 | if (map->mtrr < 0) |
diff --git a/drivers/gpu/drm/drm_ioc32.c b/drivers/gpu/drm/drm_ioc32.c index 920b72fbc958..282d9fdf9f4e 100644 --- a/drivers/gpu/drm/drm_ioc32.c +++ b/drivers/gpu/drm/drm_ioc32.c | |||
@@ -954,6 +954,7 @@ static int compat_drm_sg_free(struct file *file, unsigned int cmd, | |||
954 | DRM_IOCTL_SG_FREE, (unsigned long)request); | 954 | DRM_IOCTL_SG_FREE, (unsigned long)request); |
955 | } | 955 | } |
956 | 956 | ||
957 | #if defined(CONFIG_X86) || defined(CONFIG_IA64) | ||
957 | typedef struct drm_update_draw32 { | 958 | typedef struct drm_update_draw32 { |
958 | drm_drawable_t handle; | 959 | drm_drawable_t handle; |
959 | unsigned int type; | 960 | unsigned int type; |
@@ -984,6 +985,7 @@ static int compat_drm_update_draw(struct file *file, unsigned int cmd, | |||
984 | DRM_IOCTL_UPDATE_DRAW, (unsigned long)request); | 985 | DRM_IOCTL_UPDATE_DRAW, (unsigned long)request); |
985 | return err; | 986 | return err; |
986 | } | 987 | } |
988 | #endif | ||
987 | 989 | ||
988 | struct drm_wait_vblank_request32 { | 990 | struct drm_wait_vblank_request32 { |
989 | enum drm_vblank_seq_type type; | 991 | enum drm_vblank_seq_type type; |
@@ -1066,7 +1068,9 @@ drm_ioctl_compat_t *drm_compat_ioctls[] = { | |||
1066 | #endif | 1068 | #endif |
1067 | [DRM_IOCTL_NR(DRM_IOCTL_SG_ALLOC32)] = compat_drm_sg_alloc, | 1069 | [DRM_IOCTL_NR(DRM_IOCTL_SG_ALLOC32)] = compat_drm_sg_alloc, |
1068 | [DRM_IOCTL_NR(DRM_IOCTL_SG_FREE32)] = compat_drm_sg_free, | 1070 | [DRM_IOCTL_NR(DRM_IOCTL_SG_FREE32)] = compat_drm_sg_free, |
1071 | #if defined(CONFIG_X86) || defined(CONFIG_IA64) | ||
1069 | [DRM_IOCTL_NR(DRM_IOCTL_UPDATE_DRAW32)] = compat_drm_update_draw, | 1072 | [DRM_IOCTL_NR(DRM_IOCTL_UPDATE_DRAW32)] = compat_drm_update_draw, |
1073 | #endif | ||
1070 | [DRM_IOCTL_NR(DRM_IOCTL_WAIT_VBLANK32)] = compat_drm_wait_vblank, | 1074 | [DRM_IOCTL_NR(DRM_IOCTL_WAIT_VBLANK32)] = compat_drm_wait_vblank, |
1071 | }; | 1075 | }; |
1072 | 1076 | ||
diff --git a/drivers/gpu/drm/drm_memory.c b/drivers/gpu/drm/drm_memory.c index bcc869bc4092..0c707f533eab 100644 --- a/drivers/gpu/drm/drm_memory.c +++ b/drivers/gpu/drm/drm_memory.c | |||
@@ -159,7 +159,7 @@ static inline void *agp_remap(unsigned long offset, unsigned long size, | |||
159 | 159 | ||
160 | #endif /* debug_memory */ | 160 | #endif /* debug_memory */ |
161 | 161 | ||
162 | void drm_core_ioremap(struct drm_map *map, struct drm_device *dev) | 162 | void drm_core_ioremap(struct drm_local_map *map, struct drm_device *dev) |
163 | { | 163 | { |
164 | if (drm_core_has_AGP(dev) && | 164 | if (drm_core_has_AGP(dev) && |
165 | dev->agp && dev->agp->cant_use_aperture && map->type == _DRM_AGP) | 165 | dev->agp && dev->agp->cant_use_aperture && map->type == _DRM_AGP) |
@@ -169,7 +169,7 @@ void drm_core_ioremap(struct drm_map *map, struct drm_device *dev) | |||
169 | } | 169 | } |
170 | EXPORT_SYMBOL(drm_core_ioremap); | 170 | EXPORT_SYMBOL(drm_core_ioremap); |
171 | 171 | ||
172 | void drm_core_ioremap_wc(struct drm_map *map, struct drm_device *dev) | 172 | void drm_core_ioremap_wc(struct drm_local_map *map, struct drm_device *dev) |
173 | { | 173 | { |
174 | if (drm_core_has_AGP(dev) && | 174 | if (drm_core_has_AGP(dev) && |
175 | dev->agp && dev->agp->cant_use_aperture && map->type == _DRM_AGP) | 175 | dev->agp && dev->agp->cant_use_aperture && map->type == _DRM_AGP) |
@@ -179,7 +179,7 @@ void drm_core_ioremap_wc(struct drm_map *map, struct drm_device *dev) | |||
179 | } | 179 | } |
180 | EXPORT_SYMBOL(drm_core_ioremap_wc); | 180 | EXPORT_SYMBOL(drm_core_ioremap_wc); |
181 | 181 | ||
182 | void drm_core_ioremapfree(struct drm_map *map, struct drm_device *dev) | 182 | void drm_core_ioremapfree(struct drm_local_map *map, struct drm_device *dev) |
183 | { | 183 | { |
184 | if (!map->handle || !map->size) | 184 | if (!map->handle || !map->size) |
185 | return; | 185 | return; |
diff --git a/drivers/gpu/drm/drm_proc.c b/drivers/gpu/drm/drm_proc.c index 9b3c5af61e98..bae5391165ac 100644 --- a/drivers/gpu/drm/drm_proc.c +++ b/drivers/gpu/drm/drm_proc.c | |||
@@ -40,7 +40,6 @@ | |||
40 | #include <linux/seq_file.h> | 40 | #include <linux/seq_file.h> |
41 | #include "drmP.h" | 41 | #include "drmP.h" |
42 | 42 | ||
43 | |||
44 | /*************************************************** | 43 | /*************************************************** |
45 | * Initialization, etc. | 44 | * Initialization, etc. |
46 | **************************************************/ | 45 | **************************************************/ |
diff --git a/drivers/gpu/drm/drm_stub.c b/drivers/gpu/drm/drm_stub.c index 48f33be8fd0f..d009661781bc 100644 --- a/drivers/gpu/drm/drm_stub.c +++ b/drivers/gpu/drm/drm_stub.c | |||
@@ -381,6 +381,7 @@ int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent, | |||
381 | } | 381 | } |
382 | 382 | ||
383 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { | 383 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
384 | pci_set_drvdata(pdev, dev); | ||
384 | ret = drm_get_minor(dev, &dev->control, DRM_MINOR_CONTROL); | 385 | ret = drm_get_minor(dev, &dev->control, DRM_MINOR_CONTROL); |
385 | if (ret) | 386 | if (ret) |
386 | goto err_g2; | 387 | goto err_g2; |
@@ -404,9 +405,9 @@ int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent, | |||
404 | 405 | ||
405 | list_add_tail(&dev->driver_item, &driver->device_list); | 406 | list_add_tail(&dev->driver_item, &driver->device_list); |
406 | 407 | ||
407 | DRM_INFO("Initialized %s %d.%d.%d %s on minor %d\n", | 408 | DRM_INFO("Initialized %s %d.%d.%d %s for %s on minor %d\n", |
408 | driver->name, driver->major, driver->minor, driver->patchlevel, | 409 | driver->name, driver->major, driver->minor, driver->patchlevel, |
409 | driver->date, dev->primary->index); | 410 | driver->date, pci_name(pdev), dev->primary->index); |
410 | 411 | ||
411 | return 0; | 412 | return 0; |
412 | 413 | ||
@@ -418,29 +419,7 @@ err_g1: | |||
418 | drm_free(dev, sizeof(*dev), DRM_MEM_STUB); | 419 | drm_free(dev, sizeof(*dev), DRM_MEM_STUB); |
419 | return ret; | 420 | return ret; |
420 | } | 421 | } |
421 | 422 | EXPORT_SYMBOL(drm_get_dev); | |
422 | /** | ||
423 | * Put a device minor number. | ||
424 | * | ||
425 | * \param dev device data structure | ||
426 | * \return always zero | ||
427 | * | ||
428 | * Cleans up the proc resources. If it is the last minor then release the foreign | ||
429 | * "drm" data, otherwise unregisters the "drm" data, frees the dev list and | ||
430 | * unregisters the character device. | ||
431 | */ | ||
432 | int drm_put_dev(struct drm_device * dev) | ||
433 | { | ||
434 | DRM_DEBUG("release primary %s\n", dev->driver->pci_driver.name); | ||
435 | |||
436 | if (dev->devname) { | ||
437 | drm_free(dev->devname, strlen(dev->devname) + 1, | ||
438 | DRM_MEM_DRIVER); | ||
439 | dev->devname = NULL; | ||
440 | } | ||
441 | drm_free(dev, sizeof(*dev), DRM_MEM_STUB); | ||
442 | return 0; | ||
443 | } | ||
444 | 423 | ||
445 | /** | 424 | /** |
446 | * Put a secondary minor number. | 425 | * Put a secondary minor number. |
@@ -472,3 +451,67 @@ int drm_put_minor(struct drm_minor **minor_p) | |||
472 | *minor_p = NULL; | 451 | *minor_p = NULL; |
473 | return 0; | 452 | return 0; |
474 | } | 453 | } |
454 | |||
455 | /** | ||
456 | * Called via drm_exit() at module unload time or when pci device is | ||
457 | * unplugged. | ||
458 | * | ||
459 | * Cleans up all DRM device, calling drm_lastclose(). | ||
460 | * | ||
461 | * \sa drm_init | ||
462 | */ | ||
463 | void drm_put_dev(struct drm_device *dev) | ||
464 | { | ||
465 | struct drm_driver *driver = dev->driver; | ||
466 | struct drm_map_list *r_list, *list_temp; | ||
467 | |||
468 | DRM_DEBUG("\n"); | ||
469 | |||
470 | if (!dev) { | ||
471 | DRM_ERROR("cleanup called no dev\n"); | ||
472 | return; | ||
473 | } | ||
474 | |||
475 | drm_vblank_cleanup(dev); | ||
476 | |||
477 | drm_lastclose(dev); | ||
478 | |||
479 | if (drm_core_has_MTRR(dev) && drm_core_has_AGP(dev) && | ||
480 | dev->agp && dev->agp->agp_mtrr >= 0) { | ||
481 | int retval; | ||
482 | retval = mtrr_del(dev->agp->agp_mtrr, | ||
483 | dev->agp->agp_info.aper_base, | ||
484 | dev->agp->agp_info.aper_size * 1024 * 1024); | ||
485 | DRM_DEBUG("mtrr_del=%d\n", retval); | ||
486 | } | ||
487 | |||
488 | if (dev->driver->unload) | ||
489 | dev->driver->unload(dev); | ||
490 | |||
491 | if (drm_core_has_AGP(dev) && dev->agp) { | ||
492 | drm_free(dev->agp, sizeof(*dev->agp), DRM_MEM_AGPLISTS); | ||
493 | dev->agp = NULL; | ||
494 | } | ||
495 | |||
496 | drm_ht_remove(&dev->map_hash); | ||
497 | drm_ctxbitmap_cleanup(dev); | ||
498 | |||
499 | list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head) | ||
500 | drm_rmmap(dev, r_list->map); | ||
501 | |||
502 | if (drm_core_check_feature(dev, DRIVER_MODESET)) | ||
503 | drm_put_minor(&dev->control); | ||
504 | |||
505 | if (driver->driver_features & DRIVER_GEM) | ||
506 | drm_gem_destroy(dev); | ||
507 | |||
508 | drm_put_minor(&dev->primary); | ||
509 | |||
510 | if (dev->devname) { | ||
511 | drm_free(dev->devname, strlen(dev->devname) + 1, | ||
512 | DRM_MEM_DRIVER); | ||
513 | dev->devname = NULL; | ||
514 | } | ||
515 | drm_free(dev, sizeof(*dev), DRM_MEM_STUB); | ||
516 | } | ||
517 | EXPORT_SYMBOL(drm_put_dev); | ||
diff --git a/drivers/gpu/drm/drm_sysfs.c b/drivers/gpu/drm/drm_sysfs.c index 186d08159d48..5de573a981cb 100644 --- a/drivers/gpu/drm/drm_sysfs.c +++ b/drivers/gpu/drm/drm_sysfs.c | |||
@@ -35,7 +35,9 @@ static int drm_sysfs_suspend(struct device *dev, pm_message_t state) | |||
35 | struct drm_minor *drm_minor = to_drm_minor(dev); | 35 | struct drm_minor *drm_minor = to_drm_minor(dev); |
36 | struct drm_device *drm_dev = drm_minor->dev; | 36 | struct drm_device *drm_dev = drm_minor->dev; |
37 | 37 | ||
38 | if (drm_minor->type == DRM_MINOR_LEGACY && drm_dev->driver->suspend) | 38 | if (drm_minor->type == DRM_MINOR_LEGACY && |
39 | !drm_core_check_feature(drm_dev, DRIVER_MODESET) && | ||
40 | drm_dev->driver->suspend) | ||
39 | return drm_dev->driver->suspend(drm_dev, state); | 41 | return drm_dev->driver->suspend(drm_dev, state); |
40 | 42 | ||
41 | return 0; | 43 | return 0; |
@@ -53,7 +55,9 @@ static int drm_sysfs_resume(struct device *dev) | |||
53 | struct drm_minor *drm_minor = to_drm_minor(dev); | 55 | struct drm_minor *drm_minor = to_drm_minor(dev); |
54 | struct drm_device *drm_dev = drm_minor->dev; | 56 | struct drm_device *drm_dev = drm_minor->dev; |
55 | 57 | ||
56 | if (drm_minor->type == DRM_MINOR_LEGACY && drm_dev->driver->resume) | 58 | if (drm_minor->type == DRM_MINOR_LEGACY && |
59 | !drm_core_check_feature(drm_dev, DRIVER_MODESET) && | ||
60 | drm_dev->driver->resume) | ||
57 | return drm_dev->driver->resume(drm_dev); | 61 | return drm_dev->driver->resume(drm_dev); |
58 | 62 | ||
59 | return 0; | 63 | return 0; |
@@ -118,20 +122,6 @@ void drm_sysfs_destroy(void) | |||
118 | class_destroy(drm_class); | 122 | class_destroy(drm_class); |
119 | } | 123 | } |
120 | 124 | ||
121 | static ssize_t show_dri(struct device *device, struct device_attribute *attr, | ||
122 | char *buf) | ||
123 | { | ||
124 | struct drm_minor *drm_minor = to_drm_minor(device); | ||
125 | struct drm_device *drm_dev = drm_minor->dev; | ||
126 | if (drm_dev->driver->dri_library_name) | ||
127 | return drm_dev->driver->dri_library_name(drm_dev, buf); | ||
128 | return snprintf(buf, PAGE_SIZE, "%s\n", drm_dev->driver->pci_driver.name); | ||
129 | } | ||
130 | |||
131 | static struct device_attribute device_attrs[] = { | ||
132 | __ATTR(dri_library_name, S_IRUGO, show_dri, NULL), | ||
133 | }; | ||
134 | |||
135 | /** | 125 | /** |
136 | * drm_sysfs_device_release - do nothing | 126 | * drm_sysfs_device_release - do nothing |
137 | * @dev: Linux device | 127 | * @dev: Linux device |
@@ -474,7 +464,6 @@ void drm_sysfs_hotplug_event(struct drm_device *dev) | |||
474 | int drm_sysfs_device_add(struct drm_minor *minor) | 464 | int drm_sysfs_device_add(struct drm_minor *minor) |
475 | { | 465 | { |
476 | int err; | 466 | int err; |
477 | int i, j; | ||
478 | char *minor_str; | 467 | char *minor_str; |
479 | 468 | ||
480 | minor->kdev.parent = &minor->dev->pdev->dev; | 469 | minor->kdev.parent = &minor->dev->pdev->dev; |
@@ -496,18 +485,8 @@ int drm_sysfs_device_add(struct drm_minor *minor) | |||
496 | goto err_out; | 485 | goto err_out; |
497 | } | 486 | } |
498 | 487 | ||
499 | for (i = 0; i < ARRAY_SIZE(device_attrs); i++) { | ||
500 | err = device_create_file(&minor->kdev, &device_attrs[i]); | ||
501 | if (err) | ||
502 | goto err_out_files; | ||
503 | } | ||
504 | |||
505 | return 0; | 488 | return 0; |
506 | 489 | ||
507 | err_out_files: | ||
508 | if (i > 0) | ||
509 | for (j = 0; j < i; j++) | ||
510 | device_remove_file(&minor->kdev, &device_attrs[j]); | ||
511 | device_unregister(&minor->kdev); | 490 | device_unregister(&minor->kdev); |
512 | err_out: | 491 | err_out: |
513 | 492 | ||
@@ -523,9 +502,5 @@ err_out: | |||
523 | */ | 502 | */ |
524 | void drm_sysfs_device_remove(struct drm_minor *minor) | 503 | void drm_sysfs_device_remove(struct drm_minor *minor) |
525 | { | 504 | { |
526 | int i; | ||
527 | |||
528 | for (i = 0; i < ARRAY_SIZE(device_attrs); i++) | ||
529 | device_remove_file(&minor->kdev, &device_attrs[i]); | ||
530 | device_unregister(&minor->kdev); | 505 | device_unregister(&minor->kdev); |
531 | } | 506 | } |
diff --git a/drivers/gpu/drm/drm_vm.c b/drivers/gpu/drm/drm_vm.c index 3ffae021d280..22f76567ac7d 100644 --- a/drivers/gpu/drm/drm_vm.c +++ b/drivers/gpu/drm/drm_vm.c | |||
@@ -91,7 +91,7 @@ static int drm_do_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf) | |||
91 | { | 91 | { |
92 | struct drm_file *priv = vma->vm_file->private_data; | 92 | struct drm_file *priv = vma->vm_file->private_data; |
93 | struct drm_device *dev = priv->minor->dev; | 93 | struct drm_device *dev = priv->minor->dev; |
94 | struct drm_map *map = NULL; | 94 | struct drm_local_map *map = NULL; |
95 | struct drm_map_list *r_list; | 95 | struct drm_map_list *r_list; |
96 | struct drm_hash_item *hash; | 96 | struct drm_hash_item *hash; |
97 | 97 | ||
@@ -115,9 +115,9 @@ static int drm_do_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf) | |||
115 | * Using vm_pgoff as a selector forces us to use this unusual | 115 | * Using vm_pgoff as a selector forces us to use this unusual |
116 | * addressing scheme. | 116 | * addressing scheme. |
117 | */ | 117 | */ |
118 | unsigned long offset = (unsigned long)vmf->virtual_address - | 118 | resource_size_t offset = (unsigned long)vmf->virtual_address - |
119 | vma->vm_start; | 119 | vma->vm_start; |
120 | unsigned long baddr = map->offset + offset; | 120 | resource_size_t baddr = map->offset + offset; |
121 | struct drm_agp_mem *agpmem; | 121 | struct drm_agp_mem *agpmem; |
122 | struct page *page; | 122 | struct page *page; |
123 | 123 | ||
@@ -149,8 +149,10 @@ static int drm_do_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf) | |||
149 | vmf->page = page; | 149 | vmf->page = page; |
150 | 150 | ||
151 | DRM_DEBUG | 151 | DRM_DEBUG |
152 | ("baddr = 0x%lx page = 0x%p, offset = 0x%lx, count=%d\n", | 152 | ("baddr = 0x%llx page = 0x%p, offset = 0x%llx, count=%d\n", |
153 | baddr, __va(agpmem->memory->memory[offset]), offset, | 153 | (unsigned long long)baddr, |
154 | __va(agpmem->memory->memory[offset]), | ||
155 | (unsigned long long)offset, | ||
154 | page_count(page)); | 156 | page_count(page)); |
155 | return 0; | 157 | return 0; |
156 | } | 158 | } |
@@ -176,7 +178,7 @@ static int drm_do_vm_fault(struct vm_area_struct *vma, struct vm_fault *vmf) | |||
176 | */ | 178 | */ |
177 | static int drm_do_vm_shm_fault(struct vm_area_struct *vma, struct vm_fault *vmf) | 179 | static int drm_do_vm_shm_fault(struct vm_area_struct *vma, struct vm_fault *vmf) |
178 | { | 180 | { |
179 | struct drm_map *map = (struct drm_map *) vma->vm_private_data; | 181 | struct drm_local_map *map = vma->vm_private_data; |
180 | unsigned long offset; | 182 | unsigned long offset; |
181 | unsigned long i; | 183 | unsigned long i; |
182 | struct page *page; | 184 | struct page *page; |
@@ -209,7 +211,7 @@ static void drm_vm_shm_close(struct vm_area_struct *vma) | |||
209 | struct drm_file *priv = vma->vm_file->private_data; | 211 | struct drm_file *priv = vma->vm_file->private_data; |
210 | struct drm_device *dev = priv->minor->dev; | 212 | struct drm_device *dev = priv->minor->dev; |
211 | struct drm_vma_entry *pt, *temp; | 213 | struct drm_vma_entry *pt, *temp; |
212 | struct drm_map *map; | 214 | struct drm_local_map *map; |
213 | struct drm_map_list *r_list; | 215 | struct drm_map_list *r_list; |
214 | int found_maps = 0; | 216 | int found_maps = 0; |
215 | 217 | ||
@@ -322,7 +324,7 @@ static int drm_do_vm_dma_fault(struct vm_area_struct *vma, struct vm_fault *vmf) | |||
322 | */ | 324 | */ |
323 | static int drm_do_vm_sg_fault(struct vm_area_struct *vma, struct vm_fault *vmf) | 325 | static int drm_do_vm_sg_fault(struct vm_area_struct *vma, struct vm_fault *vmf) |
324 | { | 326 | { |
325 | struct drm_map *map = (struct drm_map *) vma->vm_private_data; | 327 | struct drm_local_map *map = vma->vm_private_data; |
326 | struct drm_file *priv = vma->vm_file->private_data; | 328 | struct drm_file *priv = vma->vm_file->private_data; |
327 | struct drm_device *dev = priv->minor->dev; | 329 | struct drm_device *dev = priv->minor->dev; |
328 | struct drm_sg_mem *entry = dev->sg; | 330 | struct drm_sg_mem *entry = dev->sg; |
@@ -512,14 +514,14 @@ static int drm_mmap_dma(struct file *filp, struct vm_area_struct *vma) | |||
512 | return 0; | 514 | return 0; |
513 | } | 515 | } |
514 | 516 | ||
515 | unsigned long drm_core_get_map_ofs(struct drm_map * map) | 517 | resource_size_t drm_core_get_map_ofs(struct drm_local_map * map) |
516 | { | 518 | { |
517 | return map->offset; | 519 | return map->offset; |
518 | } | 520 | } |
519 | 521 | ||
520 | EXPORT_SYMBOL(drm_core_get_map_ofs); | 522 | EXPORT_SYMBOL(drm_core_get_map_ofs); |
521 | 523 | ||
522 | unsigned long drm_core_get_reg_ofs(struct drm_device *dev) | 524 | resource_size_t drm_core_get_reg_ofs(struct drm_device *dev) |
523 | { | 525 | { |
524 | #ifdef __alpha__ | 526 | #ifdef __alpha__ |
525 | return dev->hose->dense_mem_base - dev->hose->mem_space->start; | 527 | return dev->hose->dense_mem_base - dev->hose->mem_space->start; |
@@ -547,8 +549,8 @@ int drm_mmap_locked(struct file *filp, struct vm_area_struct *vma) | |||
547 | { | 549 | { |
548 | struct drm_file *priv = filp->private_data; | 550 | struct drm_file *priv = filp->private_data; |
549 | struct drm_device *dev = priv->minor->dev; | 551 | struct drm_device *dev = priv->minor->dev; |
550 | struct drm_map *map = NULL; | 552 | struct drm_local_map *map = NULL; |
551 | unsigned long offset = 0; | 553 | resource_size_t offset = 0; |
552 | struct drm_hash_item *hash; | 554 | struct drm_hash_item *hash; |
553 | 555 | ||
554 | DRM_DEBUG("start = 0x%lx, end = 0x%lx, page offset = 0x%lx\n", | 556 | DRM_DEBUG("start = 0x%lx, end = 0x%lx, page offset = 0x%lx\n", |
@@ -623,9 +625,9 @@ int drm_mmap_locked(struct file *filp, struct vm_area_struct *vma) | |||
623 | vma->vm_page_prot)) | 625 | vma->vm_page_prot)) |
624 | return -EAGAIN; | 626 | return -EAGAIN; |
625 | DRM_DEBUG(" Type = %d; start = 0x%lx, end = 0x%lx," | 627 | DRM_DEBUG(" Type = %d; start = 0x%lx, end = 0x%lx," |
626 | " offset = 0x%lx\n", | 628 | " offset = 0x%llx\n", |
627 | map->type, | 629 | map->type, |
628 | vma->vm_start, vma->vm_end, map->offset + offset); | 630 | vma->vm_start, vma->vm_end, (unsigned long long)(map->offset + offset)); |
629 | vma->vm_ops = &drm_vm_ops; | 631 | vma->vm_ops = &drm_vm_ops; |
630 | break; | 632 | break; |
631 | case _DRM_CONSISTENT: | 633 | case _DRM_CONSISTENT: |
diff --git a/drivers/gpu/drm/i810/i810_drv.h b/drivers/gpu/drm/i810/i810_drv.h index 0118849a5672..21e2691f28f9 100644 --- a/drivers/gpu/drm/i810/i810_drv.h +++ b/drivers/gpu/drm/i810/i810_drv.h | |||
@@ -77,8 +77,8 @@ typedef struct _drm_i810_ring_buffer { | |||
77 | } drm_i810_ring_buffer_t; | 77 | } drm_i810_ring_buffer_t; |
78 | 78 | ||
79 | typedef struct drm_i810_private { | 79 | typedef struct drm_i810_private { |
80 | struct drm_map *sarea_map; | 80 | struct drm_local_map *sarea_map; |
81 | struct drm_map *mmio_map; | 81 | struct drm_local_map *mmio_map; |
82 | 82 | ||
83 | drm_i810_sarea_t *sarea_priv; | 83 | drm_i810_sarea_t *sarea_priv; |
84 | drm_i810_ring_buffer_t ring; | 84 | drm_i810_ring_buffer_t ring; |
diff --git a/drivers/gpu/drm/i830/i830_drv.h b/drivers/gpu/drm/i830/i830_drv.h index b5bf8cc0fdaa..da82afe4ded5 100644 --- a/drivers/gpu/drm/i830/i830_drv.h +++ b/drivers/gpu/drm/i830/i830_drv.h | |||
@@ -84,8 +84,8 @@ typedef struct _drm_i830_ring_buffer { | |||
84 | } drm_i830_ring_buffer_t; | 84 | } drm_i830_ring_buffer_t; |
85 | 85 | ||
86 | typedef struct drm_i830_private { | 86 | typedef struct drm_i830_private { |
87 | struct drm_map *sarea_map; | 87 | struct drm_local_map *sarea_map; |
88 | struct drm_map *mmio_map; | 88 | struct drm_local_map *mmio_map; |
89 | 89 | ||
90 | drm_i830_sarea_t *sarea_priv; | 90 | drm_i830_sarea_t *sarea_priv; |
91 | drm_i830_ring_buffer_t ring; | 91 | drm_i830_ring_buffer_t ring; |
diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c index a818b377e1f7..85549f615b1f 100644 --- a/drivers/gpu/drm/i915/i915_dma.c +++ b/drivers/gpu/drm/i915/i915_dma.c | |||
@@ -1099,7 +1099,7 @@ void i915_master_destroy(struct drm_device *dev, struct drm_master *master) | |||
1099 | int i915_driver_load(struct drm_device *dev, unsigned long flags) | 1099 | int i915_driver_load(struct drm_device *dev, unsigned long flags) |
1100 | { | 1100 | { |
1101 | struct drm_i915_private *dev_priv = dev->dev_private; | 1101 | struct drm_i915_private *dev_priv = dev->dev_private; |
1102 | unsigned long base, size; | 1102 | resource_size_t base, size; |
1103 | int ret = 0, mmio_bar = IS_I9XX(dev) ? 0 : 1; | 1103 | int ret = 0, mmio_bar = IS_I9XX(dev) ? 0 : 1; |
1104 | 1104 | ||
1105 | /* i915 has 4 more counters */ | 1105 | /* i915 has 4 more counters */ |
diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c index dcb91f5df6e3..2c0167693450 100644 --- a/drivers/gpu/drm/i915/i915_drv.c +++ b/drivers/gpu/drm/i915/i915_drv.c | |||
@@ -42,6 +42,8 @@ module_param_named(modeset, i915_modeset, int, 0400); | |||
42 | unsigned int i915_fbpercrtc = 0; | 42 | unsigned int i915_fbpercrtc = 0; |
43 | module_param_named(fbpercrtc, i915_fbpercrtc, int, 0400); | 43 | module_param_named(fbpercrtc, i915_fbpercrtc, int, 0400); |
44 | 44 | ||
45 | static struct drm_driver driver; | ||
46 | |||
45 | static struct pci_device_id pciidlist[] = { | 47 | static struct pci_device_id pciidlist[] = { |
46 | i915_PCI_IDS | 48 | i915_PCI_IDS |
47 | }; | 49 | }; |
@@ -117,6 +119,36 @@ static int i915_resume(struct drm_device *dev) | |||
117 | return ret; | 119 | return ret; |
118 | } | 120 | } |
119 | 121 | ||
122 | static int __devinit | ||
123 | i915_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | ||
124 | { | ||
125 | return drm_get_dev(pdev, ent, &driver); | ||
126 | } | ||
127 | |||
128 | static void | ||
129 | i915_pci_remove(struct pci_dev *pdev) | ||
130 | { | ||
131 | struct drm_device *dev = pci_get_drvdata(pdev); | ||
132 | |||
133 | drm_put_dev(dev); | ||
134 | } | ||
135 | |||
136 | static int | ||
137 | i915_pci_suspend(struct pci_dev *pdev, pm_message_t state) | ||
138 | { | ||
139 | struct drm_device *dev = pci_get_drvdata(pdev); | ||
140 | |||
141 | return i915_suspend(dev, state); | ||
142 | } | ||
143 | |||
144 | static int | ||
145 | i915_pci_resume(struct pci_dev *pdev) | ||
146 | { | ||
147 | struct drm_device *dev = pci_get_drvdata(pdev); | ||
148 | |||
149 | return i915_resume(dev); | ||
150 | } | ||
151 | |||
120 | static struct vm_operations_struct i915_gem_vm_ops = { | 152 | static struct vm_operations_struct i915_gem_vm_ops = { |
121 | .fault = i915_gem_fault, | 153 | .fault = i915_gem_fault, |
122 | .open = drm_gem_vm_open, | 154 | .open = drm_gem_vm_open, |
@@ -174,6 +206,12 @@ static struct drm_driver driver = { | |||
174 | .pci_driver = { | 206 | .pci_driver = { |
175 | .name = DRIVER_NAME, | 207 | .name = DRIVER_NAME, |
176 | .id_table = pciidlist, | 208 | .id_table = pciidlist, |
209 | .probe = i915_pci_probe, | ||
210 | .remove = i915_pci_remove, | ||
211 | #ifdef CONFIG_PM | ||
212 | .resume = i915_pci_resume, | ||
213 | .suspend = i915_pci_suspend, | ||
214 | #endif | ||
177 | }, | 215 | }, |
178 | 216 | ||
179 | .name = DRIVER_NAME, | 217 | .name = DRIVER_NAME, |
diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c index b52cba0f16d2..e0389ad1477d 100644 --- a/drivers/gpu/drm/i915/i915_gem.c +++ b/drivers/gpu/drm/i915/i915_gem.c | |||
@@ -446,13 +446,16 @@ fast_shmem_write(struct page **pages, | |||
446 | int length) | 446 | int length) |
447 | { | 447 | { |
448 | char __iomem *vaddr; | 448 | char __iomem *vaddr; |
449 | unsigned long unwritten; | ||
449 | 450 | ||
450 | vaddr = kmap_atomic(pages[page_base >> PAGE_SHIFT], KM_USER0); | 451 | vaddr = kmap_atomic(pages[page_base >> PAGE_SHIFT], KM_USER0); |
451 | if (vaddr == NULL) | 452 | if (vaddr == NULL) |
452 | return -ENOMEM; | 453 | return -ENOMEM; |
453 | __copy_from_user_inatomic(vaddr + page_offset, data, length); | 454 | unwritten = __copy_from_user_inatomic(vaddr + page_offset, data, length); |
454 | kunmap_atomic(vaddr, KM_USER0); | 455 | kunmap_atomic(vaddr, KM_USER0); |
455 | 456 | ||
457 | if (unwritten) | ||
458 | return -EFAULT; | ||
456 | return 0; | 459 | return 0; |
457 | } | 460 | } |
458 | 461 | ||
@@ -1093,7 +1096,7 @@ i915_gem_create_mmap_offset(struct drm_gem_object *obj) | |||
1093 | struct drm_gem_mm *mm = dev->mm_private; | 1096 | struct drm_gem_mm *mm = dev->mm_private; |
1094 | struct drm_i915_gem_object *obj_priv = obj->driver_private; | 1097 | struct drm_i915_gem_object *obj_priv = obj->driver_private; |
1095 | struct drm_map_list *list; | 1098 | struct drm_map_list *list; |
1096 | struct drm_map *map; | 1099 | struct drm_local_map *map; |
1097 | int ret = 0; | 1100 | int ret = 0; |
1098 | 1101 | ||
1099 | /* Set the object up for mmap'ing */ | 1102 | /* Set the object up for mmap'ing */ |
diff --git a/drivers/gpu/drm/mga/mga_dma.c b/drivers/gpu/drm/mga/mga_dma.c index b49c5ff29585..7a6bf9ffc5a3 100644 --- a/drivers/gpu/drm/mga/mga_dma.c +++ b/drivers/gpu/drm/mga/mga_dma.c | |||
@@ -148,8 +148,8 @@ void mga_do_dma_flush(drm_mga_private_t * dev_priv) | |||
148 | primary->space = head - tail; | 148 | primary->space = head - tail; |
149 | } | 149 | } |
150 | 150 | ||
151 | DRM_DEBUG(" head = 0x%06lx\n", head - dev_priv->primary->offset); | 151 | DRM_DEBUG(" head = 0x%06lx\n", (unsigned long)(head - dev_priv->primary->offset)); |
152 | DRM_DEBUG(" tail = 0x%06lx\n", tail - dev_priv->primary->offset); | 152 | DRM_DEBUG(" tail = 0x%06lx\n", (unsigned long)(tail - dev_priv->primary->offset)); |
153 | DRM_DEBUG(" space = 0x%06x\n", primary->space); | 153 | DRM_DEBUG(" space = 0x%06x\n", primary->space); |
154 | 154 | ||
155 | mga_flush_write_combine(); | 155 | mga_flush_write_combine(); |
@@ -187,7 +187,7 @@ void mga_do_dma_wrap_start(drm_mga_private_t * dev_priv) | |||
187 | primary->space = head - dev_priv->primary->offset; | 187 | primary->space = head - dev_priv->primary->offset; |
188 | } | 188 | } |
189 | 189 | ||
190 | DRM_DEBUG(" head = 0x%06lx\n", head - dev_priv->primary->offset); | 190 | DRM_DEBUG(" head = 0x%06lx\n", (unsigned long)(head - dev_priv->primary->offset)); |
191 | DRM_DEBUG(" tail = 0x%06x\n", primary->tail); | 191 | DRM_DEBUG(" tail = 0x%06x\n", primary->tail); |
192 | DRM_DEBUG(" wrap = %d\n", primary->last_wrap); | 192 | DRM_DEBUG(" wrap = %d\n", primary->last_wrap); |
193 | DRM_DEBUG(" space = 0x%06x\n", primary->space); | 193 | DRM_DEBUG(" space = 0x%06x\n", primary->space); |
@@ -239,7 +239,7 @@ static void mga_freelist_print(struct drm_device * dev) | |||
239 | for (entry = dev_priv->head->next; entry; entry = entry->next) { | 239 | for (entry = dev_priv->head->next; entry; entry = entry->next) { |
240 | DRM_INFO(" %p idx=%2d age=0x%x 0x%06lx\n", | 240 | DRM_INFO(" %p idx=%2d age=0x%x 0x%06lx\n", |
241 | entry, entry->buf->idx, entry->age.head, | 241 | entry, entry->buf->idx, entry->age.head, |
242 | entry->age.head - dev_priv->primary->offset); | 242 | (unsigned long)(entry->age.head - dev_priv->primary->offset)); |
243 | } | 243 | } |
244 | DRM_INFO("\n"); | 244 | DRM_INFO("\n"); |
245 | } | 245 | } |
@@ -340,10 +340,10 @@ static struct drm_buf *mga_freelist_get(struct drm_device * dev) | |||
340 | 340 | ||
341 | DRM_DEBUG(" tail=0x%06lx %d\n", | 341 | DRM_DEBUG(" tail=0x%06lx %d\n", |
342 | tail->age.head ? | 342 | tail->age.head ? |
343 | tail->age.head - dev_priv->primary->offset : 0, | 343 | (unsigned long)(tail->age.head - dev_priv->primary->offset) : 0, |
344 | tail->age.wrap); | 344 | tail->age.wrap); |
345 | DRM_DEBUG(" head=0x%06lx %d\n", | 345 | DRM_DEBUG(" head=0x%06lx %d\n", |
346 | head - dev_priv->primary->offset, wrap); | 346 | (unsigned long)(head - dev_priv->primary->offset), wrap); |
347 | 347 | ||
348 | if (TEST_AGE(&tail->age, head, wrap)) { | 348 | if (TEST_AGE(&tail->age, head, wrap)) { |
349 | prev = dev_priv->tail->prev; | 349 | prev = dev_priv->tail->prev; |
@@ -366,8 +366,9 @@ int mga_freelist_put(struct drm_device * dev, struct drm_buf * buf) | |||
366 | drm_mga_freelist_t *head, *entry, *prev; | 366 | drm_mga_freelist_t *head, *entry, *prev; |
367 | 367 | ||
368 | DRM_DEBUG("age=0x%06lx wrap=%d\n", | 368 | DRM_DEBUG("age=0x%06lx wrap=%d\n", |
369 | buf_priv->list_entry->age.head - | 369 | (unsigned long)(buf_priv->list_entry->age.head - |
370 | dev_priv->primary->offset, buf_priv->list_entry->age.wrap); | 370 | dev_priv->primary->offset), |
371 | buf_priv->list_entry->age.wrap); | ||
371 | 372 | ||
372 | entry = buf_priv->list_entry; | 373 | entry = buf_priv->list_entry; |
373 | head = dev_priv->head; | 374 | head = dev_priv->head; |
diff --git a/drivers/gpu/drm/mga/mga_drv.h b/drivers/gpu/drm/mga/mga_drv.h index 88257c276eb9..3d264f288237 100644 --- a/drivers/gpu/drm/mga/mga_drv.h +++ b/drivers/gpu/drm/mga/mga_drv.h | |||
@@ -113,8 +113,8 @@ typedef struct drm_mga_private { | |||
113 | * \sa drm_mga_private_t::mmio | 113 | * \sa drm_mga_private_t::mmio |
114 | */ | 114 | */ |
115 | /*@{ */ | 115 | /*@{ */ |
116 | u32 mmio_base; /**< Bus address of base of MMIO. */ | 116 | resource_size_t mmio_base; /**< Bus address of base of MMIO. */ |
117 | u32 mmio_size; /**< Size of the MMIO region. */ | 117 | resource_size_t mmio_size; /**< Size of the MMIO region. */ |
118 | /*@} */ | 118 | /*@} */ |
119 | 119 | ||
120 | u32 clear_cmd; | 120 | u32 clear_cmd; |
@@ -317,8 +317,8 @@ do { \ | |||
317 | DRM_INFO( "\n" ); \ | 317 | DRM_INFO( "\n" ); \ |
318 | DRM_INFO( " tail=0x%06x head=0x%06lx\n", \ | 318 | DRM_INFO( " tail=0x%06x head=0x%06lx\n", \ |
319 | dev_priv->prim.tail, \ | 319 | dev_priv->prim.tail, \ |
320 | MGA_READ( MGA_PRIMADDRESS ) - \ | 320 | (unsigned long)(MGA_READ(MGA_PRIMADDRESS) - \ |
321 | dev_priv->primary->offset ); \ | 321 | dev_priv->primary->offset)); \ |
322 | } \ | 322 | } \ |
323 | if ( !test_bit( 0, &dev_priv->prim.wrapped ) ) { \ | 323 | if ( !test_bit( 0, &dev_priv->prim.wrapped ) ) { \ |
324 | if ( dev_priv->prim.space < \ | 324 | if ( dev_priv->prim.space < \ |
diff --git a/drivers/gpu/drm/r128/r128_cce.c b/drivers/gpu/drm/r128/r128_cce.c index c31afbde62e7..32de4cedc363 100644 --- a/drivers/gpu/drm/r128/r128_cce.c +++ b/drivers/gpu/drm/r128/r128_cce.c | |||
@@ -525,11 +525,12 @@ static int r128_do_init_cce(struct drm_device * dev, drm_r128_init_t * init) | |||
525 | } else | 525 | } else |
526 | #endif | 526 | #endif |
527 | { | 527 | { |
528 | dev_priv->cce_ring->handle = (void *)dev_priv->cce_ring->offset; | 528 | dev_priv->cce_ring->handle = |
529 | (void *)(unsigned long)dev_priv->cce_ring->offset; | ||
529 | dev_priv->ring_rptr->handle = | 530 | dev_priv->ring_rptr->handle = |
530 | (void *)dev_priv->ring_rptr->offset; | 531 | (void *)(unsigned long)dev_priv->ring_rptr->offset; |
531 | dev->agp_buffer_map->handle = | 532 | dev->agp_buffer_map->handle = |
532 | (void *)dev->agp_buffer_map->offset; | 533 | (void *)(unsigned long)dev->agp_buffer_map->offset; |
533 | } | 534 | } |
534 | 535 | ||
535 | #if __OS_HAS_AGP | 536 | #if __OS_HAS_AGP |
diff --git a/drivers/gpu/drm/radeon/Makefile b/drivers/gpu/drm/radeon/Makefile index feb521ebc393..52ce439a0f2e 100644 --- a/drivers/gpu/drm/radeon/Makefile +++ b/drivers/gpu/drm/radeon/Makefile | |||
@@ -3,7 +3,7 @@ | |||
3 | # Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher. | 3 | # Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher. |
4 | 4 | ||
5 | ccflags-y := -Iinclude/drm | 5 | ccflags-y := -Iinclude/drm |
6 | radeon-y := radeon_drv.o radeon_cp.o radeon_state.o radeon_mem.o radeon_irq.o r300_cmdbuf.o | 6 | radeon-y := radeon_drv.o radeon_cp.o radeon_state.o radeon_mem.o radeon_irq.o r300_cmdbuf.o r600_cp.o |
7 | 7 | ||
8 | radeon-$(CONFIG_COMPAT) += radeon_ioc32.o | 8 | radeon-$(CONFIG_COMPAT) += radeon_ioc32.o |
9 | 9 | ||
diff --git a/drivers/gpu/drm/radeon/r300_cmdbuf.c b/drivers/gpu/drm/radeon/r300_cmdbuf.c index cace3964feeb..cb2e470f97d4 100644 --- a/drivers/gpu/drm/radeon/r300_cmdbuf.c +++ b/drivers/gpu/drm/radeon/r300_cmdbuf.c | |||
@@ -37,6 +37,8 @@ | |||
37 | #include "radeon_drv.h" | 37 | #include "radeon_drv.h" |
38 | #include "r300_reg.h" | 38 | #include "r300_reg.h" |
39 | 39 | ||
40 | #include <asm/unaligned.h> | ||
41 | |||
40 | #define R300_SIMULTANEOUS_CLIPRECTS 4 | 42 | #define R300_SIMULTANEOUS_CLIPRECTS 4 |
41 | 43 | ||
42 | /* Values for R300_RE_CLIPRECT_CNTL depending on the number of cliprects | 44 | /* Values for R300_RE_CLIPRECT_CNTL depending on the number of cliprects |
@@ -205,6 +207,10 @@ void r300_init_reg_flags(struct drm_device *dev) | |||
205 | ADD_RANGE(0x42C0, 2); | 207 | ADD_RANGE(0x42C0, 2); |
206 | ADD_RANGE(R300_RS_CNTL_0, 2); | 208 | ADD_RANGE(R300_RS_CNTL_0, 2); |
207 | 209 | ||
210 | ADD_RANGE(R300_SU_REG_DEST, 1); | ||
211 | if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV530) | ||
212 | ADD_RANGE(RV530_FG_ZBREG_DEST, 1); | ||
213 | |||
208 | ADD_RANGE(R300_SC_HYPERZ, 2); | 214 | ADD_RANGE(R300_SC_HYPERZ, 2); |
209 | ADD_RANGE(0x43E8, 1); | 215 | ADD_RANGE(0x43E8, 1); |
210 | 216 | ||
@@ -230,6 +236,7 @@ void r300_init_reg_flags(struct drm_device *dev) | |||
230 | ADD_RANGE(R300_ZB_DEPTHPITCH, 1); | 236 | ADD_RANGE(R300_ZB_DEPTHPITCH, 1); |
231 | ADD_RANGE(R300_ZB_DEPTHCLEARVALUE, 1); | 237 | ADD_RANGE(R300_ZB_DEPTHCLEARVALUE, 1); |
232 | ADD_RANGE(R300_ZB_ZMASK_OFFSET, 13); | 238 | ADD_RANGE(R300_ZB_ZMASK_OFFSET, 13); |
239 | ADD_RANGE(R300_ZB_ZPASS_DATA, 2); /* ZB_ZPASS_DATA, ZB_ZPASS_ADDR */ | ||
233 | 240 | ||
234 | ADD_RANGE(R300_TX_FILTER_0, 16); | 241 | ADD_RANGE(R300_TX_FILTER_0, 16); |
235 | ADD_RANGE(R300_TX_FILTER1_0, 16); | 242 | ADD_RANGE(R300_TX_FILTER1_0, 16); |
@@ -917,6 +924,7 @@ static int r300_scratch(drm_radeon_private_t *dev_priv, | |||
917 | { | 924 | { |
918 | u32 *ref_age_base; | 925 | u32 *ref_age_base; |
919 | u32 i, buf_idx, h_pending; | 926 | u32 i, buf_idx, h_pending; |
927 | u64 ptr_addr; | ||
920 | RING_LOCALS; | 928 | RING_LOCALS; |
921 | 929 | ||
922 | if (cmdbuf->bufsz < | 930 | if (cmdbuf->bufsz < |
@@ -930,7 +938,8 @@ static int r300_scratch(drm_radeon_private_t *dev_priv, | |||
930 | 938 | ||
931 | dev_priv->scratch_ages[header.scratch.reg]++; | 939 | dev_priv->scratch_ages[header.scratch.reg]++; |
932 | 940 | ||
933 | ref_age_base = (u32 *)(unsigned long)*((uint64_t *)cmdbuf->buf); | 941 | ptr_addr = get_unaligned((u64 *)cmdbuf->buf); |
942 | ref_age_base = (u32 *)(unsigned long)ptr_addr; | ||
934 | 943 | ||
935 | cmdbuf->buf += sizeof(u64); | 944 | cmdbuf->buf += sizeof(u64); |
936 | cmdbuf->bufsz -= sizeof(u64); | 945 | cmdbuf->bufsz -= sizeof(u64); |
diff --git a/drivers/gpu/drm/radeon/r300_reg.h b/drivers/gpu/drm/radeon/r300_reg.h index ee6f811599a3..bdbc95fa6721 100644 --- a/drivers/gpu/drm/radeon/r300_reg.h +++ b/drivers/gpu/drm/radeon/r300_reg.h | |||
@@ -1770,4 +1770,9 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. | |||
1770 | #define R500_RB3D_COLOR_CLEAR_VALUE_AR 0x46c0 | 1770 | #define R500_RB3D_COLOR_CLEAR_VALUE_AR 0x46c0 |
1771 | #define R500_RB3D_CONSTANT_COLOR_AR 0x4ef8 | 1771 | #define R500_RB3D_CONSTANT_COLOR_AR 0x4ef8 |
1772 | 1772 | ||
1773 | #define R300_SU_REG_DEST 0x42c8 | ||
1774 | #define RV530_FG_ZBREG_DEST 0x4be8 | ||
1775 | #define R300_ZB_ZPASS_DATA 0x4f58 | ||
1776 | #define R300_ZB_ZPASS_ADDR 0x4f5c | ||
1777 | |||
1773 | #endif /* _R300_REG_H */ | 1778 | #endif /* _R300_REG_H */ |
diff --git a/drivers/gpu/drm/radeon/r600_cp.c b/drivers/gpu/drm/radeon/r600_cp.c new file mode 100644 index 000000000000..9d14eee3ed09 --- /dev/null +++ b/drivers/gpu/drm/radeon/r600_cp.c | |||
@@ -0,0 +1,2253 @@ | |||
1 | /* | ||
2 | * Copyright 2008-2009 Advanced Micro Devices, Inc. | ||
3 | * Copyright 2008 Red Hat Inc. | ||
4 | * | ||
5 | * Permission is hereby granted, free of charge, to any person obtaining a | ||
6 | * copy of this software and associated documentation files (the "Software"), | ||
7 | * to deal in the Software without restriction, including without limitation | ||
8 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
9 | * and/or sell copies of the Software, and to permit persons to whom the | ||
10 | * Software is furnished to do so, subject to the following conditions: | ||
11 | * | ||
12 | * The above copyright notice and this permission notice (including the next | ||
13 | * paragraph) shall be included in all copies or substantial portions of the | ||
14 | * Software. | ||
15 | * | ||
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
19 | * THE COPYRIGHT HOLDER(S) AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR | ||
20 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | ||
21 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
22 | * DEALINGS IN THE SOFTWARE. | ||
23 | * | ||
24 | * Authors: | ||
25 | * Dave Airlie <airlied@redhat.com> | ||
26 | * Alex Deucher <alexander.deucher@amd.com> | ||
27 | */ | ||
28 | |||
29 | #include "drmP.h" | ||
30 | #include "drm.h" | ||
31 | #include "radeon_drm.h" | ||
32 | #include "radeon_drv.h" | ||
33 | |||
34 | #include "r600_microcode.h" | ||
35 | |||
36 | # define ATI_PCIGART_PAGE_SIZE 4096 /**< PCI GART page size */ | ||
37 | # define ATI_PCIGART_PAGE_MASK (~(ATI_PCIGART_PAGE_SIZE-1)) | ||
38 | |||
39 | #define R600_PTE_VALID (1 << 0) | ||
40 | #define R600_PTE_SYSTEM (1 << 1) | ||
41 | #define R600_PTE_SNOOPED (1 << 2) | ||
42 | #define R600_PTE_READABLE (1 << 5) | ||
43 | #define R600_PTE_WRITEABLE (1 << 6) | ||
44 | |||
45 | /* MAX values used for gfx init */ | ||
46 | #define R6XX_MAX_SH_GPRS 256 | ||
47 | #define R6XX_MAX_TEMP_GPRS 16 | ||
48 | #define R6XX_MAX_SH_THREADS 256 | ||
49 | #define R6XX_MAX_SH_STACK_ENTRIES 4096 | ||
50 | #define R6XX_MAX_BACKENDS 8 | ||
51 | #define R6XX_MAX_BACKENDS_MASK 0xff | ||
52 | #define R6XX_MAX_SIMDS 8 | ||
53 | #define R6XX_MAX_SIMDS_MASK 0xff | ||
54 | #define R6XX_MAX_PIPES 8 | ||
55 | #define R6XX_MAX_PIPES_MASK 0xff | ||
56 | |||
57 | #define R7XX_MAX_SH_GPRS 256 | ||
58 | #define R7XX_MAX_TEMP_GPRS 16 | ||
59 | #define R7XX_MAX_SH_THREADS 256 | ||
60 | #define R7XX_MAX_SH_STACK_ENTRIES 4096 | ||
61 | #define R7XX_MAX_BACKENDS 8 | ||
62 | #define R7XX_MAX_BACKENDS_MASK 0xff | ||
63 | #define R7XX_MAX_SIMDS 16 | ||
64 | #define R7XX_MAX_SIMDS_MASK 0xffff | ||
65 | #define R7XX_MAX_PIPES 8 | ||
66 | #define R7XX_MAX_PIPES_MASK 0xff | ||
67 | |||
68 | static int r600_do_wait_for_fifo(drm_radeon_private_t *dev_priv, int entries) | ||
69 | { | ||
70 | int i; | ||
71 | |||
72 | dev_priv->stats.boxes |= RADEON_BOX_WAIT_IDLE; | ||
73 | |||
74 | for (i = 0; i < dev_priv->usec_timeout; i++) { | ||
75 | int slots; | ||
76 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RV770) | ||
77 | slots = (RADEON_READ(R600_GRBM_STATUS) | ||
78 | & R700_CMDFIFO_AVAIL_MASK); | ||
79 | else | ||
80 | slots = (RADEON_READ(R600_GRBM_STATUS) | ||
81 | & R600_CMDFIFO_AVAIL_MASK); | ||
82 | if (slots >= entries) | ||
83 | return 0; | ||
84 | DRM_UDELAY(1); | ||
85 | } | ||
86 | DRM_INFO("wait for fifo failed status : 0x%08X 0x%08X\n", | ||
87 | RADEON_READ(R600_GRBM_STATUS), | ||
88 | RADEON_READ(R600_GRBM_STATUS2)); | ||
89 | |||
90 | return -EBUSY; | ||
91 | } | ||
92 | |||
93 | static int r600_do_wait_for_idle(drm_radeon_private_t *dev_priv) | ||
94 | { | ||
95 | int i, ret; | ||
96 | |||
97 | dev_priv->stats.boxes |= RADEON_BOX_WAIT_IDLE; | ||
98 | |||
99 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RV770) | ||
100 | ret = r600_do_wait_for_fifo(dev_priv, 8); | ||
101 | else | ||
102 | ret = r600_do_wait_for_fifo(dev_priv, 16); | ||
103 | if (ret) | ||
104 | return ret; | ||
105 | for (i = 0; i < dev_priv->usec_timeout; i++) { | ||
106 | if (!(RADEON_READ(R600_GRBM_STATUS) & R600_GUI_ACTIVE)) | ||
107 | return 0; | ||
108 | DRM_UDELAY(1); | ||
109 | } | ||
110 | DRM_INFO("wait idle failed status : 0x%08X 0x%08X\n", | ||
111 | RADEON_READ(R600_GRBM_STATUS), | ||
112 | RADEON_READ(R600_GRBM_STATUS2)); | ||
113 | |||
114 | return -EBUSY; | ||
115 | } | ||
116 | |||
117 | void r600_page_table_cleanup(struct drm_device *dev, struct drm_ati_pcigart_info *gart_info) | ||
118 | { | ||
119 | struct drm_sg_mem *entry = dev->sg; | ||
120 | int max_pages; | ||
121 | int pages; | ||
122 | int i; | ||
123 | |||
124 | if (!entry) | ||
125 | return; | ||
126 | |||
127 | if (gart_info->bus_addr) { | ||
128 | max_pages = (gart_info->table_size / sizeof(u64)); | ||
129 | pages = (entry->pages <= max_pages) | ||
130 | ? entry->pages : max_pages; | ||
131 | |||
132 | for (i = 0; i < pages; i++) { | ||
133 | if (!entry->busaddr[i]) | ||
134 | break; | ||
135 | pci_unmap_page(dev->pdev, entry->busaddr[i], | ||
136 | PAGE_SIZE, PCI_DMA_BIDIRECTIONAL); | ||
137 | } | ||
138 | if (gart_info->gart_table_location == DRM_ATI_GART_MAIN) | ||
139 | gart_info->bus_addr = 0; | ||
140 | } | ||
141 | } | ||
142 | |||
143 | /* R600 has page table setup */ | ||
144 | int r600_page_table_init(struct drm_device *dev) | ||
145 | { | ||
146 | drm_radeon_private_t *dev_priv = dev->dev_private; | ||
147 | struct drm_ati_pcigart_info *gart_info = &dev_priv->gart_info; | ||
148 | struct drm_local_map *map = &gart_info->mapping; | ||
149 | struct drm_sg_mem *entry = dev->sg; | ||
150 | int ret = 0; | ||
151 | int i, j; | ||
152 | int pages; | ||
153 | u64 page_base; | ||
154 | dma_addr_t entry_addr; | ||
155 | int max_ati_pages, max_real_pages, gart_idx; | ||
156 | |||
157 | /* okay page table is available - lets rock */ | ||
158 | max_ati_pages = (gart_info->table_size / sizeof(u64)); | ||
159 | max_real_pages = max_ati_pages / (PAGE_SIZE / ATI_PCIGART_PAGE_SIZE); | ||
160 | |||
161 | pages = (entry->pages <= max_real_pages) ? | ||
162 | entry->pages : max_real_pages; | ||
163 | |||
164 | memset_io((void __iomem *)map->handle, 0, max_ati_pages * sizeof(u64)); | ||
165 | |||
166 | gart_idx = 0; | ||
167 | for (i = 0; i < pages; i++) { | ||
168 | entry->busaddr[i] = pci_map_page(dev->pdev, | ||
169 | entry->pagelist[i], 0, | ||
170 | PAGE_SIZE, | ||
171 | PCI_DMA_BIDIRECTIONAL); | ||
172 | if (entry->busaddr[i] == 0) { | ||
173 | DRM_ERROR("unable to map PCIGART pages!\n"); | ||
174 | r600_page_table_cleanup(dev, gart_info); | ||
175 | goto done; | ||
176 | } | ||
177 | entry_addr = entry->busaddr[i]; | ||
178 | for (j = 0; j < (PAGE_SIZE / ATI_PCIGART_PAGE_SIZE); j++) { | ||
179 | page_base = (u64) entry_addr & ATI_PCIGART_PAGE_MASK; | ||
180 | page_base |= R600_PTE_VALID | R600_PTE_SYSTEM | R600_PTE_SNOOPED; | ||
181 | page_base |= R600_PTE_READABLE | R600_PTE_WRITEABLE; | ||
182 | |||
183 | DRM_WRITE64(map, gart_idx * sizeof(u64), page_base); | ||
184 | |||
185 | gart_idx++; | ||
186 | |||
187 | if ((i % 128) == 0) | ||
188 | DRM_DEBUG("page entry %d: 0x%016llx\n", | ||
189 | i, (unsigned long long)page_base); | ||
190 | entry_addr += ATI_PCIGART_PAGE_SIZE; | ||
191 | } | ||
192 | } | ||
193 | ret = 1; | ||
194 | done: | ||
195 | return ret; | ||
196 | } | ||
197 | |||
198 | static void r600_vm_flush_gart_range(struct drm_device *dev) | ||
199 | { | ||
200 | drm_radeon_private_t *dev_priv = dev->dev_private; | ||
201 | u32 resp, countdown = 1000; | ||
202 | RADEON_WRITE(R600_VM_CONTEXT0_INVALIDATION_LOW_ADDR, dev_priv->gart_vm_start >> 12); | ||
203 | RADEON_WRITE(R600_VM_CONTEXT0_INVALIDATION_HIGH_ADDR, (dev_priv->gart_vm_start + dev_priv->gart_size - 1) >> 12); | ||
204 | RADEON_WRITE(R600_VM_CONTEXT0_REQUEST_RESPONSE, 2); | ||
205 | |||
206 | do { | ||
207 | resp = RADEON_READ(R600_VM_CONTEXT0_REQUEST_RESPONSE); | ||
208 | countdown--; | ||
209 | DRM_UDELAY(1); | ||
210 | } while (((resp & 0xf0) == 0) && countdown); | ||
211 | } | ||
212 | |||
213 | static void r600_vm_init(struct drm_device *dev) | ||
214 | { | ||
215 | drm_radeon_private_t *dev_priv = dev->dev_private; | ||
216 | /* initialise the VM to use the page table we constructed up there */ | ||
217 | u32 vm_c0, i; | ||
218 | u32 mc_rd_a; | ||
219 | u32 vm_l2_cntl, vm_l2_cntl3; | ||
220 | /* okay set up the PCIE aperture type thingo */ | ||
221 | RADEON_WRITE(R600_MC_VM_SYSTEM_APERTURE_LOW_ADDR, dev_priv->gart_vm_start >> 12); | ||
222 | RADEON_WRITE(R600_MC_VM_SYSTEM_APERTURE_HIGH_ADDR, (dev_priv->gart_vm_start + dev_priv->gart_size - 1) >> 12); | ||
223 | RADEON_WRITE(R600_MC_VM_SYSTEM_APERTURE_DEFAULT_ADDR, 0); | ||
224 | |||
225 | /* setup MC RD a */ | ||
226 | mc_rd_a = R600_MCD_L1_TLB | R600_MCD_L1_FRAG_PROC | R600_MCD_SYSTEM_ACCESS_MODE_IN_SYS | | ||
227 | R600_MCD_SYSTEM_APERTURE_UNMAPPED_ACCESS_PASS_THRU | R600_MCD_EFFECTIVE_L1_TLB_SIZE(5) | | ||
228 | R600_MCD_EFFECTIVE_L1_QUEUE_SIZE(5) | R600_MCD_WAIT_L2_QUERY; | ||
229 | |||
230 | RADEON_WRITE(R600_MCD_RD_A_CNTL, mc_rd_a); | ||
231 | RADEON_WRITE(R600_MCD_RD_B_CNTL, mc_rd_a); | ||
232 | |||
233 | RADEON_WRITE(R600_MCD_WR_A_CNTL, mc_rd_a); | ||
234 | RADEON_WRITE(R600_MCD_WR_B_CNTL, mc_rd_a); | ||
235 | |||
236 | RADEON_WRITE(R600_MCD_RD_GFX_CNTL, mc_rd_a); | ||
237 | RADEON_WRITE(R600_MCD_WR_GFX_CNTL, mc_rd_a); | ||
238 | |||
239 | RADEON_WRITE(R600_MCD_RD_SYS_CNTL, mc_rd_a); | ||
240 | RADEON_WRITE(R600_MCD_WR_SYS_CNTL, mc_rd_a); | ||
241 | |||
242 | RADEON_WRITE(R600_MCD_RD_HDP_CNTL, mc_rd_a | R600_MCD_L1_STRICT_ORDERING); | ||
243 | RADEON_WRITE(R600_MCD_WR_HDP_CNTL, mc_rd_a /*| R600_MCD_L1_STRICT_ORDERING*/); | ||
244 | |||
245 | RADEON_WRITE(R600_MCD_RD_PDMA_CNTL, mc_rd_a); | ||
246 | RADEON_WRITE(R600_MCD_WR_PDMA_CNTL, mc_rd_a); | ||
247 | |||
248 | RADEON_WRITE(R600_MCD_RD_SEM_CNTL, mc_rd_a | R600_MCD_SEMAPHORE_MODE); | ||
249 | RADEON_WRITE(R600_MCD_WR_SEM_CNTL, mc_rd_a); | ||
250 | |||
251 | vm_l2_cntl = R600_VM_L2_CACHE_EN | R600_VM_L2_FRAG_PROC | R600_VM_ENABLE_PTE_CACHE_LRU_W; | ||
252 | vm_l2_cntl |= R600_VM_L2_CNTL_QUEUE_SIZE(7); | ||
253 | RADEON_WRITE(R600_VM_L2_CNTL, vm_l2_cntl); | ||
254 | |||
255 | RADEON_WRITE(R600_VM_L2_CNTL2, 0); | ||
256 | vm_l2_cntl3 = (R600_VM_L2_CNTL3_BANK_SELECT_0(0) | | ||
257 | R600_VM_L2_CNTL3_BANK_SELECT_1(1) | | ||
258 | R600_VM_L2_CNTL3_CACHE_UPDATE_MODE(2)); | ||
259 | RADEON_WRITE(R600_VM_L2_CNTL3, vm_l2_cntl3); | ||
260 | |||
261 | vm_c0 = R600_VM_ENABLE_CONTEXT | R600_VM_PAGE_TABLE_DEPTH_FLAT; | ||
262 | |||
263 | RADEON_WRITE(R600_VM_CONTEXT0_CNTL, vm_c0); | ||
264 | |||
265 | vm_c0 &= ~R600_VM_ENABLE_CONTEXT; | ||
266 | |||
267 | /* disable all other contexts */ | ||
268 | for (i = 1; i < 8; i++) | ||
269 | RADEON_WRITE(R600_VM_CONTEXT0_CNTL + (i * 4), vm_c0); | ||
270 | |||
271 | RADEON_WRITE(R600_VM_CONTEXT0_PAGE_TABLE_BASE_ADDR, dev_priv->gart_info.bus_addr >> 12); | ||
272 | RADEON_WRITE(R600_VM_CONTEXT0_PAGE_TABLE_START_ADDR, dev_priv->gart_vm_start >> 12); | ||
273 | RADEON_WRITE(R600_VM_CONTEXT0_PAGE_TABLE_END_ADDR, (dev_priv->gart_vm_start + dev_priv->gart_size - 1) >> 12); | ||
274 | |||
275 | r600_vm_flush_gart_range(dev); | ||
276 | } | ||
277 | |||
278 | /* load r600 microcode */ | ||
279 | static void r600_cp_load_microcode(drm_radeon_private_t *dev_priv) | ||
280 | { | ||
281 | int i; | ||
282 | |||
283 | r600_do_cp_stop(dev_priv); | ||
284 | |||
285 | RADEON_WRITE(R600_CP_RB_CNTL, | ||
286 | R600_RB_NO_UPDATE | | ||
287 | R600_RB_BLKSZ(15) | | ||
288 | R600_RB_BUFSZ(3)); | ||
289 | |||
290 | RADEON_WRITE(R600_GRBM_SOFT_RESET, R600_SOFT_RESET_CP); | ||
291 | RADEON_READ(R600_GRBM_SOFT_RESET); | ||
292 | DRM_UDELAY(15000); | ||
293 | RADEON_WRITE(R600_GRBM_SOFT_RESET, 0); | ||
294 | |||
295 | RADEON_WRITE(R600_CP_ME_RAM_WADDR, 0); | ||
296 | |||
297 | if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_R600)) { | ||
298 | DRM_INFO("Loading R600 CP Microcode\n"); | ||
299 | for (i = 0; i < PM4_UCODE_SIZE; i++) { | ||
300 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
301 | R600_cp_microcode[i][0]); | ||
302 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
303 | R600_cp_microcode[i][1]); | ||
304 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
305 | R600_cp_microcode[i][2]); | ||
306 | } | ||
307 | |||
308 | RADEON_WRITE(R600_CP_PFP_UCODE_ADDR, 0); | ||
309 | DRM_INFO("Loading R600 PFP Microcode\n"); | ||
310 | for (i = 0; i < PFP_UCODE_SIZE; i++) | ||
311 | RADEON_WRITE(R600_CP_PFP_UCODE_DATA, R600_pfp_microcode[i]); | ||
312 | } else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV610)) { | ||
313 | DRM_INFO("Loading RV610 CP Microcode\n"); | ||
314 | for (i = 0; i < PM4_UCODE_SIZE; i++) { | ||
315 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
316 | RV610_cp_microcode[i][0]); | ||
317 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
318 | RV610_cp_microcode[i][1]); | ||
319 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
320 | RV610_cp_microcode[i][2]); | ||
321 | } | ||
322 | |||
323 | RADEON_WRITE(R600_CP_PFP_UCODE_ADDR, 0); | ||
324 | DRM_INFO("Loading RV610 PFP Microcode\n"); | ||
325 | for (i = 0; i < PFP_UCODE_SIZE; i++) | ||
326 | RADEON_WRITE(R600_CP_PFP_UCODE_DATA, RV610_pfp_microcode[i]); | ||
327 | } else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV630)) { | ||
328 | DRM_INFO("Loading RV630 CP Microcode\n"); | ||
329 | for (i = 0; i < PM4_UCODE_SIZE; i++) { | ||
330 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
331 | RV630_cp_microcode[i][0]); | ||
332 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
333 | RV630_cp_microcode[i][1]); | ||
334 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
335 | RV630_cp_microcode[i][2]); | ||
336 | } | ||
337 | |||
338 | RADEON_WRITE(R600_CP_PFP_UCODE_ADDR, 0); | ||
339 | DRM_INFO("Loading RV630 PFP Microcode\n"); | ||
340 | for (i = 0; i < PFP_UCODE_SIZE; i++) | ||
341 | RADEON_WRITE(R600_CP_PFP_UCODE_DATA, RV630_pfp_microcode[i]); | ||
342 | } else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV620)) { | ||
343 | DRM_INFO("Loading RV620 CP Microcode\n"); | ||
344 | for (i = 0; i < PM4_UCODE_SIZE; i++) { | ||
345 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
346 | RV620_cp_microcode[i][0]); | ||
347 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
348 | RV620_cp_microcode[i][1]); | ||
349 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
350 | RV620_cp_microcode[i][2]); | ||
351 | } | ||
352 | |||
353 | RADEON_WRITE(R600_CP_PFP_UCODE_ADDR, 0); | ||
354 | DRM_INFO("Loading RV620 PFP Microcode\n"); | ||
355 | for (i = 0; i < PFP_UCODE_SIZE; i++) | ||
356 | RADEON_WRITE(R600_CP_PFP_UCODE_DATA, RV620_pfp_microcode[i]); | ||
357 | } else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV635)) { | ||
358 | DRM_INFO("Loading RV635 CP Microcode\n"); | ||
359 | for (i = 0; i < PM4_UCODE_SIZE; i++) { | ||
360 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
361 | RV635_cp_microcode[i][0]); | ||
362 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
363 | RV635_cp_microcode[i][1]); | ||
364 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
365 | RV635_cp_microcode[i][2]); | ||
366 | } | ||
367 | |||
368 | RADEON_WRITE(R600_CP_PFP_UCODE_ADDR, 0); | ||
369 | DRM_INFO("Loading RV635 PFP Microcode\n"); | ||
370 | for (i = 0; i < PFP_UCODE_SIZE; i++) | ||
371 | RADEON_WRITE(R600_CP_PFP_UCODE_DATA, RV635_pfp_microcode[i]); | ||
372 | } else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV670)) { | ||
373 | DRM_INFO("Loading RV670 CP Microcode\n"); | ||
374 | for (i = 0; i < PM4_UCODE_SIZE; i++) { | ||
375 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
376 | RV670_cp_microcode[i][0]); | ||
377 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
378 | RV670_cp_microcode[i][1]); | ||
379 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
380 | RV670_cp_microcode[i][2]); | ||
381 | } | ||
382 | |||
383 | RADEON_WRITE(R600_CP_PFP_UCODE_ADDR, 0); | ||
384 | DRM_INFO("Loading RV670 PFP Microcode\n"); | ||
385 | for (i = 0; i < PFP_UCODE_SIZE; i++) | ||
386 | RADEON_WRITE(R600_CP_PFP_UCODE_DATA, RV670_pfp_microcode[i]); | ||
387 | } else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS780)) { | ||
388 | DRM_INFO("Loading RS780 CP Microcode\n"); | ||
389 | for (i = 0; i < PM4_UCODE_SIZE; i++) { | ||
390 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
391 | RV670_cp_microcode[i][0]); | ||
392 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
393 | RV670_cp_microcode[i][1]); | ||
394 | RADEON_WRITE(R600_CP_ME_RAM_DATA, | ||
395 | RV670_cp_microcode[i][2]); | ||
396 | } | ||
397 | |||
398 | RADEON_WRITE(R600_CP_PFP_UCODE_ADDR, 0); | ||
399 | DRM_INFO("Loading RS780 PFP Microcode\n"); | ||
400 | for (i = 0; i < PFP_UCODE_SIZE; i++) | ||
401 | RADEON_WRITE(R600_CP_PFP_UCODE_DATA, RV670_pfp_microcode[i]); | ||
402 | } | ||
403 | RADEON_WRITE(R600_CP_PFP_UCODE_ADDR, 0); | ||
404 | RADEON_WRITE(R600_CP_ME_RAM_WADDR, 0); | ||
405 | RADEON_WRITE(R600_CP_ME_RAM_RADDR, 0); | ||
406 | |||
407 | } | ||
408 | |||
409 | static void r700_vm_init(struct drm_device *dev) | ||
410 | { | ||
411 | drm_radeon_private_t *dev_priv = dev->dev_private; | ||
412 | /* initialise the VM to use the page table we constructed up there */ | ||
413 | u32 vm_c0, i; | ||
414 | u32 mc_vm_md_l1; | ||
415 | u32 vm_l2_cntl, vm_l2_cntl3; | ||
416 | /* okay set up the PCIE aperture type thingo */ | ||
417 | RADEON_WRITE(R700_MC_VM_SYSTEM_APERTURE_LOW_ADDR, dev_priv->gart_vm_start >> 12); | ||
418 | RADEON_WRITE(R700_MC_VM_SYSTEM_APERTURE_HIGH_ADDR, (dev_priv->gart_vm_start + dev_priv->gart_size - 1) >> 12); | ||
419 | RADEON_WRITE(R700_MC_VM_SYSTEM_APERTURE_DEFAULT_ADDR, 0); | ||
420 | |||
421 | mc_vm_md_l1 = R700_ENABLE_L1_TLB | | ||
422 | R700_ENABLE_L1_FRAGMENT_PROCESSING | | ||
423 | R700_SYSTEM_ACCESS_MODE_IN_SYS | | ||
424 | R700_SYSTEM_APERTURE_UNMAPPED_ACCESS_PASS_THRU | | ||
425 | R700_EFFECTIVE_L1_TLB_SIZE(5) | | ||
426 | R700_EFFECTIVE_L1_QUEUE_SIZE(5); | ||
427 | |||
428 | RADEON_WRITE(R700_MC_VM_MD_L1_TLB0_CNTL, mc_vm_md_l1); | ||
429 | RADEON_WRITE(R700_MC_VM_MD_L1_TLB1_CNTL, mc_vm_md_l1); | ||
430 | RADEON_WRITE(R700_MC_VM_MD_L1_TLB2_CNTL, mc_vm_md_l1); | ||
431 | RADEON_WRITE(R700_MC_VM_MB_L1_TLB0_CNTL, mc_vm_md_l1); | ||
432 | RADEON_WRITE(R700_MC_VM_MB_L1_TLB1_CNTL, mc_vm_md_l1); | ||
433 | RADEON_WRITE(R700_MC_VM_MB_L1_TLB2_CNTL, mc_vm_md_l1); | ||
434 | RADEON_WRITE(R700_MC_VM_MB_L1_TLB3_CNTL, mc_vm_md_l1); | ||
435 | |||
436 | vm_l2_cntl = R600_VM_L2_CACHE_EN | R600_VM_L2_FRAG_PROC | R600_VM_ENABLE_PTE_CACHE_LRU_W; | ||
437 | vm_l2_cntl |= R700_VM_L2_CNTL_QUEUE_SIZE(7); | ||
438 | RADEON_WRITE(R600_VM_L2_CNTL, vm_l2_cntl); | ||
439 | |||
440 | RADEON_WRITE(R600_VM_L2_CNTL2, 0); | ||
441 | vm_l2_cntl3 = R700_VM_L2_CNTL3_BANK_SELECT(0) | R700_VM_L2_CNTL3_CACHE_UPDATE_MODE(2); | ||
442 | RADEON_WRITE(R600_VM_L2_CNTL3, vm_l2_cntl3); | ||
443 | |||
444 | vm_c0 = R600_VM_ENABLE_CONTEXT | R600_VM_PAGE_TABLE_DEPTH_FLAT; | ||
445 | |||
446 | RADEON_WRITE(R600_VM_CONTEXT0_CNTL, vm_c0); | ||
447 | |||
448 | vm_c0 &= ~R600_VM_ENABLE_CONTEXT; | ||
449 | |||
450 | /* disable all other contexts */ | ||
451 | for (i = 1; i < 8; i++) | ||
452 | RADEON_WRITE(R600_VM_CONTEXT0_CNTL + (i * 4), vm_c0); | ||
453 | |||
454 | RADEON_WRITE(R700_VM_CONTEXT0_PAGE_TABLE_BASE_ADDR, dev_priv->gart_info.bus_addr >> 12); | ||
455 | RADEON_WRITE(R700_VM_CONTEXT0_PAGE_TABLE_START_ADDR, dev_priv->gart_vm_start >> 12); | ||
456 | RADEON_WRITE(R700_VM_CONTEXT0_PAGE_TABLE_END_ADDR, (dev_priv->gart_vm_start + dev_priv->gart_size - 1) >> 12); | ||
457 | |||
458 | r600_vm_flush_gart_range(dev); | ||
459 | } | ||
460 | |||
461 | /* load r600 microcode */ | ||
462 | static void r700_cp_load_microcode(drm_radeon_private_t *dev_priv) | ||
463 | { | ||
464 | int i; | ||
465 | |||
466 | r600_do_cp_stop(dev_priv); | ||
467 | |||
468 | RADEON_WRITE(R600_CP_RB_CNTL, | ||
469 | R600_RB_NO_UPDATE | | ||
470 | (15 << 8) | | ||
471 | (3 << 0)); | ||
472 | |||
473 | RADEON_WRITE(R600_GRBM_SOFT_RESET, R600_SOFT_RESET_CP); | ||
474 | RADEON_READ(R600_GRBM_SOFT_RESET); | ||
475 | DRM_UDELAY(15000); | ||
476 | RADEON_WRITE(R600_GRBM_SOFT_RESET, 0); | ||
477 | |||
478 | |||
479 | if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV770)) { | ||
480 | RADEON_WRITE(R600_CP_PFP_UCODE_ADDR, 0); | ||
481 | DRM_INFO("Loading RV770 PFP Microcode\n"); | ||
482 | for (i = 0; i < R700_PFP_UCODE_SIZE; i++) | ||
483 | RADEON_WRITE(R600_CP_PFP_UCODE_DATA, RV770_pfp_microcode[i]); | ||
484 | RADEON_WRITE(R600_CP_PFP_UCODE_ADDR, 0); | ||
485 | |||
486 | RADEON_WRITE(R600_CP_ME_RAM_WADDR, 0); | ||
487 | DRM_INFO("Loading RV770 CP Microcode\n"); | ||
488 | for (i = 0; i < R700_PM4_UCODE_SIZE; i++) | ||
489 | RADEON_WRITE(R600_CP_ME_RAM_DATA, RV770_cp_microcode[i]); | ||
490 | RADEON_WRITE(R600_CP_ME_RAM_WADDR, 0); | ||
491 | |||
492 | } else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV730)) { | ||
493 | RADEON_WRITE(R600_CP_PFP_UCODE_ADDR, 0); | ||
494 | DRM_INFO("Loading RV730 PFP Microcode\n"); | ||
495 | for (i = 0; i < R700_PFP_UCODE_SIZE; i++) | ||
496 | RADEON_WRITE(R600_CP_PFP_UCODE_DATA, RV730_pfp_microcode[i]); | ||
497 | RADEON_WRITE(R600_CP_PFP_UCODE_ADDR, 0); | ||
498 | |||
499 | RADEON_WRITE(R600_CP_ME_RAM_WADDR, 0); | ||
500 | DRM_INFO("Loading RV730 CP Microcode\n"); | ||
501 | for (i = 0; i < R700_PM4_UCODE_SIZE; i++) | ||
502 | RADEON_WRITE(R600_CP_ME_RAM_DATA, RV730_cp_microcode[i]); | ||
503 | RADEON_WRITE(R600_CP_ME_RAM_WADDR, 0); | ||
504 | |||
505 | } else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV710)) { | ||
506 | RADEON_WRITE(R600_CP_PFP_UCODE_ADDR, 0); | ||
507 | DRM_INFO("Loading RV710 PFP Microcode\n"); | ||
508 | for (i = 0; i < R700_PFP_UCODE_SIZE; i++) | ||
509 | RADEON_WRITE(R600_CP_PFP_UCODE_DATA, RV710_pfp_microcode[i]); | ||
510 | RADEON_WRITE(R600_CP_PFP_UCODE_ADDR, 0); | ||
511 | |||
512 | RADEON_WRITE(R600_CP_ME_RAM_WADDR, 0); | ||
513 | DRM_INFO("Loading RV710 CP Microcode\n"); | ||
514 | for (i = 0; i < R700_PM4_UCODE_SIZE; i++) | ||
515 | RADEON_WRITE(R600_CP_ME_RAM_DATA, RV710_cp_microcode[i]); | ||
516 | RADEON_WRITE(R600_CP_ME_RAM_WADDR, 0); | ||
517 | |||
518 | } | ||
519 | RADEON_WRITE(R600_CP_PFP_UCODE_ADDR, 0); | ||
520 | RADEON_WRITE(R600_CP_ME_RAM_WADDR, 0); | ||
521 | RADEON_WRITE(R600_CP_ME_RAM_RADDR, 0); | ||
522 | |||
523 | } | ||
524 | |||
525 | static void r600_test_writeback(drm_radeon_private_t *dev_priv) | ||
526 | { | ||
527 | u32 tmp; | ||
528 | |||
529 | /* Start with assuming that writeback doesn't work */ | ||
530 | dev_priv->writeback_works = 0; | ||
531 | |||
532 | /* Writeback doesn't seem to work everywhere, test it here and possibly | ||
533 | * enable it if it appears to work | ||
534 | */ | ||
535 | radeon_write_ring_rptr(dev_priv, R600_SCRATCHOFF(1), 0); | ||
536 | |||
537 | RADEON_WRITE(R600_SCRATCH_REG1, 0xdeadbeef); | ||
538 | |||
539 | for (tmp = 0; tmp < dev_priv->usec_timeout; tmp++) { | ||
540 | u32 val; | ||
541 | |||
542 | val = radeon_read_ring_rptr(dev_priv, R600_SCRATCHOFF(1)); | ||
543 | if (val == 0xdeadbeef) | ||
544 | break; | ||
545 | DRM_UDELAY(1); | ||
546 | } | ||
547 | |||
548 | if (tmp < dev_priv->usec_timeout) { | ||
549 | dev_priv->writeback_works = 1; | ||
550 | DRM_INFO("writeback test succeeded in %d usecs\n", tmp); | ||
551 | } else { | ||
552 | dev_priv->writeback_works = 0; | ||
553 | DRM_INFO("writeback test failed\n"); | ||
554 | } | ||
555 | if (radeon_no_wb == 1) { | ||
556 | dev_priv->writeback_works = 0; | ||
557 | DRM_INFO("writeback forced off\n"); | ||
558 | } | ||
559 | |||
560 | if (!dev_priv->writeback_works) { | ||
561 | /* Disable writeback to avoid unnecessary bus master transfer */ | ||
562 | RADEON_WRITE(R600_CP_RB_CNTL, RADEON_READ(R600_CP_RB_CNTL) | | ||
563 | RADEON_RB_NO_UPDATE); | ||
564 | RADEON_WRITE(R600_SCRATCH_UMSK, 0); | ||
565 | } | ||
566 | } | ||
567 | |||
568 | int r600_do_engine_reset(struct drm_device *dev) | ||
569 | { | ||
570 | drm_radeon_private_t *dev_priv = dev->dev_private; | ||
571 | u32 cp_ptr, cp_me_cntl, cp_rb_cntl; | ||
572 | |||
573 | DRM_INFO("Resetting GPU\n"); | ||
574 | |||
575 | cp_ptr = RADEON_READ(R600_CP_RB_WPTR); | ||
576 | cp_me_cntl = RADEON_READ(R600_CP_ME_CNTL); | ||
577 | RADEON_WRITE(R600_CP_ME_CNTL, R600_CP_ME_HALT); | ||
578 | |||
579 | RADEON_WRITE(R600_GRBM_SOFT_RESET, 0x7fff); | ||
580 | RADEON_READ(R600_GRBM_SOFT_RESET); | ||
581 | DRM_UDELAY(50); | ||
582 | RADEON_WRITE(R600_GRBM_SOFT_RESET, 0); | ||
583 | RADEON_READ(R600_GRBM_SOFT_RESET); | ||
584 | |||
585 | RADEON_WRITE(R600_CP_RB_WPTR_DELAY, 0); | ||
586 | cp_rb_cntl = RADEON_READ(R600_CP_RB_CNTL); | ||
587 | RADEON_WRITE(R600_CP_RB_CNTL, R600_RB_RPTR_WR_ENA); | ||
588 | |||
589 | RADEON_WRITE(R600_CP_RB_RPTR_WR, cp_ptr); | ||
590 | RADEON_WRITE(R600_CP_RB_WPTR, cp_ptr); | ||
591 | RADEON_WRITE(R600_CP_RB_CNTL, cp_rb_cntl); | ||
592 | RADEON_WRITE(R600_CP_ME_CNTL, cp_me_cntl); | ||
593 | |||
594 | /* Reset the CP ring */ | ||
595 | r600_do_cp_reset(dev_priv); | ||
596 | |||
597 | /* The CP is no longer running after an engine reset */ | ||
598 | dev_priv->cp_running = 0; | ||
599 | |||
600 | /* Reset any pending vertex, indirect buffers */ | ||
601 | radeon_freelist_reset(dev); | ||
602 | |||
603 | return 0; | ||
604 | |||
605 | } | ||
606 | |||
607 | static u32 r600_get_tile_pipe_to_backend_map(u32 num_tile_pipes, | ||
608 | u32 num_backends, | ||
609 | u32 backend_disable_mask) | ||
610 | { | ||
611 | u32 backend_map = 0; | ||
612 | u32 enabled_backends_mask; | ||
613 | u32 enabled_backends_count; | ||
614 | u32 cur_pipe; | ||
615 | u32 swizzle_pipe[R6XX_MAX_PIPES]; | ||
616 | u32 cur_backend; | ||
617 | u32 i; | ||
618 | |||
619 | if (num_tile_pipes > R6XX_MAX_PIPES) | ||
620 | num_tile_pipes = R6XX_MAX_PIPES; | ||
621 | if (num_tile_pipes < 1) | ||
622 | num_tile_pipes = 1; | ||
623 | if (num_backends > R6XX_MAX_BACKENDS) | ||
624 | num_backends = R6XX_MAX_BACKENDS; | ||
625 | if (num_backends < 1) | ||
626 | num_backends = 1; | ||
627 | |||
628 | enabled_backends_mask = 0; | ||
629 | enabled_backends_count = 0; | ||
630 | for (i = 0; i < R6XX_MAX_BACKENDS; ++i) { | ||
631 | if (((backend_disable_mask >> i) & 1) == 0) { | ||
632 | enabled_backends_mask |= (1 << i); | ||
633 | ++enabled_backends_count; | ||
634 | } | ||
635 | if (enabled_backends_count == num_backends) | ||
636 | break; | ||
637 | } | ||
638 | |||
639 | if (enabled_backends_count == 0) { | ||
640 | enabled_backends_mask = 1; | ||
641 | enabled_backends_count = 1; | ||
642 | } | ||
643 | |||
644 | if (enabled_backends_count != num_backends) | ||
645 | num_backends = enabled_backends_count; | ||
646 | |||
647 | memset((uint8_t *)&swizzle_pipe[0], 0, sizeof(u32) * R6XX_MAX_PIPES); | ||
648 | switch (num_tile_pipes) { | ||
649 | case 1: | ||
650 | swizzle_pipe[0] = 0; | ||
651 | break; | ||
652 | case 2: | ||
653 | swizzle_pipe[0] = 0; | ||
654 | swizzle_pipe[1] = 1; | ||
655 | break; | ||
656 | case 3: | ||
657 | swizzle_pipe[0] = 0; | ||
658 | swizzle_pipe[1] = 1; | ||
659 | swizzle_pipe[2] = 2; | ||
660 | break; | ||
661 | case 4: | ||
662 | swizzle_pipe[0] = 0; | ||
663 | swizzle_pipe[1] = 1; | ||
664 | swizzle_pipe[2] = 2; | ||
665 | swizzle_pipe[3] = 3; | ||
666 | break; | ||
667 | case 5: | ||
668 | swizzle_pipe[0] = 0; | ||
669 | swizzle_pipe[1] = 1; | ||
670 | swizzle_pipe[2] = 2; | ||
671 | swizzle_pipe[3] = 3; | ||
672 | swizzle_pipe[4] = 4; | ||
673 | break; | ||
674 | case 6: | ||
675 | swizzle_pipe[0] = 0; | ||
676 | swizzle_pipe[1] = 2; | ||
677 | swizzle_pipe[2] = 4; | ||
678 | swizzle_pipe[3] = 5; | ||
679 | swizzle_pipe[4] = 1; | ||
680 | swizzle_pipe[5] = 3; | ||
681 | break; | ||
682 | case 7: | ||
683 | swizzle_pipe[0] = 0; | ||
684 | swizzle_pipe[1] = 2; | ||
685 | swizzle_pipe[2] = 4; | ||
686 | swizzle_pipe[3] = 6; | ||
687 | swizzle_pipe[4] = 1; | ||
688 | swizzle_pipe[5] = 3; | ||
689 | swizzle_pipe[6] = 5; | ||
690 | break; | ||
691 | case 8: | ||
692 | swizzle_pipe[0] = 0; | ||
693 | swizzle_pipe[1] = 2; | ||
694 | swizzle_pipe[2] = 4; | ||
695 | swizzle_pipe[3] = 6; | ||
696 | swizzle_pipe[4] = 1; | ||
697 | swizzle_pipe[5] = 3; | ||
698 | swizzle_pipe[6] = 5; | ||
699 | swizzle_pipe[7] = 7; | ||
700 | break; | ||
701 | } | ||
702 | |||
703 | cur_backend = 0; | ||
704 | for (cur_pipe = 0; cur_pipe < num_tile_pipes; ++cur_pipe) { | ||
705 | while (((1 << cur_backend) & enabled_backends_mask) == 0) | ||
706 | cur_backend = (cur_backend + 1) % R6XX_MAX_BACKENDS; | ||
707 | |||
708 | backend_map |= (u32)(((cur_backend & 3) << (swizzle_pipe[cur_pipe] * 2))); | ||
709 | |||
710 | cur_backend = (cur_backend + 1) % R6XX_MAX_BACKENDS; | ||
711 | } | ||
712 | |||
713 | return backend_map; | ||
714 | } | ||
715 | |||
716 | static int r600_count_pipe_bits(uint32_t val) | ||
717 | { | ||
718 | int i, ret = 0; | ||
719 | for (i = 0; i < 32; i++) { | ||
720 | ret += val & 1; | ||
721 | val >>= 1; | ||
722 | } | ||
723 | return ret; | ||
724 | } | ||
725 | |||
726 | static void r600_gfx_init(struct drm_device *dev, | ||
727 | drm_radeon_private_t *dev_priv) | ||
728 | { | ||
729 | int i, j, num_qd_pipes; | ||
730 | u32 sx_debug_1; | ||
731 | u32 tc_cntl; | ||
732 | u32 arb_pop; | ||
733 | u32 num_gs_verts_per_thread; | ||
734 | u32 vgt_gs_per_es; | ||
735 | u32 gs_prim_buffer_depth = 0; | ||
736 | u32 sq_ms_fifo_sizes; | ||
737 | u32 sq_config; | ||
738 | u32 sq_gpr_resource_mgmt_1 = 0; | ||
739 | u32 sq_gpr_resource_mgmt_2 = 0; | ||
740 | u32 sq_thread_resource_mgmt = 0; | ||
741 | u32 sq_stack_resource_mgmt_1 = 0; | ||
742 | u32 sq_stack_resource_mgmt_2 = 0; | ||
743 | u32 hdp_host_path_cntl; | ||
744 | u32 backend_map; | ||
745 | u32 gb_tiling_config = 0; | ||
746 | u32 cc_rb_backend_disable = 0; | ||
747 | u32 cc_gc_shader_pipe_config = 0; | ||
748 | u32 ramcfg; | ||
749 | |||
750 | /* setup chip specs */ | ||
751 | switch (dev_priv->flags & RADEON_FAMILY_MASK) { | ||
752 | case CHIP_R600: | ||
753 | dev_priv->r600_max_pipes = 4; | ||
754 | dev_priv->r600_max_tile_pipes = 8; | ||
755 | dev_priv->r600_max_simds = 4; | ||
756 | dev_priv->r600_max_backends = 4; | ||
757 | dev_priv->r600_max_gprs = 256; | ||
758 | dev_priv->r600_max_threads = 192; | ||
759 | dev_priv->r600_max_stack_entries = 256; | ||
760 | dev_priv->r600_max_hw_contexts = 8; | ||
761 | dev_priv->r600_max_gs_threads = 16; | ||
762 | dev_priv->r600_sx_max_export_size = 128; | ||
763 | dev_priv->r600_sx_max_export_pos_size = 16; | ||
764 | dev_priv->r600_sx_max_export_smx_size = 128; | ||
765 | dev_priv->r600_sq_num_cf_insts = 2; | ||
766 | break; | ||
767 | case CHIP_RV630: | ||
768 | case CHIP_RV635: | ||
769 | dev_priv->r600_max_pipes = 2; | ||
770 | dev_priv->r600_max_tile_pipes = 2; | ||
771 | dev_priv->r600_max_simds = 3; | ||
772 | dev_priv->r600_max_backends = 1; | ||
773 | dev_priv->r600_max_gprs = 128; | ||
774 | dev_priv->r600_max_threads = 192; | ||
775 | dev_priv->r600_max_stack_entries = 128; | ||
776 | dev_priv->r600_max_hw_contexts = 8; | ||
777 | dev_priv->r600_max_gs_threads = 4; | ||
778 | dev_priv->r600_sx_max_export_size = 128; | ||
779 | dev_priv->r600_sx_max_export_pos_size = 16; | ||
780 | dev_priv->r600_sx_max_export_smx_size = 128; | ||
781 | dev_priv->r600_sq_num_cf_insts = 2; | ||
782 | break; | ||
783 | case CHIP_RV610: | ||
784 | case CHIP_RS780: | ||
785 | case CHIP_RV620: | ||
786 | dev_priv->r600_max_pipes = 1; | ||
787 | dev_priv->r600_max_tile_pipes = 1; | ||
788 | dev_priv->r600_max_simds = 2; | ||
789 | dev_priv->r600_max_backends = 1; | ||
790 | dev_priv->r600_max_gprs = 128; | ||
791 | dev_priv->r600_max_threads = 192; | ||
792 | dev_priv->r600_max_stack_entries = 128; | ||
793 | dev_priv->r600_max_hw_contexts = 4; | ||
794 | dev_priv->r600_max_gs_threads = 4; | ||
795 | dev_priv->r600_sx_max_export_size = 128; | ||
796 | dev_priv->r600_sx_max_export_pos_size = 16; | ||
797 | dev_priv->r600_sx_max_export_smx_size = 128; | ||
798 | dev_priv->r600_sq_num_cf_insts = 1; | ||
799 | break; | ||
800 | case CHIP_RV670: | ||
801 | dev_priv->r600_max_pipes = 4; | ||
802 | dev_priv->r600_max_tile_pipes = 4; | ||
803 | dev_priv->r600_max_simds = 4; | ||
804 | dev_priv->r600_max_backends = 4; | ||
805 | dev_priv->r600_max_gprs = 192; | ||
806 | dev_priv->r600_max_threads = 192; | ||
807 | dev_priv->r600_max_stack_entries = 256; | ||
808 | dev_priv->r600_max_hw_contexts = 8; | ||
809 | dev_priv->r600_max_gs_threads = 16; | ||
810 | dev_priv->r600_sx_max_export_size = 128; | ||
811 | dev_priv->r600_sx_max_export_pos_size = 16; | ||
812 | dev_priv->r600_sx_max_export_smx_size = 128; | ||
813 | dev_priv->r600_sq_num_cf_insts = 2; | ||
814 | break; | ||
815 | default: | ||
816 | break; | ||
817 | } | ||
818 | |||
819 | /* Initialize HDP */ | ||
820 | j = 0; | ||
821 | for (i = 0; i < 32; i++) { | ||
822 | RADEON_WRITE((0x2c14 + j), 0x00000000); | ||
823 | RADEON_WRITE((0x2c18 + j), 0x00000000); | ||
824 | RADEON_WRITE((0x2c1c + j), 0x00000000); | ||
825 | RADEON_WRITE((0x2c20 + j), 0x00000000); | ||
826 | RADEON_WRITE((0x2c24 + j), 0x00000000); | ||
827 | j += 0x18; | ||
828 | } | ||
829 | |||
830 | RADEON_WRITE(R600_GRBM_CNTL, R600_GRBM_READ_TIMEOUT(0xff)); | ||
831 | |||
832 | /* setup tiling, simd, pipe config */ | ||
833 | ramcfg = RADEON_READ(R600_RAMCFG); | ||
834 | |||
835 | switch (dev_priv->r600_max_tile_pipes) { | ||
836 | case 1: | ||
837 | gb_tiling_config |= R600_PIPE_TILING(0); | ||
838 | break; | ||
839 | case 2: | ||
840 | gb_tiling_config |= R600_PIPE_TILING(1); | ||
841 | break; | ||
842 | case 4: | ||
843 | gb_tiling_config |= R600_PIPE_TILING(2); | ||
844 | break; | ||
845 | case 8: | ||
846 | gb_tiling_config |= R600_PIPE_TILING(3); | ||
847 | break; | ||
848 | default: | ||
849 | break; | ||
850 | } | ||
851 | |||
852 | gb_tiling_config |= R600_BANK_TILING((ramcfg >> R600_NOOFBANK_SHIFT) & R600_NOOFBANK_MASK); | ||
853 | |||
854 | gb_tiling_config |= R600_GROUP_SIZE(0); | ||
855 | |||
856 | if (((ramcfg >> R600_NOOFROWS_SHIFT) & R600_NOOFROWS_MASK) > 3) { | ||
857 | gb_tiling_config |= R600_ROW_TILING(3); | ||
858 | gb_tiling_config |= R600_SAMPLE_SPLIT(3); | ||
859 | } else { | ||
860 | gb_tiling_config |= | ||
861 | R600_ROW_TILING(((ramcfg >> R600_NOOFROWS_SHIFT) & R600_NOOFROWS_MASK)); | ||
862 | gb_tiling_config |= | ||
863 | R600_SAMPLE_SPLIT(((ramcfg >> R600_NOOFROWS_SHIFT) & R600_NOOFROWS_MASK)); | ||
864 | } | ||
865 | |||
866 | gb_tiling_config |= R600_BANK_SWAPS(1); | ||
867 | |||
868 | backend_map = r600_get_tile_pipe_to_backend_map(dev_priv->r600_max_tile_pipes, | ||
869 | dev_priv->r600_max_backends, | ||
870 | (0xff << dev_priv->r600_max_backends) & 0xff); | ||
871 | gb_tiling_config |= R600_BACKEND_MAP(backend_map); | ||
872 | |||
873 | cc_gc_shader_pipe_config = | ||
874 | R600_INACTIVE_QD_PIPES((R6XX_MAX_PIPES_MASK << dev_priv->r600_max_pipes) & R6XX_MAX_PIPES_MASK); | ||
875 | cc_gc_shader_pipe_config |= | ||
876 | R600_INACTIVE_SIMDS((R6XX_MAX_SIMDS_MASK << dev_priv->r600_max_simds) & R6XX_MAX_SIMDS_MASK); | ||
877 | |||
878 | cc_rb_backend_disable = | ||
879 | R600_BACKEND_DISABLE((R6XX_MAX_BACKENDS_MASK << dev_priv->r600_max_backends) & R6XX_MAX_BACKENDS_MASK); | ||
880 | |||
881 | RADEON_WRITE(R600_GB_TILING_CONFIG, gb_tiling_config); | ||
882 | RADEON_WRITE(R600_DCP_TILING_CONFIG, (gb_tiling_config & 0xffff)); | ||
883 | RADEON_WRITE(R600_HDP_TILING_CONFIG, (gb_tiling_config & 0xffff)); | ||
884 | |||
885 | RADEON_WRITE(R600_CC_RB_BACKEND_DISABLE, cc_rb_backend_disable); | ||
886 | RADEON_WRITE(R600_CC_GC_SHADER_PIPE_CONFIG, cc_gc_shader_pipe_config); | ||
887 | RADEON_WRITE(R600_GC_USER_SHADER_PIPE_CONFIG, cc_gc_shader_pipe_config); | ||
888 | |||
889 | num_qd_pipes = | ||
890 | R6XX_MAX_BACKENDS - r600_count_pipe_bits(cc_gc_shader_pipe_config & R600_INACTIVE_QD_PIPES_MASK); | ||
891 | RADEON_WRITE(R600_VGT_OUT_DEALLOC_CNTL, (num_qd_pipes * 4) & R600_DEALLOC_DIST_MASK); | ||
892 | RADEON_WRITE(R600_VGT_VERTEX_REUSE_BLOCK_CNTL, ((num_qd_pipes * 4) - 2) & R600_VTX_REUSE_DEPTH_MASK); | ||
893 | |||
894 | /* set HW defaults for 3D engine */ | ||
895 | RADEON_WRITE(R600_CP_QUEUE_THRESHOLDS, (R600_ROQ_IB1_START(0x16) | | ||
896 | R600_ROQ_IB2_START(0x2b))); | ||
897 | |||
898 | RADEON_WRITE(R600_CP_MEQ_THRESHOLDS, (R600_MEQ_END(0x40) | | ||
899 | R600_ROQ_END(0x40))); | ||
900 | |||
901 | RADEON_WRITE(R600_TA_CNTL_AUX, (R600_DISABLE_CUBE_ANISO | | ||
902 | R600_SYNC_GRADIENT | | ||
903 | R600_SYNC_WALKER | | ||
904 | R600_SYNC_ALIGNER)); | ||
905 | |||
906 | if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV670) | ||
907 | RADEON_WRITE(R600_ARB_GDEC_RD_CNTL, 0x00000021); | ||
908 | |||
909 | sx_debug_1 = RADEON_READ(R600_SX_DEBUG_1); | ||
910 | sx_debug_1 |= R600_SMX_EVENT_RELEASE; | ||
911 | if (((dev_priv->flags & RADEON_FAMILY_MASK) > CHIP_R600)) | ||
912 | sx_debug_1 |= R600_ENABLE_NEW_SMX_ADDRESS; | ||
913 | RADEON_WRITE(R600_SX_DEBUG_1, sx_debug_1); | ||
914 | |||
915 | if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_R600) || | ||
916 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV630) || | ||
917 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV610) || | ||
918 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV620) || | ||
919 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS780)) | ||
920 | RADEON_WRITE(R600_DB_DEBUG, R600_PREZ_MUST_WAIT_FOR_POSTZ_DONE); | ||
921 | else | ||
922 | RADEON_WRITE(R600_DB_DEBUG, 0); | ||
923 | |||
924 | RADEON_WRITE(R600_DB_WATERMARKS, (R600_DEPTH_FREE(4) | | ||
925 | R600_DEPTH_FLUSH(16) | | ||
926 | R600_DEPTH_PENDING_FREE(4) | | ||
927 | R600_DEPTH_CACHELINE_FREE(16))); | ||
928 | RADEON_WRITE(R600_PA_SC_MULTI_CHIP_CNTL, 0); | ||
929 | RADEON_WRITE(R600_VGT_NUM_INSTANCES, 0); | ||
930 | |||
931 | RADEON_WRITE(R600_SPI_CONFIG_CNTL, R600_GPR_WRITE_PRIORITY(0)); | ||
932 | RADEON_WRITE(R600_SPI_CONFIG_CNTL_1, R600_VTX_DONE_DELAY(0)); | ||
933 | |||
934 | sq_ms_fifo_sizes = RADEON_READ(R600_SQ_MS_FIFO_SIZES); | ||
935 | if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV610) || | ||
936 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV620) || | ||
937 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS780)) { | ||
938 | sq_ms_fifo_sizes = (R600_CACHE_FIFO_SIZE(0xa) | | ||
939 | R600_FETCH_FIFO_HIWATER(0xa) | | ||
940 | R600_DONE_FIFO_HIWATER(0xe0) | | ||
941 | R600_ALU_UPDATE_FIFO_HIWATER(0x8)); | ||
942 | } else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_R600) || | ||
943 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV630)) { | ||
944 | sq_ms_fifo_sizes &= ~R600_DONE_FIFO_HIWATER(0xff); | ||
945 | sq_ms_fifo_sizes |= R600_DONE_FIFO_HIWATER(0x4); | ||
946 | } | ||
947 | RADEON_WRITE(R600_SQ_MS_FIFO_SIZES, sq_ms_fifo_sizes); | ||
948 | |||
949 | /* SQ_CONFIG, SQ_GPR_RESOURCE_MGMT, SQ_THREAD_RESOURCE_MGMT, SQ_STACK_RESOURCE_MGMT | ||
950 | * should be adjusted as needed by the 2D/3D drivers. This just sets default values | ||
951 | */ | ||
952 | sq_config = RADEON_READ(R600_SQ_CONFIG); | ||
953 | sq_config &= ~(R600_PS_PRIO(3) | | ||
954 | R600_VS_PRIO(3) | | ||
955 | R600_GS_PRIO(3) | | ||
956 | R600_ES_PRIO(3)); | ||
957 | sq_config |= (R600_DX9_CONSTS | | ||
958 | R600_VC_ENABLE | | ||
959 | R600_PS_PRIO(0) | | ||
960 | R600_VS_PRIO(1) | | ||
961 | R600_GS_PRIO(2) | | ||
962 | R600_ES_PRIO(3)); | ||
963 | |||
964 | if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_R600) { | ||
965 | sq_gpr_resource_mgmt_1 = (R600_NUM_PS_GPRS(124) | | ||
966 | R600_NUM_VS_GPRS(124) | | ||
967 | R600_NUM_CLAUSE_TEMP_GPRS(4)); | ||
968 | sq_gpr_resource_mgmt_2 = (R600_NUM_GS_GPRS(0) | | ||
969 | R600_NUM_ES_GPRS(0)); | ||
970 | sq_thread_resource_mgmt = (R600_NUM_PS_THREADS(136) | | ||
971 | R600_NUM_VS_THREADS(48) | | ||
972 | R600_NUM_GS_THREADS(4) | | ||
973 | R600_NUM_ES_THREADS(4)); | ||
974 | sq_stack_resource_mgmt_1 = (R600_NUM_PS_STACK_ENTRIES(128) | | ||
975 | R600_NUM_VS_STACK_ENTRIES(128)); | ||
976 | sq_stack_resource_mgmt_2 = (R600_NUM_GS_STACK_ENTRIES(0) | | ||
977 | R600_NUM_ES_STACK_ENTRIES(0)); | ||
978 | } else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV610) || | ||
979 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV620) || | ||
980 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS780)) { | ||
981 | /* no vertex cache */ | ||
982 | sq_config &= ~R600_VC_ENABLE; | ||
983 | |||
984 | sq_gpr_resource_mgmt_1 = (R600_NUM_PS_GPRS(44) | | ||
985 | R600_NUM_VS_GPRS(44) | | ||
986 | R600_NUM_CLAUSE_TEMP_GPRS(2)); | ||
987 | sq_gpr_resource_mgmt_2 = (R600_NUM_GS_GPRS(17) | | ||
988 | R600_NUM_ES_GPRS(17)); | ||
989 | sq_thread_resource_mgmt = (R600_NUM_PS_THREADS(79) | | ||
990 | R600_NUM_VS_THREADS(78) | | ||
991 | R600_NUM_GS_THREADS(4) | | ||
992 | R600_NUM_ES_THREADS(31)); | ||
993 | sq_stack_resource_mgmt_1 = (R600_NUM_PS_STACK_ENTRIES(40) | | ||
994 | R600_NUM_VS_STACK_ENTRIES(40)); | ||
995 | sq_stack_resource_mgmt_2 = (R600_NUM_GS_STACK_ENTRIES(32) | | ||
996 | R600_NUM_ES_STACK_ENTRIES(16)); | ||
997 | } else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV630) || | ||
998 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV635)) { | ||
999 | sq_gpr_resource_mgmt_1 = (R600_NUM_PS_GPRS(44) | | ||
1000 | R600_NUM_VS_GPRS(44) | | ||
1001 | R600_NUM_CLAUSE_TEMP_GPRS(2)); | ||
1002 | sq_gpr_resource_mgmt_2 = (R600_NUM_GS_GPRS(18) | | ||
1003 | R600_NUM_ES_GPRS(18)); | ||
1004 | sq_thread_resource_mgmt = (R600_NUM_PS_THREADS(79) | | ||
1005 | R600_NUM_VS_THREADS(78) | | ||
1006 | R600_NUM_GS_THREADS(4) | | ||
1007 | R600_NUM_ES_THREADS(31)); | ||
1008 | sq_stack_resource_mgmt_1 = (R600_NUM_PS_STACK_ENTRIES(40) | | ||
1009 | R600_NUM_VS_STACK_ENTRIES(40)); | ||
1010 | sq_stack_resource_mgmt_2 = (R600_NUM_GS_STACK_ENTRIES(32) | | ||
1011 | R600_NUM_ES_STACK_ENTRIES(16)); | ||
1012 | } else if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV670) { | ||
1013 | sq_gpr_resource_mgmt_1 = (R600_NUM_PS_GPRS(44) | | ||
1014 | R600_NUM_VS_GPRS(44) | | ||
1015 | R600_NUM_CLAUSE_TEMP_GPRS(2)); | ||
1016 | sq_gpr_resource_mgmt_2 = (R600_NUM_GS_GPRS(17) | | ||
1017 | R600_NUM_ES_GPRS(17)); | ||
1018 | sq_thread_resource_mgmt = (R600_NUM_PS_THREADS(79) | | ||
1019 | R600_NUM_VS_THREADS(78) | | ||
1020 | R600_NUM_GS_THREADS(4) | | ||
1021 | R600_NUM_ES_THREADS(31)); | ||
1022 | sq_stack_resource_mgmt_1 = (R600_NUM_PS_STACK_ENTRIES(64) | | ||
1023 | R600_NUM_VS_STACK_ENTRIES(64)); | ||
1024 | sq_stack_resource_mgmt_2 = (R600_NUM_GS_STACK_ENTRIES(64) | | ||
1025 | R600_NUM_ES_STACK_ENTRIES(64)); | ||
1026 | } | ||
1027 | |||
1028 | RADEON_WRITE(R600_SQ_CONFIG, sq_config); | ||
1029 | RADEON_WRITE(R600_SQ_GPR_RESOURCE_MGMT_1, sq_gpr_resource_mgmt_1); | ||
1030 | RADEON_WRITE(R600_SQ_GPR_RESOURCE_MGMT_2, sq_gpr_resource_mgmt_2); | ||
1031 | RADEON_WRITE(R600_SQ_THREAD_RESOURCE_MGMT, sq_thread_resource_mgmt); | ||
1032 | RADEON_WRITE(R600_SQ_STACK_RESOURCE_MGMT_1, sq_stack_resource_mgmt_1); | ||
1033 | RADEON_WRITE(R600_SQ_STACK_RESOURCE_MGMT_2, sq_stack_resource_mgmt_2); | ||
1034 | |||
1035 | if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV610) || | ||
1036 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV620) || | ||
1037 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS780)) | ||
1038 | RADEON_WRITE(R600_VGT_CACHE_INVALIDATION, R600_CACHE_INVALIDATION(R600_TC_ONLY)); | ||
1039 | else | ||
1040 | RADEON_WRITE(R600_VGT_CACHE_INVALIDATION, R600_CACHE_INVALIDATION(R600_VC_AND_TC)); | ||
1041 | |||
1042 | RADEON_WRITE(R600_PA_SC_AA_SAMPLE_LOCS_2S, (R600_S0_X(0xc) | | ||
1043 | R600_S0_Y(0x4) | | ||
1044 | R600_S1_X(0x4) | | ||
1045 | R600_S1_Y(0xc))); | ||
1046 | RADEON_WRITE(R600_PA_SC_AA_SAMPLE_LOCS_4S, (R600_S0_X(0xe) | | ||
1047 | R600_S0_Y(0xe) | | ||
1048 | R600_S1_X(0x2) | | ||
1049 | R600_S1_Y(0x2) | | ||
1050 | R600_S2_X(0xa) | | ||
1051 | R600_S2_Y(0x6) | | ||
1052 | R600_S3_X(0x6) | | ||
1053 | R600_S3_Y(0xa))); | ||
1054 | RADEON_WRITE(R600_PA_SC_AA_SAMPLE_LOCS_8S_WD0, (R600_S0_X(0xe) | | ||
1055 | R600_S0_Y(0xb) | | ||
1056 | R600_S1_X(0x4) | | ||
1057 | R600_S1_Y(0xc) | | ||
1058 | R600_S2_X(0x1) | | ||
1059 | R600_S2_Y(0x6) | | ||
1060 | R600_S3_X(0xa) | | ||
1061 | R600_S3_Y(0xe))); | ||
1062 | RADEON_WRITE(R600_PA_SC_AA_SAMPLE_LOCS_8S_WD1, (R600_S4_X(0x6) | | ||
1063 | R600_S4_Y(0x1) | | ||
1064 | R600_S5_X(0x0) | | ||
1065 | R600_S5_Y(0x0) | | ||
1066 | R600_S6_X(0xb) | | ||
1067 | R600_S6_Y(0x4) | | ||
1068 | R600_S7_X(0x7) | | ||
1069 | R600_S7_Y(0x8))); | ||
1070 | |||
1071 | |||
1072 | switch (dev_priv->flags & RADEON_FAMILY_MASK) { | ||
1073 | case CHIP_R600: | ||
1074 | case CHIP_RV630: | ||
1075 | case CHIP_RV635: | ||
1076 | gs_prim_buffer_depth = 0; | ||
1077 | break; | ||
1078 | case CHIP_RV610: | ||
1079 | case CHIP_RS780: | ||
1080 | case CHIP_RV620: | ||
1081 | gs_prim_buffer_depth = 32; | ||
1082 | break; | ||
1083 | case CHIP_RV670: | ||
1084 | gs_prim_buffer_depth = 128; | ||
1085 | break; | ||
1086 | default: | ||
1087 | break; | ||
1088 | } | ||
1089 | |||
1090 | num_gs_verts_per_thread = dev_priv->r600_max_pipes * 16; | ||
1091 | vgt_gs_per_es = gs_prim_buffer_depth + num_gs_verts_per_thread; | ||
1092 | /* Max value for this is 256 */ | ||
1093 | if (vgt_gs_per_es > 256) | ||
1094 | vgt_gs_per_es = 256; | ||
1095 | |||
1096 | RADEON_WRITE(R600_VGT_ES_PER_GS, 128); | ||
1097 | RADEON_WRITE(R600_VGT_GS_PER_ES, vgt_gs_per_es); | ||
1098 | RADEON_WRITE(R600_VGT_GS_PER_VS, 2); | ||
1099 | RADEON_WRITE(R600_VGT_GS_VERTEX_REUSE, 16); | ||
1100 | |||
1101 | /* more default values. 2D/3D driver should adjust as needed */ | ||
1102 | RADEON_WRITE(R600_PA_SC_LINE_STIPPLE_STATE, 0); | ||
1103 | RADEON_WRITE(R600_VGT_STRMOUT_EN, 0); | ||
1104 | RADEON_WRITE(R600_SX_MISC, 0); | ||
1105 | RADEON_WRITE(R600_PA_SC_MODE_CNTL, 0); | ||
1106 | RADEON_WRITE(R600_PA_SC_AA_CONFIG, 0); | ||
1107 | RADEON_WRITE(R600_PA_SC_LINE_STIPPLE, 0); | ||
1108 | RADEON_WRITE(R600_SPI_INPUT_Z, 0); | ||
1109 | RADEON_WRITE(R600_SPI_PS_IN_CONTROL_0, R600_NUM_INTERP(2)); | ||
1110 | RADEON_WRITE(R600_CB_COLOR7_FRAG, 0); | ||
1111 | |||
1112 | /* clear render buffer base addresses */ | ||
1113 | RADEON_WRITE(R600_CB_COLOR0_BASE, 0); | ||
1114 | RADEON_WRITE(R600_CB_COLOR1_BASE, 0); | ||
1115 | RADEON_WRITE(R600_CB_COLOR2_BASE, 0); | ||
1116 | RADEON_WRITE(R600_CB_COLOR3_BASE, 0); | ||
1117 | RADEON_WRITE(R600_CB_COLOR4_BASE, 0); | ||
1118 | RADEON_WRITE(R600_CB_COLOR5_BASE, 0); | ||
1119 | RADEON_WRITE(R600_CB_COLOR6_BASE, 0); | ||
1120 | RADEON_WRITE(R600_CB_COLOR7_BASE, 0); | ||
1121 | |||
1122 | switch (dev_priv->flags & RADEON_FAMILY_MASK) { | ||
1123 | case CHIP_RV610: | ||
1124 | case CHIP_RS780: | ||
1125 | case CHIP_RV620: | ||
1126 | tc_cntl = R600_TC_L2_SIZE(8); | ||
1127 | break; | ||
1128 | case CHIP_RV630: | ||
1129 | case CHIP_RV635: | ||
1130 | tc_cntl = R600_TC_L2_SIZE(4); | ||
1131 | break; | ||
1132 | case CHIP_R600: | ||
1133 | tc_cntl = R600_TC_L2_SIZE(0) | R600_L2_DISABLE_LATE_HIT; | ||
1134 | break; | ||
1135 | default: | ||
1136 | tc_cntl = R600_TC_L2_SIZE(0); | ||
1137 | break; | ||
1138 | } | ||
1139 | |||
1140 | RADEON_WRITE(R600_TC_CNTL, tc_cntl); | ||
1141 | |||
1142 | hdp_host_path_cntl = RADEON_READ(R600_HDP_HOST_PATH_CNTL); | ||
1143 | RADEON_WRITE(R600_HDP_HOST_PATH_CNTL, hdp_host_path_cntl); | ||
1144 | |||
1145 | arb_pop = RADEON_READ(R600_ARB_POP); | ||
1146 | arb_pop |= R600_ENABLE_TC128; | ||
1147 | RADEON_WRITE(R600_ARB_POP, arb_pop); | ||
1148 | |||
1149 | RADEON_WRITE(R600_PA_SC_MULTI_CHIP_CNTL, 0); | ||
1150 | RADEON_WRITE(R600_PA_CL_ENHANCE, (R600_CLIP_VTX_REORDER_ENA | | ||
1151 | R600_NUM_CLIP_SEQ(3))); | ||
1152 | RADEON_WRITE(R600_PA_SC_ENHANCE, R600_FORCE_EOV_MAX_CLK_CNT(4095)); | ||
1153 | |||
1154 | } | ||
1155 | |||
1156 | static u32 r700_get_tile_pipe_to_backend_map(u32 num_tile_pipes, | ||
1157 | u32 num_backends, | ||
1158 | u32 backend_disable_mask) | ||
1159 | { | ||
1160 | u32 backend_map = 0; | ||
1161 | u32 enabled_backends_mask; | ||
1162 | u32 enabled_backends_count; | ||
1163 | u32 cur_pipe; | ||
1164 | u32 swizzle_pipe[R7XX_MAX_PIPES]; | ||
1165 | u32 cur_backend; | ||
1166 | u32 i; | ||
1167 | |||
1168 | if (num_tile_pipes > R7XX_MAX_PIPES) | ||
1169 | num_tile_pipes = R7XX_MAX_PIPES; | ||
1170 | if (num_tile_pipes < 1) | ||
1171 | num_tile_pipes = 1; | ||
1172 | if (num_backends > R7XX_MAX_BACKENDS) | ||
1173 | num_backends = R7XX_MAX_BACKENDS; | ||
1174 | if (num_backends < 1) | ||
1175 | num_backends = 1; | ||
1176 | |||
1177 | enabled_backends_mask = 0; | ||
1178 | enabled_backends_count = 0; | ||
1179 | for (i = 0; i < R7XX_MAX_BACKENDS; ++i) { | ||
1180 | if (((backend_disable_mask >> i) & 1) == 0) { | ||
1181 | enabled_backends_mask |= (1 << i); | ||
1182 | ++enabled_backends_count; | ||
1183 | } | ||
1184 | if (enabled_backends_count == num_backends) | ||
1185 | break; | ||
1186 | } | ||
1187 | |||
1188 | if (enabled_backends_count == 0) { | ||
1189 | enabled_backends_mask = 1; | ||
1190 | enabled_backends_count = 1; | ||
1191 | } | ||
1192 | |||
1193 | if (enabled_backends_count != num_backends) | ||
1194 | num_backends = enabled_backends_count; | ||
1195 | |||
1196 | memset((uint8_t *)&swizzle_pipe[0], 0, sizeof(u32) * R7XX_MAX_PIPES); | ||
1197 | switch (num_tile_pipes) { | ||
1198 | case 1: | ||
1199 | swizzle_pipe[0] = 0; | ||
1200 | break; | ||
1201 | case 2: | ||
1202 | swizzle_pipe[0] = 0; | ||
1203 | swizzle_pipe[1] = 1; | ||
1204 | break; | ||
1205 | case 3: | ||
1206 | swizzle_pipe[0] = 0; | ||
1207 | swizzle_pipe[1] = 2; | ||
1208 | swizzle_pipe[2] = 1; | ||
1209 | break; | ||
1210 | case 4: | ||
1211 | swizzle_pipe[0] = 0; | ||
1212 | swizzle_pipe[1] = 2; | ||
1213 | swizzle_pipe[2] = 3; | ||
1214 | swizzle_pipe[3] = 1; | ||
1215 | break; | ||
1216 | case 5: | ||
1217 | swizzle_pipe[0] = 0; | ||
1218 | swizzle_pipe[1] = 2; | ||
1219 | swizzle_pipe[2] = 4; | ||
1220 | swizzle_pipe[3] = 1; | ||
1221 | swizzle_pipe[4] = 3; | ||
1222 | break; | ||
1223 | case 6: | ||
1224 | swizzle_pipe[0] = 0; | ||
1225 | swizzle_pipe[1] = 2; | ||
1226 | swizzle_pipe[2] = 4; | ||
1227 | swizzle_pipe[3] = 5; | ||
1228 | swizzle_pipe[4] = 3; | ||
1229 | swizzle_pipe[5] = 1; | ||
1230 | break; | ||
1231 | case 7: | ||
1232 | swizzle_pipe[0] = 0; | ||
1233 | swizzle_pipe[1] = 2; | ||
1234 | swizzle_pipe[2] = 4; | ||
1235 | swizzle_pipe[3] = 6; | ||
1236 | swizzle_pipe[4] = 3; | ||
1237 | swizzle_pipe[5] = 1; | ||
1238 | swizzle_pipe[6] = 5; | ||
1239 | break; | ||
1240 | case 8: | ||
1241 | swizzle_pipe[0] = 0; | ||
1242 | swizzle_pipe[1] = 2; | ||
1243 | swizzle_pipe[2] = 4; | ||
1244 | swizzle_pipe[3] = 6; | ||
1245 | swizzle_pipe[4] = 3; | ||
1246 | swizzle_pipe[5] = 1; | ||
1247 | swizzle_pipe[6] = 7; | ||
1248 | swizzle_pipe[7] = 5; | ||
1249 | break; | ||
1250 | } | ||
1251 | |||
1252 | cur_backend = 0; | ||
1253 | for (cur_pipe = 0; cur_pipe < num_tile_pipes; ++cur_pipe) { | ||
1254 | while (((1 << cur_backend) & enabled_backends_mask) == 0) | ||
1255 | cur_backend = (cur_backend + 1) % R7XX_MAX_BACKENDS; | ||
1256 | |||
1257 | backend_map |= (u32)(((cur_backend & 3) << (swizzle_pipe[cur_pipe] * 2))); | ||
1258 | |||
1259 | cur_backend = (cur_backend + 1) % R7XX_MAX_BACKENDS; | ||
1260 | } | ||
1261 | |||
1262 | return backend_map; | ||
1263 | } | ||
1264 | |||
1265 | static void r700_gfx_init(struct drm_device *dev, | ||
1266 | drm_radeon_private_t *dev_priv) | ||
1267 | { | ||
1268 | int i, j, num_qd_pipes; | ||
1269 | u32 sx_debug_1; | ||
1270 | u32 smx_dc_ctl0; | ||
1271 | u32 num_gs_verts_per_thread; | ||
1272 | u32 vgt_gs_per_es; | ||
1273 | u32 gs_prim_buffer_depth = 0; | ||
1274 | u32 sq_ms_fifo_sizes; | ||
1275 | u32 sq_config; | ||
1276 | u32 sq_thread_resource_mgmt; | ||
1277 | u32 hdp_host_path_cntl; | ||
1278 | u32 sq_dyn_gpr_size_simd_ab_0; | ||
1279 | u32 backend_map; | ||
1280 | u32 gb_tiling_config = 0; | ||
1281 | u32 cc_rb_backend_disable = 0; | ||
1282 | u32 cc_gc_shader_pipe_config = 0; | ||
1283 | u32 mc_arb_ramcfg; | ||
1284 | u32 db_debug4; | ||
1285 | |||
1286 | /* setup chip specs */ | ||
1287 | switch (dev_priv->flags & RADEON_FAMILY_MASK) { | ||
1288 | case CHIP_RV770: | ||
1289 | dev_priv->r600_max_pipes = 4; | ||
1290 | dev_priv->r600_max_tile_pipes = 8; | ||
1291 | dev_priv->r600_max_simds = 10; | ||
1292 | dev_priv->r600_max_backends = 4; | ||
1293 | dev_priv->r600_max_gprs = 256; | ||
1294 | dev_priv->r600_max_threads = 248; | ||
1295 | dev_priv->r600_max_stack_entries = 512; | ||
1296 | dev_priv->r600_max_hw_contexts = 8; | ||
1297 | dev_priv->r600_max_gs_threads = 16 * 2; | ||
1298 | dev_priv->r600_sx_max_export_size = 128; | ||
1299 | dev_priv->r600_sx_max_export_pos_size = 16; | ||
1300 | dev_priv->r600_sx_max_export_smx_size = 112; | ||
1301 | dev_priv->r600_sq_num_cf_insts = 2; | ||
1302 | |||
1303 | dev_priv->r700_sx_num_of_sets = 7; | ||
1304 | dev_priv->r700_sc_prim_fifo_size = 0xF9; | ||
1305 | dev_priv->r700_sc_hiz_tile_fifo_size = 0x30; | ||
1306 | dev_priv->r700_sc_earlyz_tile_fifo_fize = 0x130; | ||
1307 | break; | ||
1308 | case CHIP_RV730: | ||
1309 | dev_priv->r600_max_pipes = 2; | ||
1310 | dev_priv->r600_max_tile_pipes = 4; | ||
1311 | dev_priv->r600_max_simds = 8; | ||
1312 | dev_priv->r600_max_backends = 2; | ||
1313 | dev_priv->r600_max_gprs = 128; | ||
1314 | dev_priv->r600_max_threads = 248; | ||
1315 | dev_priv->r600_max_stack_entries = 256; | ||
1316 | dev_priv->r600_max_hw_contexts = 8; | ||
1317 | dev_priv->r600_max_gs_threads = 16 * 2; | ||
1318 | dev_priv->r600_sx_max_export_size = 256; | ||
1319 | dev_priv->r600_sx_max_export_pos_size = 32; | ||
1320 | dev_priv->r600_sx_max_export_smx_size = 224; | ||
1321 | dev_priv->r600_sq_num_cf_insts = 2; | ||
1322 | |||
1323 | dev_priv->r700_sx_num_of_sets = 7; | ||
1324 | dev_priv->r700_sc_prim_fifo_size = 0xf9; | ||
1325 | dev_priv->r700_sc_hiz_tile_fifo_size = 0x30; | ||
1326 | dev_priv->r700_sc_earlyz_tile_fifo_fize = 0x130; | ||
1327 | break; | ||
1328 | case CHIP_RV710: | ||
1329 | dev_priv->r600_max_pipes = 2; | ||
1330 | dev_priv->r600_max_tile_pipes = 2; | ||
1331 | dev_priv->r600_max_simds = 2; | ||
1332 | dev_priv->r600_max_backends = 1; | ||
1333 | dev_priv->r600_max_gprs = 256; | ||
1334 | dev_priv->r600_max_threads = 192; | ||
1335 | dev_priv->r600_max_stack_entries = 256; | ||
1336 | dev_priv->r600_max_hw_contexts = 4; | ||
1337 | dev_priv->r600_max_gs_threads = 8 * 2; | ||
1338 | dev_priv->r600_sx_max_export_size = 128; | ||
1339 | dev_priv->r600_sx_max_export_pos_size = 16; | ||
1340 | dev_priv->r600_sx_max_export_smx_size = 112; | ||
1341 | dev_priv->r600_sq_num_cf_insts = 1; | ||
1342 | |||
1343 | dev_priv->r700_sx_num_of_sets = 7; | ||
1344 | dev_priv->r700_sc_prim_fifo_size = 0x40; | ||
1345 | dev_priv->r700_sc_hiz_tile_fifo_size = 0x30; | ||
1346 | dev_priv->r700_sc_earlyz_tile_fifo_fize = 0x130; | ||
1347 | break; | ||
1348 | default: | ||
1349 | break; | ||
1350 | } | ||
1351 | |||
1352 | /* Initialize HDP */ | ||
1353 | j = 0; | ||
1354 | for (i = 0; i < 32; i++) { | ||
1355 | RADEON_WRITE((0x2c14 + j), 0x00000000); | ||
1356 | RADEON_WRITE((0x2c18 + j), 0x00000000); | ||
1357 | RADEON_WRITE((0x2c1c + j), 0x00000000); | ||
1358 | RADEON_WRITE((0x2c20 + j), 0x00000000); | ||
1359 | RADEON_WRITE((0x2c24 + j), 0x00000000); | ||
1360 | j += 0x18; | ||
1361 | } | ||
1362 | |||
1363 | RADEON_WRITE(R600_GRBM_CNTL, R600_GRBM_READ_TIMEOUT(0xff)); | ||
1364 | |||
1365 | /* setup tiling, simd, pipe config */ | ||
1366 | mc_arb_ramcfg = RADEON_READ(R700_MC_ARB_RAMCFG); | ||
1367 | |||
1368 | switch (dev_priv->r600_max_tile_pipes) { | ||
1369 | case 1: | ||
1370 | gb_tiling_config |= R600_PIPE_TILING(0); | ||
1371 | break; | ||
1372 | case 2: | ||
1373 | gb_tiling_config |= R600_PIPE_TILING(1); | ||
1374 | break; | ||
1375 | case 4: | ||
1376 | gb_tiling_config |= R600_PIPE_TILING(2); | ||
1377 | break; | ||
1378 | case 8: | ||
1379 | gb_tiling_config |= R600_PIPE_TILING(3); | ||
1380 | break; | ||
1381 | default: | ||
1382 | break; | ||
1383 | } | ||
1384 | |||
1385 | if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV770) | ||
1386 | gb_tiling_config |= R600_BANK_TILING(1); | ||
1387 | else | ||
1388 | gb_tiling_config |= R600_BANK_TILING((mc_arb_ramcfg >> R700_NOOFBANK_SHIFT) & R700_NOOFBANK_MASK); | ||
1389 | |||
1390 | gb_tiling_config |= R600_GROUP_SIZE(0); | ||
1391 | |||
1392 | if (((mc_arb_ramcfg >> R700_NOOFROWS_SHIFT) & R700_NOOFROWS_MASK) > 3) { | ||
1393 | gb_tiling_config |= R600_ROW_TILING(3); | ||
1394 | gb_tiling_config |= R600_SAMPLE_SPLIT(3); | ||
1395 | } else { | ||
1396 | gb_tiling_config |= | ||
1397 | R600_ROW_TILING(((mc_arb_ramcfg >> R700_NOOFROWS_SHIFT) & R700_NOOFROWS_MASK)); | ||
1398 | gb_tiling_config |= | ||
1399 | R600_SAMPLE_SPLIT(((mc_arb_ramcfg >> R700_NOOFROWS_SHIFT) & R700_NOOFROWS_MASK)); | ||
1400 | } | ||
1401 | |||
1402 | gb_tiling_config |= R600_BANK_SWAPS(1); | ||
1403 | |||
1404 | backend_map = r700_get_tile_pipe_to_backend_map(dev_priv->r600_max_tile_pipes, | ||
1405 | dev_priv->r600_max_backends, | ||
1406 | (0xff << dev_priv->r600_max_backends) & 0xff); | ||
1407 | gb_tiling_config |= R600_BACKEND_MAP(backend_map); | ||
1408 | |||
1409 | cc_gc_shader_pipe_config = | ||
1410 | R600_INACTIVE_QD_PIPES((R7XX_MAX_PIPES_MASK << dev_priv->r600_max_pipes) & R7XX_MAX_PIPES_MASK); | ||
1411 | cc_gc_shader_pipe_config |= | ||
1412 | R600_INACTIVE_SIMDS((R7XX_MAX_SIMDS_MASK << dev_priv->r600_max_simds) & R7XX_MAX_SIMDS_MASK); | ||
1413 | |||
1414 | cc_rb_backend_disable = | ||
1415 | R600_BACKEND_DISABLE((R7XX_MAX_BACKENDS_MASK << dev_priv->r600_max_backends) & R7XX_MAX_BACKENDS_MASK); | ||
1416 | |||
1417 | RADEON_WRITE(R600_GB_TILING_CONFIG, gb_tiling_config); | ||
1418 | RADEON_WRITE(R600_DCP_TILING_CONFIG, (gb_tiling_config & 0xffff)); | ||
1419 | RADEON_WRITE(R600_HDP_TILING_CONFIG, (gb_tiling_config & 0xffff)); | ||
1420 | |||
1421 | RADEON_WRITE(R600_CC_RB_BACKEND_DISABLE, cc_rb_backend_disable); | ||
1422 | RADEON_WRITE(R600_CC_GC_SHADER_PIPE_CONFIG, cc_gc_shader_pipe_config); | ||
1423 | RADEON_WRITE(R600_GC_USER_SHADER_PIPE_CONFIG, cc_gc_shader_pipe_config); | ||
1424 | |||
1425 | RADEON_WRITE(R700_CC_SYS_RB_BACKEND_DISABLE, cc_rb_backend_disable); | ||
1426 | RADEON_WRITE(R700_CGTS_SYS_TCC_DISABLE, 0); | ||
1427 | RADEON_WRITE(R700_CGTS_TCC_DISABLE, 0); | ||
1428 | RADEON_WRITE(R700_CGTS_USER_SYS_TCC_DISABLE, 0); | ||
1429 | RADEON_WRITE(R700_CGTS_USER_TCC_DISABLE, 0); | ||
1430 | |||
1431 | num_qd_pipes = | ||
1432 | R7XX_MAX_BACKENDS - r600_count_pipe_bits(cc_gc_shader_pipe_config & R600_INACTIVE_QD_PIPES_MASK); | ||
1433 | RADEON_WRITE(R600_VGT_OUT_DEALLOC_CNTL, (num_qd_pipes * 4) & R600_DEALLOC_DIST_MASK); | ||
1434 | RADEON_WRITE(R600_VGT_VERTEX_REUSE_BLOCK_CNTL, ((num_qd_pipes * 4) - 2) & R600_VTX_REUSE_DEPTH_MASK); | ||
1435 | |||
1436 | /* set HW defaults for 3D engine */ | ||
1437 | RADEON_WRITE(R600_CP_QUEUE_THRESHOLDS, (R600_ROQ_IB1_START(0x16) | | ||
1438 | R600_ROQ_IB2_START(0x2b))); | ||
1439 | |||
1440 | RADEON_WRITE(R600_CP_MEQ_THRESHOLDS, R700_STQ_SPLIT(0x30)); | ||
1441 | |||
1442 | RADEON_WRITE(R600_TA_CNTL_AUX, (R600_DISABLE_CUBE_ANISO | | ||
1443 | R600_SYNC_GRADIENT | | ||
1444 | R600_SYNC_WALKER | | ||
1445 | R600_SYNC_ALIGNER)); | ||
1446 | |||
1447 | sx_debug_1 = RADEON_READ(R700_SX_DEBUG_1); | ||
1448 | sx_debug_1 |= R700_ENABLE_NEW_SMX_ADDRESS; | ||
1449 | RADEON_WRITE(R700_SX_DEBUG_1, sx_debug_1); | ||
1450 | |||
1451 | smx_dc_ctl0 = RADEON_READ(R600_SMX_DC_CTL0); | ||
1452 | smx_dc_ctl0 &= ~R700_CACHE_DEPTH(0x1ff); | ||
1453 | smx_dc_ctl0 |= R700_CACHE_DEPTH((dev_priv->r700_sx_num_of_sets * 64) - 1); | ||
1454 | RADEON_WRITE(R600_SMX_DC_CTL0, smx_dc_ctl0); | ||
1455 | |||
1456 | RADEON_WRITE(R700_SMX_EVENT_CTL, (R700_ES_FLUSH_CTL(4) | | ||
1457 | R700_GS_FLUSH_CTL(4) | | ||
1458 | R700_ACK_FLUSH_CTL(3) | | ||
1459 | R700_SYNC_FLUSH_CTL)); | ||
1460 | |||
1461 | if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV770) | ||
1462 | RADEON_WRITE(R700_DB_DEBUG3, R700_DB_CLK_OFF_DELAY(0x1f)); | ||
1463 | else { | ||
1464 | db_debug4 = RADEON_READ(RV700_DB_DEBUG4); | ||
1465 | db_debug4 |= RV700_DISABLE_TILE_COVERED_FOR_PS_ITER; | ||
1466 | RADEON_WRITE(RV700_DB_DEBUG4, db_debug4); | ||
1467 | } | ||
1468 | |||
1469 | RADEON_WRITE(R600_SX_EXPORT_BUFFER_SIZES, (R600_COLOR_BUFFER_SIZE((dev_priv->r600_sx_max_export_size / 4) - 1) | | ||
1470 | R600_POSITION_BUFFER_SIZE((dev_priv->r600_sx_max_export_pos_size / 4) - 1) | | ||
1471 | R600_SMX_BUFFER_SIZE((dev_priv->r600_sx_max_export_smx_size / 4) - 1))); | ||
1472 | |||
1473 | RADEON_WRITE(R700_PA_SC_FIFO_SIZE_R7XX, (R700_SC_PRIM_FIFO_SIZE(dev_priv->r700_sc_prim_fifo_size) | | ||
1474 | R700_SC_HIZ_TILE_FIFO_SIZE(dev_priv->r700_sc_hiz_tile_fifo_size) | | ||
1475 | R700_SC_EARLYZ_TILE_FIFO_SIZE(dev_priv->r700_sc_earlyz_tile_fifo_fize))); | ||
1476 | |||
1477 | RADEON_WRITE(R600_PA_SC_MULTI_CHIP_CNTL, 0); | ||
1478 | |||
1479 | RADEON_WRITE(R600_VGT_NUM_INSTANCES, 1); | ||
1480 | |||
1481 | RADEON_WRITE(R600_SPI_CONFIG_CNTL, R600_GPR_WRITE_PRIORITY(0)); | ||
1482 | |||
1483 | RADEON_WRITE(R600_SPI_CONFIG_CNTL_1, R600_VTX_DONE_DELAY(4)); | ||
1484 | |||
1485 | RADEON_WRITE(R600_CP_PERFMON_CNTL, 0); | ||
1486 | |||
1487 | sq_ms_fifo_sizes = (R600_CACHE_FIFO_SIZE(16 * dev_priv->r600_sq_num_cf_insts) | | ||
1488 | R600_DONE_FIFO_HIWATER(0xe0) | | ||
1489 | R600_ALU_UPDATE_FIFO_HIWATER(0x8)); | ||
1490 | switch (dev_priv->flags & RADEON_FAMILY_MASK) { | ||
1491 | case CHIP_RV770: | ||
1492 | sq_ms_fifo_sizes |= R600_FETCH_FIFO_HIWATER(0x1); | ||
1493 | break; | ||
1494 | case CHIP_RV730: | ||
1495 | case CHIP_RV710: | ||
1496 | default: | ||
1497 | sq_ms_fifo_sizes |= R600_FETCH_FIFO_HIWATER(0x4); | ||
1498 | break; | ||
1499 | } | ||
1500 | RADEON_WRITE(R600_SQ_MS_FIFO_SIZES, sq_ms_fifo_sizes); | ||
1501 | |||
1502 | /* SQ_CONFIG, SQ_GPR_RESOURCE_MGMT, SQ_THREAD_RESOURCE_MGMT, SQ_STACK_RESOURCE_MGMT | ||
1503 | * should be adjusted as needed by the 2D/3D drivers. This just sets default values | ||
1504 | */ | ||
1505 | sq_config = RADEON_READ(R600_SQ_CONFIG); | ||
1506 | sq_config &= ~(R600_PS_PRIO(3) | | ||
1507 | R600_VS_PRIO(3) | | ||
1508 | R600_GS_PRIO(3) | | ||
1509 | R600_ES_PRIO(3)); | ||
1510 | sq_config |= (R600_DX9_CONSTS | | ||
1511 | R600_VC_ENABLE | | ||
1512 | R600_EXPORT_SRC_C | | ||
1513 | R600_PS_PRIO(0) | | ||
1514 | R600_VS_PRIO(1) | | ||
1515 | R600_GS_PRIO(2) | | ||
1516 | R600_ES_PRIO(3)); | ||
1517 | if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV710) | ||
1518 | /* no vertex cache */ | ||
1519 | sq_config &= ~R600_VC_ENABLE; | ||
1520 | |||
1521 | RADEON_WRITE(R600_SQ_CONFIG, sq_config); | ||
1522 | |||
1523 | RADEON_WRITE(R600_SQ_GPR_RESOURCE_MGMT_1, (R600_NUM_PS_GPRS((dev_priv->r600_max_gprs * 24)/64) | | ||
1524 | R600_NUM_VS_GPRS((dev_priv->r600_max_gprs * 24)/64) | | ||
1525 | R600_NUM_CLAUSE_TEMP_GPRS(((dev_priv->r600_max_gprs * 24)/64)/2))); | ||
1526 | |||
1527 | RADEON_WRITE(R600_SQ_GPR_RESOURCE_MGMT_2, (R600_NUM_GS_GPRS((dev_priv->r600_max_gprs * 7)/64) | | ||
1528 | R600_NUM_ES_GPRS((dev_priv->r600_max_gprs * 7)/64))); | ||
1529 | |||
1530 | sq_thread_resource_mgmt = (R600_NUM_PS_THREADS((dev_priv->r600_max_threads * 4)/8) | | ||
1531 | R600_NUM_VS_THREADS((dev_priv->r600_max_threads * 2)/8) | | ||
1532 | R600_NUM_ES_THREADS((dev_priv->r600_max_threads * 1)/8)); | ||
1533 | if (((dev_priv->r600_max_threads * 1) / 8) > dev_priv->r600_max_gs_threads) | ||
1534 | sq_thread_resource_mgmt |= R600_NUM_GS_THREADS(dev_priv->r600_max_gs_threads); | ||
1535 | else | ||
1536 | sq_thread_resource_mgmt |= R600_NUM_GS_THREADS((dev_priv->r600_max_gs_threads * 1)/8); | ||
1537 | RADEON_WRITE(R600_SQ_THREAD_RESOURCE_MGMT, sq_thread_resource_mgmt); | ||
1538 | |||
1539 | RADEON_WRITE(R600_SQ_STACK_RESOURCE_MGMT_1, (R600_NUM_PS_STACK_ENTRIES((dev_priv->r600_max_stack_entries * 1)/4) | | ||
1540 | R600_NUM_VS_STACK_ENTRIES((dev_priv->r600_max_stack_entries * 1)/4))); | ||
1541 | |||
1542 | RADEON_WRITE(R600_SQ_STACK_RESOURCE_MGMT_2, (R600_NUM_GS_STACK_ENTRIES((dev_priv->r600_max_stack_entries * 1)/4) | | ||
1543 | R600_NUM_ES_STACK_ENTRIES((dev_priv->r600_max_stack_entries * 1)/4))); | ||
1544 | |||
1545 | sq_dyn_gpr_size_simd_ab_0 = (R700_SIMDA_RING0((dev_priv->r600_max_gprs * 38)/64) | | ||
1546 | R700_SIMDA_RING1((dev_priv->r600_max_gprs * 38)/64) | | ||
1547 | R700_SIMDB_RING0((dev_priv->r600_max_gprs * 38)/64) | | ||
1548 | R700_SIMDB_RING1((dev_priv->r600_max_gprs * 38)/64)); | ||
1549 | |||
1550 | RADEON_WRITE(R700_SQ_DYN_GPR_SIZE_SIMD_AB_0, sq_dyn_gpr_size_simd_ab_0); | ||
1551 | RADEON_WRITE(R700_SQ_DYN_GPR_SIZE_SIMD_AB_1, sq_dyn_gpr_size_simd_ab_0); | ||
1552 | RADEON_WRITE(R700_SQ_DYN_GPR_SIZE_SIMD_AB_2, sq_dyn_gpr_size_simd_ab_0); | ||
1553 | RADEON_WRITE(R700_SQ_DYN_GPR_SIZE_SIMD_AB_3, sq_dyn_gpr_size_simd_ab_0); | ||
1554 | RADEON_WRITE(R700_SQ_DYN_GPR_SIZE_SIMD_AB_4, sq_dyn_gpr_size_simd_ab_0); | ||
1555 | RADEON_WRITE(R700_SQ_DYN_GPR_SIZE_SIMD_AB_5, sq_dyn_gpr_size_simd_ab_0); | ||
1556 | RADEON_WRITE(R700_SQ_DYN_GPR_SIZE_SIMD_AB_6, sq_dyn_gpr_size_simd_ab_0); | ||
1557 | RADEON_WRITE(R700_SQ_DYN_GPR_SIZE_SIMD_AB_7, sq_dyn_gpr_size_simd_ab_0); | ||
1558 | |||
1559 | RADEON_WRITE(R700_PA_SC_FORCE_EOV_MAX_CNTS, (R700_FORCE_EOV_MAX_CLK_CNT(4095) | | ||
1560 | R700_FORCE_EOV_MAX_REZ_CNT(255))); | ||
1561 | |||
1562 | if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV710) | ||
1563 | RADEON_WRITE(R600_VGT_CACHE_INVALIDATION, (R600_CACHE_INVALIDATION(R600_TC_ONLY) | | ||
1564 | R700_AUTO_INVLD_EN(R700_ES_AND_GS_AUTO))); | ||
1565 | else | ||
1566 | RADEON_WRITE(R600_VGT_CACHE_INVALIDATION, (R600_CACHE_INVALIDATION(R600_VC_AND_TC) | | ||
1567 | R700_AUTO_INVLD_EN(R700_ES_AND_GS_AUTO))); | ||
1568 | |||
1569 | switch (dev_priv->flags & RADEON_FAMILY_MASK) { | ||
1570 | case CHIP_RV770: | ||
1571 | case CHIP_RV730: | ||
1572 | gs_prim_buffer_depth = 384; | ||
1573 | break; | ||
1574 | case CHIP_RV710: | ||
1575 | gs_prim_buffer_depth = 128; | ||
1576 | break; | ||
1577 | default: | ||
1578 | break; | ||
1579 | } | ||
1580 | |||
1581 | num_gs_verts_per_thread = dev_priv->r600_max_pipes * 16; | ||
1582 | vgt_gs_per_es = gs_prim_buffer_depth + num_gs_verts_per_thread; | ||
1583 | /* Max value for this is 256 */ | ||
1584 | if (vgt_gs_per_es > 256) | ||
1585 | vgt_gs_per_es = 256; | ||
1586 | |||
1587 | RADEON_WRITE(R600_VGT_ES_PER_GS, 128); | ||
1588 | RADEON_WRITE(R600_VGT_GS_PER_ES, vgt_gs_per_es); | ||
1589 | RADEON_WRITE(R600_VGT_GS_PER_VS, 2); | ||
1590 | |||
1591 | /* more default values. 2D/3D driver should adjust as needed */ | ||
1592 | RADEON_WRITE(R600_VGT_GS_VERTEX_REUSE, 16); | ||
1593 | RADEON_WRITE(R600_PA_SC_LINE_STIPPLE_STATE, 0); | ||
1594 | RADEON_WRITE(R600_VGT_STRMOUT_EN, 0); | ||
1595 | RADEON_WRITE(R600_SX_MISC, 0); | ||
1596 | RADEON_WRITE(R600_PA_SC_MODE_CNTL, 0); | ||
1597 | RADEON_WRITE(R700_PA_SC_EDGERULE, 0xaaaaaaaa); | ||
1598 | RADEON_WRITE(R600_PA_SC_AA_CONFIG, 0); | ||
1599 | RADEON_WRITE(R600_PA_SC_CLIPRECT_RULE, 0xffff); | ||
1600 | RADEON_WRITE(R600_PA_SC_LINE_STIPPLE, 0); | ||
1601 | RADEON_WRITE(R600_SPI_INPUT_Z, 0); | ||
1602 | RADEON_WRITE(R600_SPI_PS_IN_CONTROL_0, R600_NUM_INTERP(2)); | ||
1603 | RADEON_WRITE(R600_CB_COLOR7_FRAG, 0); | ||
1604 | |||
1605 | /* clear render buffer base addresses */ | ||
1606 | RADEON_WRITE(R600_CB_COLOR0_BASE, 0); | ||
1607 | RADEON_WRITE(R600_CB_COLOR1_BASE, 0); | ||
1608 | RADEON_WRITE(R600_CB_COLOR2_BASE, 0); | ||
1609 | RADEON_WRITE(R600_CB_COLOR3_BASE, 0); | ||
1610 | RADEON_WRITE(R600_CB_COLOR4_BASE, 0); | ||
1611 | RADEON_WRITE(R600_CB_COLOR5_BASE, 0); | ||
1612 | RADEON_WRITE(R600_CB_COLOR6_BASE, 0); | ||
1613 | RADEON_WRITE(R600_CB_COLOR7_BASE, 0); | ||
1614 | |||
1615 | RADEON_WRITE(R700_TCP_CNTL, 0); | ||
1616 | |||
1617 | hdp_host_path_cntl = RADEON_READ(R600_HDP_HOST_PATH_CNTL); | ||
1618 | RADEON_WRITE(R600_HDP_HOST_PATH_CNTL, hdp_host_path_cntl); | ||
1619 | |||
1620 | RADEON_WRITE(R600_PA_SC_MULTI_CHIP_CNTL, 0); | ||
1621 | |||
1622 | RADEON_WRITE(R600_PA_CL_ENHANCE, (R600_CLIP_VTX_REORDER_ENA | | ||
1623 | R600_NUM_CLIP_SEQ(3))); | ||
1624 | |||
1625 | } | ||
1626 | |||
1627 | static void r600_cp_init_ring_buffer(struct drm_device *dev, | ||
1628 | drm_radeon_private_t *dev_priv, | ||
1629 | struct drm_file *file_priv) | ||
1630 | { | ||
1631 | struct drm_radeon_master_private *master_priv; | ||
1632 | u32 ring_start; | ||
1633 | u64 rptr_addr; | ||
1634 | |||
1635 | if (((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RV770)) | ||
1636 | r700_gfx_init(dev, dev_priv); | ||
1637 | else | ||
1638 | r600_gfx_init(dev, dev_priv); | ||
1639 | |||
1640 | RADEON_WRITE(R600_GRBM_SOFT_RESET, R600_SOFT_RESET_CP); | ||
1641 | RADEON_READ(R600_GRBM_SOFT_RESET); | ||
1642 | DRM_UDELAY(15000); | ||
1643 | RADEON_WRITE(R600_GRBM_SOFT_RESET, 0); | ||
1644 | |||
1645 | |||
1646 | /* Set ring buffer size */ | ||
1647 | #ifdef __BIG_ENDIAN | ||
1648 | RADEON_WRITE(R600_CP_RB_CNTL, | ||
1649 | RADEON_BUF_SWAP_32BIT | | ||
1650 | RADEON_RB_NO_UPDATE | | ||
1651 | (dev_priv->ring.rptr_update_l2qw << 8) | | ||
1652 | dev_priv->ring.size_l2qw); | ||
1653 | #else | ||
1654 | RADEON_WRITE(R600_CP_RB_CNTL, | ||
1655 | RADEON_RB_NO_UPDATE | | ||
1656 | (dev_priv->ring.rptr_update_l2qw << 8) | | ||
1657 | dev_priv->ring.size_l2qw); | ||
1658 | #endif | ||
1659 | |||
1660 | RADEON_WRITE(R600_CP_SEM_WAIT_TIMER, 0x4); | ||
1661 | |||
1662 | /* Set the write pointer delay */ | ||
1663 | RADEON_WRITE(R600_CP_RB_WPTR_DELAY, 0); | ||
1664 | |||
1665 | #ifdef __BIG_ENDIAN | ||
1666 | RADEON_WRITE(R600_CP_RB_CNTL, | ||
1667 | RADEON_BUF_SWAP_32BIT | | ||
1668 | RADEON_RB_NO_UPDATE | | ||
1669 | RADEON_RB_RPTR_WR_ENA | | ||
1670 | (dev_priv->ring.rptr_update_l2qw << 8) | | ||
1671 | dev_priv->ring.size_l2qw); | ||
1672 | #else | ||
1673 | RADEON_WRITE(R600_CP_RB_CNTL, | ||
1674 | RADEON_RB_NO_UPDATE | | ||
1675 | RADEON_RB_RPTR_WR_ENA | | ||
1676 | (dev_priv->ring.rptr_update_l2qw << 8) | | ||
1677 | dev_priv->ring.size_l2qw); | ||
1678 | #endif | ||
1679 | |||
1680 | /* Initialize the ring buffer's read and write pointers */ | ||
1681 | RADEON_WRITE(R600_CP_RB_RPTR_WR, 0); | ||
1682 | RADEON_WRITE(R600_CP_RB_WPTR, 0); | ||
1683 | SET_RING_HEAD(dev_priv, 0); | ||
1684 | dev_priv->ring.tail = 0; | ||
1685 | |||
1686 | #if __OS_HAS_AGP | ||
1687 | if (dev_priv->flags & RADEON_IS_AGP) { | ||
1688 | rptr_addr = dev_priv->ring_rptr->offset | ||
1689 | - dev->agp->base + | ||
1690 | dev_priv->gart_vm_start; | ||
1691 | } else | ||
1692 | #endif | ||
1693 | { | ||
1694 | rptr_addr = dev_priv->ring_rptr->offset | ||
1695 | - ((unsigned long) dev->sg->virtual) | ||
1696 | + dev_priv->gart_vm_start; | ||
1697 | } | ||
1698 | RADEON_WRITE(R600_CP_RB_RPTR_ADDR, | ||
1699 | rptr_addr & 0xffffffff); | ||
1700 | RADEON_WRITE(R600_CP_RB_RPTR_ADDR_HI, | ||
1701 | upper_32_bits(rptr_addr)); | ||
1702 | |||
1703 | #ifdef __BIG_ENDIAN | ||
1704 | RADEON_WRITE(R600_CP_RB_CNTL, | ||
1705 | RADEON_BUF_SWAP_32BIT | | ||
1706 | (dev_priv->ring.rptr_update_l2qw << 8) | | ||
1707 | dev_priv->ring.size_l2qw); | ||
1708 | #else | ||
1709 | RADEON_WRITE(R600_CP_RB_CNTL, | ||
1710 | (dev_priv->ring.rptr_update_l2qw << 8) | | ||
1711 | dev_priv->ring.size_l2qw); | ||
1712 | #endif | ||
1713 | |||
1714 | #if __OS_HAS_AGP | ||
1715 | if (dev_priv->flags & RADEON_IS_AGP) { | ||
1716 | /* XXX */ | ||
1717 | radeon_write_agp_base(dev_priv, dev->agp->base); | ||
1718 | |||
1719 | /* XXX */ | ||
1720 | radeon_write_agp_location(dev_priv, | ||
1721 | (((dev_priv->gart_vm_start - 1 + | ||
1722 | dev_priv->gart_size) & 0xffff0000) | | ||
1723 | (dev_priv->gart_vm_start >> 16))); | ||
1724 | |||
1725 | ring_start = (dev_priv->cp_ring->offset | ||
1726 | - dev->agp->base | ||
1727 | + dev_priv->gart_vm_start); | ||
1728 | } else | ||
1729 | #endif | ||
1730 | ring_start = (dev_priv->cp_ring->offset | ||
1731 | - (unsigned long)dev->sg->virtual | ||
1732 | + dev_priv->gart_vm_start); | ||
1733 | |||
1734 | RADEON_WRITE(R600_CP_RB_BASE, ring_start >> 8); | ||
1735 | |||
1736 | RADEON_WRITE(R600_CP_ME_CNTL, 0xff); | ||
1737 | |||
1738 | RADEON_WRITE(R600_CP_DEBUG, (1 << 27) | (1 << 28)); | ||
1739 | |||
1740 | /* Initialize the scratch register pointer. This will cause | ||
1741 | * the scratch register values to be written out to memory | ||
1742 | * whenever they are updated. | ||
1743 | * | ||
1744 | * We simply put this behind the ring read pointer, this works | ||
1745 | * with PCI GART as well as (whatever kind of) AGP GART | ||
1746 | */ | ||
1747 | { | ||
1748 | u64 scratch_addr; | ||
1749 | |||
1750 | scratch_addr = RADEON_READ(R600_CP_RB_RPTR_ADDR); | ||
1751 | scratch_addr |= ((u64)RADEON_READ(R600_CP_RB_RPTR_ADDR_HI)) << 32; | ||
1752 | scratch_addr += R600_SCRATCH_REG_OFFSET; | ||
1753 | scratch_addr >>= 8; | ||
1754 | scratch_addr &= 0xffffffff; | ||
1755 | |||
1756 | RADEON_WRITE(R600_SCRATCH_ADDR, (uint32_t)scratch_addr); | ||
1757 | } | ||
1758 | |||
1759 | RADEON_WRITE(R600_SCRATCH_UMSK, 0x7); | ||
1760 | |||
1761 | /* Turn on bus mastering */ | ||
1762 | radeon_enable_bm(dev_priv); | ||
1763 | |||
1764 | radeon_write_ring_rptr(dev_priv, R600_SCRATCHOFF(0), 0); | ||
1765 | RADEON_WRITE(R600_LAST_FRAME_REG, 0); | ||
1766 | |||
1767 | radeon_write_ring_rptr(dev_priv, R600_SCRATCHOFF(1), 0); | ||
1768 | RADEON_WRITE(R600_LAST_DISPATCH_REG, 0); | ||
1769 | |||
1770 | radeon_write_ring_rptr(dev_priv, R600_SCRATCHOFF(2), 0); | ||
1771 | RADEON_WRITE(R600_LAST_CLEAR_REG, 0); | ||
1772 | |||
1773 | /* reset sarea copies of these */ | ||
1774 | master_priv = file_priv->master->driver_priv; | ||
1775 | if (master_priv->sarea_priv) { | ||
1776 | master_priv->sarea_priv->last_frame = 0; | ||
1777 | master_priv->sarea_priv->last_dispatch = 0; | ||
1778 | master_priv->sarea_priv->last_clear = 0; | ||
1779 | } | ||
1780 | |||
1781 | r600_do_wait_for_idle(dev_priv); | ||
1782 | |||
1783 | } | ||
1784 | |||
1785 | int r600_do_cleanup_cp(struct drm_device *dev) | ||
1786 | { | ||
1787 | drm_radeon_private_t *dev_priv = dev->dev_private; | ||
1788 | DRM_DEBUG("\n"); | ||
1789 | |||
1790 | /* Make sure interrupts are disabled here because the uninstall ioctl | ||
1791 | * may not have been called from userspace and after dev_private | ||
1792 | * is freed, it's too late. | ||
1793 | */ | ||
1794 | if (dev->irq_enabled) | ||
1795 | drm_irq_uninstall(dev); | ||
1796 | |||
1797 | #if __OS_HAS_AGP | ||
1798 | if (dev_priv->flags & RADEON_IS_AGP) { | ||
1799 | if (dev_priv->cp_ring != NULL) { | ||
1800 | drm_core_ioremapfree(dev_priv->cp_ring, dev); | ||
1801 | dev_priv->cp_ring = NULL; | ||
1802 | } | ||
1803 | if (dev_priv->ring_rptr != NULL) { | ||
1804 | drm_core_ioremapfree(dev_priv->ring_rptr, dev); | ||
1805 | dev_priv->ring_rptr = NULL; | ||
1806 | } | ||
1807 | if (dev->agp_buffer_map != NULL) { | ||
1808 | drm_core_ioremapfree(dev->agp_buffer_map, dev); | ||
1809 | dev->agp_buffer_map = NULL; | ||
1810 | } | ||
1811 | } else | ||
1812 | #endif | ||
1813 | { | ||
1814 | |||
1815 | if (dev_priv->gart_info.bus_addr) | ||
1816 | r600_page_table_cleanup(dev, &dev_priv->gart_info); | ||
1817 | |||
1818 | if (dev_priv->gart_info.gart_table_location == DRM_ATI_GART_FB) { | ||
1819 | drm_core_ioremapfree(&dev_priv->gart_info.mapping, dev); | ||
1820 | dev_priv->gart_info.addr = NULL; | ||
1821 | } | ||
1822 | } | ||
1823 | /* only clear to the start of flags */ | ||
1824 | memset(dev_priv, 0, offsetof(drm_radeon_private_t, flags)); | ||
1825 | |||
1826 | return 0; | ||
1827 | } | ||
1828 | |||
1829 | int r600_do_init_cp(struct drm_device *dev, drm_radeon_init_t *init, | ||
1830 | struct drm_file *file_priv) | ||
1831 | { | ||
1832 | drm_radeon_private_t *dev_priv = dev->dev_private; | ||
1833 | struct drm_radeon_master_private *master_priv = file_priv->master->driver_priv; | ||
1834 | |||
1835 | DRM_DEBUG("\n"); | ||
1836 | |||
1837 | /* if we require new memory map but we don't have it fail */ | ||
1838 | if ((dev_priv->flags & RADEON_NEW_MEMMAP) && !dev_priv->new_memmap) { | ||
1839 | DRM_ERROR("Cannot initialise DRM on this card\nThis card requires a new X.org DDX for 3D\n"); | ||
1840 | r600_do_cleanup_cp(dev); | ||
1841 | return -EINVAL; | ||
1842 | } | ||
1843 | |||
1844 | if (init->is_pci && (dev_priv->flags & RADEON_IS_AGP)) { | ||
1845 | DRM_DEBUG("Forcing AGP card to PCI mode\n"); | ||
1846 | dev_priv->flags &= ~RADEON_IS_AGP; | ||
1847 | /* The writeback test succeeds, but when writeback is enabled, | ||
1848 | * the ring buffer read ptr update fails after first 128 bytes. | ||
1849 | */ | ||
1850 | radeon_no_wb = 1; | ||
1851 | } else if (!(dev_priv->flags & (RADEON_IS_AGP | RADEON_IS_PCI | RADEON_IS_PCIE)) | ||
1852 | && !init->is_pci) { | ||
1853 | DRM_DEBUG("Restoring AGP flag\n"); | ||
1854 | dev_priv->flags |= RADEON_IS_AGP; | ||
1855 | } | ||
1856 | |||
1857 | dev_priv->usec_timeout = init->usec_timeout; | ||
1858 | if (dev_priv->usec_timeout < 1 || | ||
1859 | dev_priv->usec_timeout > RADEON_MAX_USEC_TIMEOUT) { | ||
1860 | DRM_DEBUG("TIMEOUT problem!\n"); | ||
1861 | r600_do_cleanup_cp(dev); | ||
1862 | return -EINVAL; | ||
1863 | } | ||
1864 | |||
1865 | /* Enable vblank on CRTC1 for older X servers | ||
1866 | */ | ||
1867 | dev_priv->vblank_crtc = DRM_RADEON_VBLANK_CRTC1; | ||
1868 | |||
1869 | dev_priv->cp_mode = init->cp_mode; | ||
1870 | |||
1871 | /* We don't support anything other than bus-mastering ring mode, | ||
1872 | * but the ring can be in either AGP or PCI space for the ring | ||
1873 | * read pointer. | ||
1874 | */ | ||
1875 | if ((init->cp_mode != RADEON_CSQ_PRIBM_INDDIS) && | ||
1876 | (init->cp_mode != RADEON_CSQ_PRIBM_INDBM)) { | ||
1877 | DRM_DEBUG("BAD cp_mode (%x)!\n", init->cp_mode); | ||
1878 | r600_do_cleanup_cp(dev); | ||
1879 | return -EINVAL; | ||
1880 | } | ||
1881 | |||
1882 | switch (init->fb_bpp) { | ||
1883 | case 16: | ||
1884 | dev_priv->color_fmt = RADEON_COLOR_FORMAT_RGB565; | ||
1885 | break; | ||
1886 | case 32: | ||
1887 | default: | ||
1888 | dev_priv->color_fmt = RADEON_COLOR_FORMAT_ARGB8888; | ||
1889 | break; | ||
1890 | } | ||
1891 | dev_priv->front_offset = init->front_offset; | ||
1892 | dev_priv->front_pitch = init->front_pitch; | ||
1893 | dev_priv->back_offset = init->back_offset; | ||
1894 | dev_priv->back_pitch = init->back_pitch; | ||
1895 | |||
1896 | dev_priv->ring_offset = init->ring_offset; | ||
1897 | dev_priv->ring_rptr_offset = init->ring_rptr_offset; | ||
1898 | dev_priv->buffers_offset = init->buffers_offset; | ||
1899 | dev_priv->gart_textures_offset = init->gart_textures_offset; | ||
1900 | |||
1901 | master_priv->sarea = drm_getsarea(dev); | ||
1902 | if (!master_priv->sarea) { | ||
1903 | DRM_ERROR("could not find sarea!\n"); | ||
1904 | r600_do_cleanup_cp(dev); | ||
1905 | return -EINVAL; | ||
1906 | } | ||
1907 | |||
1908 | dev_priv->cp_ring = drm_core_findmap(dev, init->ring_offset); | ||
1909 | if (!dev_priv->cp_ring) { | ||
1910 | DRM_ERROR("could not find cp ring region!\n"); | ||
1911 | r600_do_cleanup_cp(dev); | ||
1912 | return -EINVAL; | ||
1913 | } | ||
1914 | dev_priv->ring_rptr = drm_core_findmap(dev, init->ring_rptr_offset); | ||
1915 | if (!dev_priv->ring_rptr) { | ||
1916 | DRM_ERROR("could not find ring read pointer!\n"); | ||
1917 | r600_do_cleanup_cp(dev); | ||
1918 | return -EINVAL; | ||
1919 | } | ||
1920 | dev->agp_buffer_token = init->buffers_offset; | ||
1921 | dev->agp_buffer_map = drm_core_findmap(dev, init->buffers_offset); | ||
1922 | if (!dev->agp_buffer_map) { | ||
1923 | DRM_ERROR("could not find dma buffer region!\n"); | ||
1924 | r600_do_cleanup_cp(dev); | ||
1925 | return -EINVAL; | ||
1926 | } | ||
1927 | |||
1928 | if (init->gart_textures_offset) { | ||
1929 | dev_priv->gart_textures = | ||
1930 | drm_core_findmap(dev, init->gart_textures_offset); | ||
1931 | if (!dev_priv->gart_textures) { | ||
1932 | DRM_ERROR("could not find GART texture region!\n"); | ||
1933 | r600_do_cleanup_cp(dev); | ||
1934 | return -EINVAL; | ||
1935 | } | ||
1936 | } | ||
1937 | |||
1938 | #if __OS_HAS_AGP | ||
1939 | /* XXX */ | ||
1940 | if (dev_priv->flags & RADEON_IS_AGP) { | ||
1941 | drm_core_ioremap_wc(dev_priv->cp_ring, dev); | ||
1942 | drm_core_ioremap_wc(dev_priv->ring_rptr, dev); | ||
1943 | drm_core_ioremap_wc(dev->agp_buffer_map, dev); | ||
1944 | if (!dev_priv->cp_ring->handle || | ||
1945 | !dev_priv->ring_rptr->handle || | ||
1946 | !dev->agp_buffer_map->handle) { | ||
1947 | DRM_ERROR("could not find ioremap agp regions!\n"); | ||
1948 | r600_do_cleanup_cp(dev); | ||
1949 | return -EINVAL; | ||
1950 | } | ||
1951 | } else | ||
1952 | #endif | ||
1953 | { | ||
1954 | dev_priv->cp_ring->handle = (void *)dev_priv->cp_ring->offset; | ||
1955 | dev_priv->ring_rptr->handle = | ||
1956 | (void *)dev_priv->ring_rptr->offset; | ||
1957 | dev->agp_buffer_map->handle = | ||
1958 | (void *)dev->agp_buffer_map->offset; | ||
1959 | |||
1960 | DRM_DEBUG("dev_priv->cp_ring->handle %p\n", | ||
1961 | dev_priv->cp_ring->handle); | ||
1962 | DRM_DEBUG("dev_priv->ring_rptr->handle %p\n", | ||
1963 | dev_priv->ring_rptr->handle); | ||
1964 | DRM_DEBUG("dev->agp_buffer_map->handle %p\n", | ||
1965 | dev->agp_buffer_map->handle); | ||
1966 | } | ||
1967 | |||
1968 | dev_priv->fb_location = (radeon_read_fb_location(dev_priv) & 0xffff) << 24; | ||
1969 | dev_priv->fb_size = | ||
1970 | (((radeon_read_fb_location(dev_priv) & 0xffff0000u) << 8) + 0x1000000) | ||
1971 | - dev_priv->fb_location; | ||
1972 | |||
1973 | dev_priv->front_pitch_offset = (((dev_priv->front_pitch / 64) << 22) | | ||
1974 | ((dev_priv->front_offset | ||
1975 | + dev_priv->fb_location) >> 10)); | ||
1976 | |||
1977 | dev_priv->back_pitch_offset = (((dev_priv->back_pitch / 64) << 22) | | ||
1978 | ((dev_priv->back_offset | ||
1979 | + dev_priv->fb_location) >> 10)); | ||
1980 | |||
1981 | dev_priv->depth_pitch_offset = (((dev_priv->depth_pitch / 64) << 22) | | ||
1982 | ((dev_priv->depth_offset | ||
1983 | + dev_priv->fb_location) >> 10)); | ||
1984 | |||
1985 | dev_priv->gart_size = init->gart_size; | ||
1986 | |||
1987 | /* New let's set the memory map ... */ | ||
1988 | if (dev_priv->new_memmap) { | ||
1989 | u32 base = 0; | ||
1990 | |||
1991 | DRM_INFO("Setting GART location based on new memory map\n"); | ||
1992 | |||
1993 | /* If using AGP, try to locate the AGP aperture at the same | ||
1994 | * location in the card and on the bus, though we have to | ||
1995 | * align it down. | ||
1996 | */ | ||
1997 | #if __OS_HAS_AGP | ||
1998 | /* XXX */ | ||
1999 | if (dev_priv->flags & RADEON_IS_AGP) { | ||
2000 | base = dev->agp->base; | ||
2001 | /* Check if valid */ | ||
2002 | if ((base + dev_priv->gart_size - 1) >= dev_priv->fb_location && | ||
2003 | base < (dev_priv->fb_location + dev_priv->fb_size - 1)) { | ||
2004 | DRM_INFO("Can't use AGP base @0x%08lx, won't fit\n", | ||
2005 | dev->agp->base); | ||
2006 | base = 0; | ||
2007 | } | ||
2008 | } | ||
2009 | #endif | ||
2010 | /* If not or if AGP is at 0 (Macs), try to put it elsewhere */ | ||
2011 | if (base == 0) { | ||
2012 | base = dev_priv->fb_location + dev_priv->fb_size; | ||
2013 | if (base < dev_priv->fb_location || | ||
2014 | ((base + dev_priv->gart_size) & 0xfffffffful) < base) | ||
2015 | base = dev_priv->fb_location | ||
2016 | - dev_priv->gart_size; | ||
2017 | } | ||
2018 | dev_priv->gart_vm_start = base & 0xffc00000u; | ||
2019 | if (dev_priv->gart_vm_start != base) | ||
2020 | DRM_INFO("GART aligned down from 0x%08x to 0x%08x\n", | ||
2021 | base, dev_priv->gart_vm_start); | ||
2022 | } | ||
2023 | |||
2024 | #if __OS_HAS_AGP | ||
2025 | /* XXX */ | ||
2026 | if (dev_priv->flags & RADEON_IS_AGP) | ||
2027 | dev_priv->gart_buffers_offset = (dev->agp_buffer_map->offset | ||
2028 | - dev->agp->base | ||
2029 | + dev_priv->gart_vm_start); | ||
2030 | else | ||
2031 | #endif | ||
2032 | dev_priv->gart_buffers_offset = (dev->agp_buffer_map->offset | ||
2033 | - (unsigned long)dev->sg->virtual | ||
2034 | + dev_priv->gart_vm_start); | ||
2035 | |||
2036 | DRM_DEBUG("fb 0x%08x size %d\n", | ||
2037 | (unsigned int) dev_priv->fb_location, | ||
2038 | (unsigned int) dev_priv->fb_size); | ||
2039 | DRM_DEBUG("dev_priv->gart_size %d\n", dev_priv->gart_size); | ||
2040 | DRM_DEBUG("dev_priv->gart_vm_start 0x%08x\n", | ||
2041 | (unsigned int) dev_priv->gart_vm_start); | ||
2042 | DRM_DEBUG("dev_priv->gart_buffers_offset 0x%08lx\n", | ||
2043 | dev_priv->gart_buffers_offset); | ||
2044 | |||
2045 | dev_priv->ring.start = (u32 *) dev_priv->cp_ring->handle; | ||
2046 | dev_priv->ring.end = ((u32 *) dev_priv->cp_ring->handle | ||
2047 | + init->ring_size / sizeof(u32)); | ||
2048 | dev_priv->ring.size = init->ring_size; | ||
2049 | dev_priv->ring.size_l2qw = drm_order(init->ring_size / 8); | ||
2050 | |||
2051 | dev_priv->ring.rptr_update = /* init->rptr_update */ 4096; | ||
2052 | dev_priv->ring.rptr_update_l2qw = drm_order(/* init->rptr_update */ 4096 / 8); | ||
2053 | |||
2054 | dev_priv->ring.fetch_size = /* init->fetch_size */ 32; | ||
2055 | dev_priv->ring.fetch_size_l2ow = drm_order(/* init->fetch_size */ 32 / 16); | ||
2056 | |||
2057 | dev_priv->ring.tail_mask = (dev_priv->ring.size / sizeof(u32)) - 1; | ||
2058 | |||
2059 | dev_priv->ring.high_mark = RADEON_RING_HIGH_MARK; | ||
2060 | |||
2061 | #if __OS_HAS_AGP | ||
2062 | if (dev_priv->flags & RADEON_IS_AGP) { | ||
2063 | /* XXX turn off pcie gart */ | ||
2064 | } else | ||
2065 | #endif | ||
2066 | { | ||
2067 | dev_priv->gart_info.table_mask = DMA_BIT_MASK(32); | ||
2068 | /* if we have an offset set from userspace */ | ||
2069 | if (!dev_priv->pcigart_offset_set) { | ||
2070 | DRM_ERROR("Need gart offset from userspace\n"); | ||
2071 | r600_do_cleanup_cp(dev); | ||
2072 | return -EINVAL; | ||
2073 | } | ||
2074 | |||
2075 | DRM_DEBUG("Using gart offset 0x%08lx\n", dev_priv->pcigart_offset); | ||
2076 | |||
2077 | dev_priv->gart_info.bus_addr = | ||
2078 | dev_priv->pcigart_offset + dev_priv->fb_location; | ||
2079 | dev_priv->gart_info.mapping.offset = | ||
2080 | dev_priv->pcigart_offset + dev_priv->fb_aper_offset; | ||
2081 | dev_priv->gart_info.mapping.size = | ||
2082 | dev_priv->gart_info.table_size; | ||
2083 | |||
2084 | drm_core_ioremap_wc(&dev_priv->gart_info.mapping, dev); | ||
2085 | if (!dev_priv->gart_info.mapping.handle) { | ||
2086 | DRM_ERROR("ioremap failed.\n"); | ||
2087 | r600_do_cleanup_cp(dev); | ||
2088 | return -EINVAL; | ||
2089 | } | ||
2090 | |||
2091 | dev_priv->gart_info.addr = | ||
2092 | dev_priv->gart_info.mapping.handle; | ||
2093 | |||
2094 | DRM_DEBUG("Setting phys_pci_gart to %p %08lX\n", | ||
2095 | dev_priv->gart_info.addr, | ||
2096 | dev_priv->pcigart_offset); | ||
2097 | |||
2098 | if (!r600_page_table_init(dev)) { | ||
2099 | DRM_ERROR("Failed to init GART table\n"); | ||
2100 | r600_do_cleanup_cp(dev); | ||
2101 | return -EINVAL; | ||
2102 | } | ||
2103 | |||
2104 | if (((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RV770)) | ||
2105 | r700_vm_init(dev); | ||
2106 | else | ||
2107 | r600_vm_init(dev); | ||
2108 | } | ||
2109 | |||
2110 | if (((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RV770)) | ||
2111 | r700_cp_load_microcode(dev_priv); | ||
2112 | else | ||
2113 | r600_cp_load_microcode(dev_priv); | ||
2114 | |||
2115 | r600_cp_init_ring_buffer(dev, dev_priv, file_priv); | ||
2116 | |||
2117 | dev_priv->last_buf = 0; | ||
2118 | |||
2119 | r600_do_engine_reset(dev); | ||
2120 | r600_test_writeback(dev_priv); | ||
2121 | |||
2122 | return 0; | ||
2123 | } | ||
2124 | |||
2125 | int r600_do_resume_cp(struct drm_device *dev, struct drm_file *file_priv) | ||
2126 | { | ||
2127 | drm_radeon_private_t *dev_priv = dev->dev_private; | ||
2128 | |||
2129 | DRM_DEBUG("\n"); | ||
2130 | if (((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RV770)) { | ||
2131 | r700_vm_init(dev); | ||
2132 | r700_cp_load_microcode(dev_priv); | ||
2133 | } else { | ||
2134 | r600_vm_init(dev); | ||
2135 | r600_cp_load_microcode(dev_priv); | ||
2136 | } | ||
2137 | r600_cp_init_ring_buffer(dev, dev_priv, file_priv); | ||
2138 | r600_do_engine_reset(dev); | ||
2139 | |||
2140 | return 0; | ||
2141 | } | ||
2142 | |||
2143 | /* Wait for the CP to go idle. | ||
2144 | */ | ||
2145 | int r600_do_cp_idle(drm_radeon_private_t *dev_priv) | ||
2146 | { | ||
2147 | RING_LOCALS; | ||
2148 | DRM_DEBUG("\n"); | ||
2149 | |||
2150 | BEGIN_RING(5); | ||
2151 | OUT_RING(CP_PACKET3(R600_IT_EVENT_WRITE, 0)); | ||
2152 | OUT_RING(R600_CACHE_FLUSH_AND_INV_EVENT); | ||
2153 | /* wait for 3D idle clean */ | ||
2154 | OUT_RING(CP_PACKET3(R600_IT_SET_CONFIG_REG, 1)); | ||
2155 | OUT_RING((R600_WAIT_UNTIL - R600_SET_CONFIG_REG_OFFSET) >> 2); | ||
2156 | OUT_RING(RADEON_WAIT_3D_IDLE | RADEON_WAIT_3D_IDLECLEAN); | ||
2157 | |||
2158 | ADVANCE_RING(); | ||
2159 | COMMIT_RING(); | ||
2160 | |||
2161 | return r600_do_wait_for_idle(dev_priv); | ||
2162 | } | ||
2163 | |||
2164 | /* Start the Command Processor. | ||
2165 | */ | ||
2166 | void r600_do_cp_start(drm_radeon_private_t *dev_priv) | ||
2167 | { | ||
2168 | u32 cp_me; | ||
2169 | RING_LOCALS; | ||
2170 | DRM_DEBUG("\n"); | ||
2171 | |||
2172 | BEGIN_RING(7); | ||
2173 | OUT_RING(CP_PACKET3(R600_IT_ME_INITIALIZE, 5)); | ||
2174 | OUT_RING(0x00000001); | ||
2175 | if (((dev_priv->flags & RADEON_FAMILY_MASK) < CHIP_RV770)) | ||
2176 | OUT_RING(0x00000003); | ||
2177 | else | ||
2178 | OUT_RING(0x00000000); | ||
2179 | OUT_RING((dev_priv->r600_max_hw_contexts - 1)); | ||
2180 | OUT_RING(R600_ME_INITIALIZE_DEVICE_ID(1)); | ||
2181 | OUT_RING(0x00000000); | ||
2182 | OUT_RING(0x00000000); | ||
2183 | ADVANCE_RING(); | ||
2184 | COMMIT_RING(); | ||
2185 | |||
2186 | /* set the mux and reset the halt bit */ | ||
2187 | cp_me = 0xff; | ||
2188 | RADEON_WRITE(R600_CP_ME_CNTL, cp_me); | ||
2189 | |||
2190 | dev_priv->cp_running = 1; | ||
2191 | |||
2192 | } | ||
2193 | |||
2194 | void r600_do_cp_reset(drm_radeon_private_t *dev_priv) | ||
2195 | { | ||
2196 | u32 cur_read_ptr; | ||
2197 | DRM_DEBUG("\n"); | ||
2198 | |||
2199 | cur_read_ptr = RADEON_READ(R600_CP_RB_RPTR); | ||
2200 | RADEON_WRITE(R600_CP_RB_WPTR, cur_read_ptr); | ||
2201 | SET_RING_HEAD(dev_priv, cur_read_ptr); | ||
2202 | dev_priv->ring.tail = cur_read_ptr; | ||
2203 | } | ||
2204 | |||
2205 | void r600_do_cp_stop(drm_radeon_private_t *dev_priv) | ||
2206 | { | ||
2207 | uint32_t cp_me; | ||
2208 | |||
2209 | DRM_DEBUG("\n"); | ||
2210 | |||
2211 | cp_me = 0xff | R600_CP_ME_HALT; | ||
2212 | |||
2213 | RADEON_WRITE(R600_CP_ME_CNTL, cp_me); | ||
2214 | |||
2215 | dev_priv->cp_running = 0; | ||
2216 | } | ||
2217 | |||
2218 | int r600_cp_dispatch_indirect(struct drm_device *dev, | ||
2219 | struct drm_buf *buf, int start, int end) | ||
2220 | { | ||
2221 | drm_radeon_private_t *dev_priv = dev->dev_private; | ||
2222 | RING_LOCALS; | ||
2223 | |||
2224 | if (start != end) { | ||
2225 | unsigned long offset = (dev_priv->gart_buffers_offset | ||
2226 | + buf->offset + start); | ||
2227 | int dwords = (end - start + 3) / sizeof(u32); | ||
2228 | |||
2229 | DRM_DEBUG("dwords:%d\n", dwords); | ||
2230 | DRM_DEBUG("offset 0x%lx\n", offset); | ||
2231 | |||
2232 | |||
2233 | /* Indirect buffer data must be a multiple of 16 dwords. | ||
2234 | * pad the data with a Type-2 CP packet. | ||
2235 | */ | ||
2236 | while (dwords & 0xf) { | ||
2237 | u32 *data = (u32 *) | ||
2238 | ((char *)dev->agp_buffer_map->handle | ||
2239 | + buf->offset + start); | ||
2240 | data[dwords++] = RADEON_CP_PACKET2; | ||
2241 | } | ||
2242 | |||
2243 | /* Fire off the indirect buffer */ | ||
2244 | BEGIN_RING(4); | ||
2245 | OUT_RING(CP_PACKET3(R600_IT_INDIRECT_BUFFER, 2)); | ||
2246 | OUT_RING((offset & 0xfffffffc)); | ||
2247 | OUT_RING((upper_32_bits(offset) & 0xff)); | ||
2248 | OUT_RING(dwords); | ||
2249 | ADVANCE_RING(); | ||
2250 | } | ||
2251 | |||
2252 | return 0; | ||
2253 | } | ||
diff --git a/drivers/gpu/drm/radeon/r600_microcode.h b/drivers/gpu/drm/radeon/r600_microcode.h new file mode 100644 index 000000000000..778c8b4b2fd9 --- /dev/null +++ b/drivers/gpu/drm/radeon/r600_microcode.h | |||
@@ -0,0 +1,23297 @@ | |||
1 | /* | ||
2 | * Copyright 2008-2009 Advanced Micro Devices, Inc. | ||
3 | * All Rights Reserved. | ||
4 | * | ||
5 | * Permission is hereby granted, free of charge, to any person obtaining a | ||
6 | * copy of this software and associated documentation files (the "Software"), | ||
7 | * to deal in the Software without restriction, including without limitation | ||
8 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
9 | * and/or sell copies of the Software, and to permit persons to whom the | ||
10 | * Software is furnished to do so, subject to the following conditions: | ||
11 | * | ||
12 | * The above copyright notice and this permission notice (including the next | ||
13 | * paragraph) shall be included in all copies or substantial portions of the | ||
14 | * Software. | ||
15 | * | ||
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
19 | * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE | ||
20 | * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
21 | * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
22 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
23 | * | ||
24 | */ | ||
25 | |||
26 | #ifndef R600_MICROCODE_H | ||
27 | #define R600_MICROCODE_H | ||
28 | |||
29 | static const int ME_JUMP_TABLE_START = 1764; | ||
30 | static const int ME_JUMP_TABLE_END = 1792; | ||
31 | |||
32 | #define PFP_UCODE_SIZE 576 | ||
33 | #define PM4_UCODE_SIZE 1792 | ||
34 | #define R700_PFP_UCODE_SIZE 848 | ||
35 | #define R700_PM4_UCODE_SIZE 1360 | ||
36 | |||
37 | static const u32 R600_cp_microcode[][3] = { | ||
38 | { 0x00000000, 0xc0200400, 0x000 }, | ||
39 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
40 | { 0x0000ffff, 0x00284621, 0x000 }, | ||
41 | { 0x00000000, 0xd9004800, 0x000 }, | ||
42 | { 0x00000000, 0xc0200400, 0x000 }, | ||
43 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
44 | { 0x00000000, 0x00e00000, 0x000 }, | ||
45 | { 0x00010000, 0xc0294620, 0x000 }, | ||
46 | { 0x00000000, 0xd9004800, 0x000 }, | ||
47 | { 0x00000000, 0xc0200400, 0x000 }, | ||
48 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
49 | { 0x81000000, 0x00204411, 0x000 }, | ||
50 | { 0x00000001, 0x00204811, 0x000 }, | ||
51 | { 0x00042004, 0x00604411, 0x614 }, | ||
52 | { 0x00000000, 0x00600000, 0x5b2 }, | ||
53 | { 0x00000000, 0x00600000, 0x5c5 }, | ||
54 | { 0x00000000, 0xc0200800, 0x000 }, | ||
55 | { 0x00000f00, 0x00281622, 0x000 }, | ||
56 | { 0x00000008, 0x00211625, 0x000 }, | ||
57 | { 0x00000020, 0x00203625, 0x000 }, | ||
58 | { 0x8d000000, 0x00204411, 0x000 }, | ||
59 | { 0x00000004, 0x002f0225, 0x000 }, | ||
60 | { 0x00000000, 0x0ce00000, 0x018 }, | ||
61 | { 0x00412000, 0x00404811, 0x019 }, | ||
62 | { 0x00422000, 0x00204811, 0x000 }, | ||
63 | { 0x8e000000, 0x00204411, 0x000 }, | ||
64 | { 0x00000031, 0x00204a2d, 0x000 }, | ||
65 | { 0x90000000, 0x00204411, 0x000 }, | ||
66 | { 0x00000000, 0x00204805, 0x000 }, | ||
67 | { 0x0000000c, 0x00211622, 0x000 }, | ||
68 | { 0x00000003, 0x00281625, 0x000 }, | ||
69 | { 0x00000019, 0x00211a22, 0x000 }, | ||
70 | { 0x00000004, 0x00281a26, 0x000 }, | ||
71 | { 0x00000000, 0x002914c5, 0x000 }, | ||
72 | { 0x00000021, 0x00203625, 0x000 }, | ||
73 | { 0x00000000, 0x003a1402, 0x000 }, | ||
74 | { 0x00000016, 0x00211625, 0x000 }, | ||
75 | { 0x00000003, 0x00281625, 0x000 }, | ||
76 | { 0x0000001d, 0x00200e2d, 0x000 }, | ||
77 | { 0xfffffffc, 0x00280e23, 0x000 }, | ||
78 | { 0x00000000, 0x002914a3, 0x000 }, | ||
79 | { 0x0000001d, 0x00203625, 0x000 }, | ||
80 | { 0x00008000, 0x00280e22, 0x000 }, | ||
81 | { 0x00000007, 0x00220e23, 0x000 }, | ||
82 | { 0x00000000, 0x0029386e, 0x000 }, | ||
83 | { 0x20000000, 0x00280e22, 0x000 }, | ||
84 | { 0x00000006, 0x00210e23, 0x000 }, | ||
85 | { 0x00000000, 0x0029386e, 0x000 }, | ||
86 | { 0x00000000, 0x00220222, 0x000 }, | ||
87 | { 0x00000000, 0x14e00000, 0x038 }, | ||
88 | { 0x00000000, 0x2ee00000, 0x035 }, | ||
89 | { 0x00000000, 0x2ce00000, 0x037 }, | ||
90 | { 0x00000000, 0x00400e2d, 0x039 }, | ||
91 | { 0x00000008, 0x00200e2d, 0x000 }, | ||
92 | { 0x00000009, 0x0040122d, 0x046 }, | ||
93 | { 0x00000001, 0x00400e2d, 0x039 }, | ||
94 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
95 | { 0x003ffffc, 0x00281223, 0x000 }, | ||
96 | { 0x00000002, 0x00221224, 0x000 }, | ||
97 | { 0x0000001f, 0x00211e23, 0x000 }, | ||
98 | { 0x00000000, 0x14e00000, 0x03e }, | ||
99 | { 0x00000008, 0x00401c11, 0x041 }, | ||
100 | { 0x0000000d, 0x00201e2d, 0x000 }, | ||
101 | { 0x0000000f, 0x00281e27, 0x000 }, | ||
102 | { 0x00000003, 0x00221e27, 0x000 }, | ||
103 | { 0x7fc00000, 0x00281a23, 0x000 }, | ||
104 | { 0x00000014, 0x00211a26, 0x000 }, | ||
105 | { 0x00000001, 0x00331a26, 0x000 }, | ||
106 | { 0x00000008, 0x00221a26, 0x000 }, | ||
107 | { 0x00000000, 0x00290cc7, 0x000 }, | ||
108 | { 0x00000030, 0x00203624, 0x000 }, | ||
109 | { 0x00007f00, 0x00281221, 0x000 }, | ||
110 | { 0x00001400, 0x002f0224, 0x000 }, | ||
111 | { 0x00000000, 0x0ce00000, 0x04b }, | ||
112 | { 0x00000001, 0x00290e23, 0x000 }, | ||
113 | { 0x00000010, 0x00203623, 0x000 }, | ||
114 | { 0x0000e000, 0x00204411, 0x000 }, | ||
115 | { 0xfff80000, 0x00294a23, 0x000 }, | ||
116 | { 0x00000000, 0x003a2c02, 0x000 }, | ||
117 | { 0x00000002, 0x00220e2b, 0x000 }, | ||
118 | { 0xfc000000, 0x00280e23, 0x000 }, | ||
119 | { 0x00000011, 0x00203623, 0x000 }, | ||
120 | { 0x00001fff, 0x00294a23, 0x000 }, | ||
121 | { 0x00000030, 0x00204a2d, 0x000 }, | ||
122 | { 0x00000000, 0x00204811, 0x000 }, | ||
123 | { 0x00000032, 0x00200e2d, 0x000 }, | ||
124 | { 0x060a0200, 0x00294a23, 0x000 }, | ||
125 | { 0x00000000, 0x00204811, 0x000 }, | ||
126 | { 0x00000000, 0x00204811, 0x000 }, | ||
127 | { 0x00000001, 0x00210222, 0x000 }, | ||
128 | { 0x00000000, 0x14e00000, 0x061 }, | ||
129 | { 0x00000000, 0x2ee00000, 0x05f }, | ||
130 | { 0x00000000, 0x2ce00000, 0x05e }, | ||
131 | { 0x00000000, 0x00400e2d, 0x062 }, | ||
132 | { 0x00000001, 0x00400e2d, 0x062 }, | ||
133 | { 0x0000000a, 0x00200e2d, 0x000 }, | ||
134 | { 0x0000000b, 0x0040122d, 0x06a }, | ||
135 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
136 | { 0x003ffffc, 0x00281223, 0x000 }, | ||
137 | { 0x00000002, 0x00221224, 0x000 }, | ||
138 | { 0x7fc00000, 0x00281623, 0x000 }, | ||
139 | { 0x00000014, 0x00211625, 0x000 }, | ||
140 | { 0x00000001, 0x00331625, 0x000 }, | ||
141 | { 0x80000000, 0x00280e23, 0x000 }, | ||
142 | { 0x00000000, 0x00290ca3, 0x000 }, | ||
143 | { 0x3ffffc00, 0x00290e23, 0x000 }, | ||
144 | { 0x0000001f, 0x00211e23, 0x000 }, | ||
145 | { 0x00000000, 0x14e00000, 0x06d }, | ||
146 | { 0x00000100, 0x00401c11, 0x070 }, | ||
147 | { 0x0000000d, 0x00201e2d, 0x000 }, | ||
148 | { 0x000000f0, 0x00281e27, 0x000 }, | ||
149 | { 0x00000004, 0x00221e27, 0x000 }, | ||
150 | { 0x81000000, 0x00204411, 0x000 }, | ||
151 | { 0x0000000d, 0x00204811, 0x000 }, | ||
152 | { 0xfffff0ff, 0x00281a30, 0x000 }, | ||
153 | { 0x0000a028, 0x00204411, 0x000 }, | ||
154 | { 0x00000000, 0x002948e6, 0x000 }, | ||
155 | { 0x0000a018, 0x00204411, 0x000 }, | ||
156 | { 0x3fffffff, 0x00284a23, 0x000 }, | ||
157 | { 0x0000a010, 0x00204411, 0x000 }, | ||
158 | { 0x00000000, 0x00204804, 0x000 }, | ||
159 | { 0x0000002d, 0x0020162d, 0x000 }, | ||
160 | { 0x00000000, 0x002f00a3, 0x000 }, | ||
161 | { 0x00000000, 0x0cc00000, 0x080 }, | ||
162 | { 0x0000002e, 0x0020162d, 0x000 }, | ||
163 | { 0x00000000, 0x002f00a4, 0x000 }, | ||
164 | { 0x00000000, 0x0cc00000, 0x081 }, | ||
165 | { 0x00000000, 0x00400000, 0x087 }, | ||
166 | { 0x0000002d, 0x00203623, 0x000 }, | ||
167 | { 0x0000002e, 0x00203624, 0x000 }, | ||
168 | { 0x0000001d, 0x00201e2d, 0x000 }, | ||
169 | { 0x00000002, 0x00210227, 0x000 }, | ||
170 | { 0x00000000, 0x14e00000, 0x087 }, | ||
171 | { 0x00000000, 0x00600000, 0x5ed }, | ||
172 | { 0x00000000, 0x00600000, 0x5e1 }, | ||
173 | { 0x00000002, 0x00210e22, 0x000 }, | ||
174 | { 0x00000000, 0x14c00000, 0x08a }, | ||
175 | { 0x00000018, 0xc0403620, 0x090 }, | ||
176 | { 0x00000000, 0x2ee00000, 0x08e }, | ||
177 | { 0x00000000, 0x2ce00000, 0x08d }, | ||
178 | { 0x00000002, 0x00400e2d, 0x08f }, | ||
179 | { 0x00000003, 0x00400e2d, 0x08f }, | ||
180 | { 0x0000000c, 0x00200e2d, 0x000 }, | ||
181 | { 0x00000018, 0x00203623, 0x000 }, | ||
182 | { 0x00000003, 0x00210e22, 0x000 }, | ||
183 | { 0x00000000, 0x14c00000, 0x095 }, | ||
184 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
185 | { 0x00000000, 0xc0204800, 0x000 }, | ||
186 | { 0x00000000, 0xc0404800, 0x09d }, | ||
187 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
188 | { 0x00000000, 0x00204811, 0x000 }, | ||
189 | { 0x00000000, 0x2ee00000, 0x09b }, | ||
190 | { 0x00000000, 0x2ce00000, 0x09a }, | ||
191 | { 0x00000002, 0x00400e2d, 0x09c }, | ||
192 | { 0x00000003, 0x00400e2d, 0x09c }, | ||
193 | { 0x0000000c, 0x00200e2d, 0x000 }, | ||
194 | { 0x00000000, 0x00204803, 0x000 }, | ||
195 | { 0x00000000, 0x003a0c02, 0x000 }, | ||
196 | { 0x003f0000, 0x00280e23, 0x000 }, | ||
197 | { 0x00000010, 0x00210e23, 0x000 }, | ||
198 | { 0x00000013, 0x00203623, 0x000 }, | ||
199 | { 0x0000001e, 0x0021022b, 0x000 }, | ||
200 | { 0x00000000, 0x14c00000, 0x0a4 }, | ||
201 | { 0x0000001c, 0xc0203620, 0x000 }, | ||
202 | { 0x0000001f, 0x0021022b, 0x000 }, | ||
203 | { 0x00000000, 0x14c00000, 0x0a7 }, | ||
204 | { 0x0000001b, 0xc0203620, 0x000 }, | ||
205 | { 0x00000008, 0x00210e2b, 0x000 }, | ||
206 | { 0x0000007f, 0x00280e23, 0x000 }, | ||
207 | { 0x00000000, 0x002f0223, 0x000 }, | ||
208 | { 0x00000000, 0x0ce00000, 0x0db }, | ||
209 | { 0x00000000, 0x27000000, 0x000 }, | ||
210 | { 0x00000000, 0x00600000, 0x28c }, | ||
211 | { 0x81000000, 0x00204411, 0x000 }, | ||
212 | { 0x00000006, 0x00204811, 0x000 }, | ||
213 | { 0x0000000c, 0x00221e30, 0x000 }, | ||
214 | { 0x99800000, 0x00204411, 0x000 }, | ||
215 | { 0x00000004, 0x0020122d, 0x000 }, | ||
216 | { 0x00000008, 0x00221224, 0x000 }, | ||
217 | { 0x00000010, 0x00201811, 0x000 }, | ||
218 | { 0x00000000, 0x00291ce4, 0x000 }, | ||
219 | { 0x00000000, 0x00604807, 0x128 }, | ||
220 | { 0x9b000000, 0x00204411, 0x000 }, | ||
221 | { 0x00000000, 0x00204802, 0x000 }, | ||
222 | { 0x9c000000, 0x00204411, 0x000 }, | ||
223 | { 0x00000000, 0x0033146f, 0x000 }, | ||
224 | { 0x00000001, 0x00333e23, 0x000 }, | ||
225 | { 0x00000000, 0xd9004800, 0x000 }, | ||
226 | { 0x00000000, 0x00203c05, 0x000 }, | ||
227 | { 0x81000000, 0x00204411, 0x000 }, | ||
228 | { 0x0000000e, 0x00204811, 0x000 }, | ||
229 | { 0x00000000, 0x00201010, 0x000 }, | ||
230 | { 0x0000e007, 0x00204411, 0x000 }, | ||
231 | { 0x0000000f, 0x0021022b, 0x000 }, | ||
232 | { 0x00000000, 0x14c00000, 0x0c5 }, | ||
233 | { 0x00f8ff08, 0x00204811, 0x000 }, | ||
234 | { 0x98000000, 0x00404811, 0x0d6 }, | ||
235 | { 0x000000f0, 0x00280e22, 0x000 }, | ||
236 | { 0x000000a0, 0x002f0223, 0x000 }, | ||
237 | { 0x00000000, 0x0cc00000, 0x0d4 }, | ||
238 | { 0x00000013, 0x00200e2d, 0x000 }, | ||
239 | { 0x00000001, 0x002f0223, 0x000 }, | ||
240 | { 0x00000000, 0x0ce00000, 0x0cf }, | ||
241 | { 0x00000002, 0x002f0223, 0x000 }, | ||
242 | { 0x00000000, 0x0ce00000, 0x0ce }, | ||
243 | { 0x00003f00, 0x00400c11, 0x0d0 }, | ||
244 | { 0x00001f00, 0x00400c11, 0x0d0 }, | ||
245 | { 0x00000f00, 0x00200c11, 0x000 }, | ||
246 | { 0x00380009, 0x00294a23, 0x000 }, | ||
247 | { 0x3f000000, 0x00280e2b, 0x000 }, | ||
248 | { 0x00000002, 0x00220e23, 0x000 }, | ||
249 | { 0x00000007, 0x00494a23, 0x0d6 }, | ||
250 | { 0x00380f09, 0x00204811, 0x000 }, | ||
251 | { 0x68000007, 0x00204811, 0x000 }, | ||
252 | { 0x00000008, 0x00214a27, 0x000 }, | ||
253 | { 0x00000000, 0x00204811, 0x000 }, | ||
254 | { 0x060a0200, 0x00294a24, 0x000 }, | ||
255 | { 0x00000000, 0x00204811, 0x000 }, | ||
256 | { 0x00000000, 0x00204811, 0x000 }, | ||
257 | { 0x0000a202, 0x00204411, 0x000 }, | ||
258 | { 0x00ff0000, 0x00284a22, 0x000 }, | ||
259 | { 0x00000030, 0x00200e2d, 0x000 }, | ||
260 | { 0x0000002e, 0x0020122d, 0x000 }, | ||
261 | { 0x00000000, 0x002f0083, 0x000 }, | ||
262 | { 0x00000000, 0x0ce00000, 0x0e3 }, | ||
263 | { 0x00000000, 0x00600000, 0x5e7 }, | ||
264 | { 0x00000000, 0x00400000, 0x0e4 }, | ||
265 | { 0x00000000, 0x00600000, 0x5ea }, | ||
266 | { 0x00000007, 0x0020222d, 0x000 }, | ||
267 | { 0x00000005, 0x00220e22, 0x000 }, | ||
268 | { 0x00100000, 0x00280e23, 0x000 }, | ||
269 | { 0x00000000, 0x00292068, 0x000 }, | ||
270 | { 0x00000000, 0x003a0c02, 0x000 }, | ||
271 | { 0x000000ef, 0x00280e23, 0x000 }, | ||
272 | { 0x00000000, 0x00292068, 0x000 }, | ||
273 | { 0x0000001d, 0x00200e2d, 0x000 }, | ||
274 | { 0x00000003, 0x00210223, 0x000 }, | ||
275 | { 0x00000000, 0x14e00000, 0x0f1 }, | ||
276 | { 0x0000000b, 0x00210228, 0x000 }, | ||
277 | { 0x00000000, 0x14c00000, 0x0f1 }, | ||
278 | { 0x00000400, 0x00292228, 0x000 }, | ||
279 | { 0x0000001a, 0x00203628, 0x000 }, | ||
280 | { 0x0000001c, 0x00210e22, 0x000 }, | ||
281 | { 0x00000000, 0x14c00000, 0x0f6 }, | ||
282 | { 0x0000a30c, 0x00204411, 0x000 }, | ||
283 | { 0x00000000, 0x00204811, 0x000 }, | ||
284 | { 0x0000001e, 0x00210e22, 0x000 }, | ||
285 | { 0x00000000, 0x14c00000, 0x104 }, | ||
286 | { 0x0000a30f, 0x00204411, 0x000 }, | ||
287 | { 0x00000013, 0x00200e2d, 0x000 }, | ||
288 | { 0x00000001, 0x002f0223, 0x000 }, | ||
289 | { 0x00000000, 0x0cc00000, 0x0fd }, | ||
290 | { 0xffffffff, 0x00404811, 0x104 }, | ||
291 | { 0x00000002, 0x002f0223, 0x000 }, | ||
292 | { 0x00000000, 0x0cc00000, 0x100 }, | ||
293 | { 0x0000ffff, 0x00404811, 0x104 }, | ||
294 | { 0x00000004, 0x002f0223, 0x000 }, | ||
295 | { 0x00000000, 0x0cc00000, 0x103 }, | ||
296 | { 0x000000ff, 0x00404811, 0x104 }, | ||
297 | { 0x00000001, 0x00204811, 0x000 }, | ||
298 | { 0x0002c400, 0x00204411, 0x000 }, | ||
299 | { 0x0000001f, 0x00210e22, 0x000 }, | ||
300 | { 0x00000000, 0x14c00000, 0x10b }, | ||
301 | { 0x00000010, 0x40210e20, 0x000 }, | ||
302 | { 0x00000019, 0x00203623, 0x000 }, | ||
303 | { 0x00000018, 0x40224a20, 0x000 }, | ||
304 | { 0x00000010, 0xc0424a20, 0x10d }, | ||
305 | { 0x00000000, 0x00200c11, 0x000 }, | ||
306 | { 0x00000019, 0x00203623, 0x000 }, | ||
307 | { 0x00000000, 0x00204811, 0x000 }, | ||
308 | { 0x00000000, 0x00204811, 0x000 }, | ||
309 | { 0x0000000a, 0x00201011, 0x000 }, | ||
310 | { 0x00000000, 0x002f0224, 0x000 }, | ||
311 | { 0x00000000, 0x0ce00000, 0x114 }, | ||
312 | { 0x00000000, 0x00204811, 0x000 }, | ||
313 | { 0x00000001, 0x00531224, 0x110 }, | ||
314 | { 0xffbfffff, 0x00283a2e, 0x000 }, | ||
315 | { 0x0000001b, 0x00210222, 0x000 }, | ||
316 | { 0x00000000, 0x14c00000, 0x127 }, | ||
317 | { 0x81000000, 0x00204411, 0x000 }, | ||
318 | { 0x0000000d, 0x00204811, 0x000 }, | ||
319 | { 0x00000018, 0x00220e30, 0x000 }, | ||
320 | { 0xfc000000, 0x00280e23, 0x000 }, | ||
321 | { 0x81000000, 0x00204411, 0x000 }, | ||
322 | { 0x0000000e, 0x00204811, 0x000 }, | ||
323 | { 0x00000000, 0x00201010, 0x000 }, | ||
324 | { 0x0000e00e, 0x00204411, 0x000 }, | ||
325 | { 0x07f8ff08, 0x00204811, 0x000 }, | ||
326 | { 0x00000000, 0x00294a23, 0x000 }, | ||
327 | { 0x00000024, 0x00201e2d, 0x000 }, | ||
328 | { 0x00000008, 0x00214a27, 0x000 }, | ||
329 | { 0x00000000, 0x00204811, 0x000 }, | ||
330 | { 0x060a0200, 0x00294a24, 0x000 }, | ||
331 | { 0x00000000, 0x00204811, 0x000 }, | ||
332 | { 0x00000000, 0x00204811, 0x000 }, | ||
333 | { 0x00000000, 0x00800000, 0x000 }, | ||
334 | { 0x81000000, 0x00204411, 0x000 }, | ||
335 | { 0x00000001, 0x00204811, 0x000 }, | ||
336 | { 0x0000217c, 0x00204411, 0x000 }, | ||
337 | { 0x00800000, 0x00204811, 0x000 }, | ||
338 | { 0x00000000, 0x00204806, 0x000 }, | ||
339 | { 0x00000008, 0x00214a27, 0x000 }, | ||
340 | { 0x00000000, 0x17000000, 0x000 }, | ||
341 | { 0x0004217f, 0x00604411, 0x614 }, | ||
342 | { 0x0000001f, 0x00210230, 0x000 }, | ||
343 | { 0x00000000, 0x14c00000, 0x613 }, | ||
344 | { 0x00000004, 0x00404c11, 0x12e }, | ||
345 | { 0x00000000, 0x00600000, 0x00b }, | ||
346 | { 0x00000000, 0x00600411, 0x2fe }, | ||
347 | { 0x00000000, 0x00200411, 0x000 }, | ||
348 | { 0x00000000, 0x00600811, 0x19f }, | ||
349 | { 0x00000000, 0x00600000, 0x151 }, | ||
350 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
351 | { 0x00000010, 0xc0211220, 0x000 }, | ||
352 | { 0x0000ffff, 0x40280620, 0x000 }, | ||
353 | { 0x00000010, 0xc0210a20, 0x000 }, | ||
354 | { 0x00000000, 0x00341461, 0x000 }, | ||
355 | { 0x00000000, 0x00741882, 0x2a4 }, | ||
356 | { 0x0001a1fd, 0x00604411, 0x2c9 }, | ||
357 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
358 | { 0x00000000, 0x0cc00000, 0x138 }, | ||
359 | { 0x00000000, 0xc0400400, 0x001 }, | ||
360 | { 0x00000000, 0x00600000, 0x00b }, | ||
361 | { 0x00000000, 0x00600411, 0x2fe }, | ||
362 | { 0x00000000, 0x00200411, 0x000 }, | ||
363 | { 0x00000000, 0x00600811, 0x19f }, | ||
364 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
365 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
366 | { 0x00000000, 0x00600000, 0x151 }, | ||
367 | { 0x00000010, 0x40210e20, 0x000 }, | ||
368 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
369 | { 0x00000010, 0x40211620, 0x000 }, | ||
370 | { 0x0000ffff, 0xc0681a20, 0x2a4 }, | ||
371 | { 0x0001a1fd, 0x00604411, 0x2c9 }, | ||
372 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
373 | { 0x00000000, 0x0cc00000, 0x149 }, | ||
374 | { 0x00000000, 0xc0400400, 0x001 }, | ||
375 | { 0x0000225c, 0x00204411, 0x000 }, | ||
376 | { 0x00000001, 0x00300a2f, 0x000 }, | ||
377 | { 0x00000001, 0x00210a22, 0x000 }, | ||
378 | { 0x00000003, 0x00384a22, 0x000 }, | ||
379 | { 0x00002256, 0x00204411, 0x000 }, | ||
380 | { 0x0000001a, 0x00204811, 0x000 }, | ||
381 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
382 | { 0x00000001, 0x00804811, 0x000 }, | ||
383 | { 0x00000000, 0x00600000, 0x00b }, | ||
384 | { 0x00000000, 0x00600000, 0x17c }, | ||
385 | { 0x00000000, 0x00600000, 0x18d }, | ||
386 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
387 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
388 | { 0x00000000, 0x00202c08, 0x000 }, | ||
389 | { 0x00000000, 0x00202411, 0x000 }, | ||
390 | { 0x00000000, 0x00202811, 0x000 }, | ||
391 | { 0x00002256, 0x00204411, 0x000 }, | ||
392 | { 0x00000016, 0x00204811, 0x000 }, | ||
393 | { 0x0000225c, 0x00204411, 0x000 }, | ||
394 | { 0x00000003, 0x00204811, 0x000 }, | ||
395 | { 0x93800000, 0x00204411, 0x000 }, | ||
396 | { 0x00000002, 0x00221e29, 0x000 }, | ||
397 | { 0x00000000, 0x007048eb, 0x189 }, | ||
398 | { 0x00000000, 0x00600000, 0x2a4 }, | ||
399 | { 0x00000001, 0x40330620, 0x000 }, | ||
400 | { 0x00000000, 0xc0302409, 0x000 }, | ||
401 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
402 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
403 | { 0x00000000, 0x00600000, 0x28c }, | ||
404 | { 0x95000000, 0x00204411, 0x000 }, | ||
405 | { 0x00000000, 0x002f0221, 0x000 }, | ||
406 | { 0x00000000, 0x0ce00000, 0x173 }, | ||
407 | { 0x00000000, 0xc0204800, 0x000 }, | ||
408 | { 0x00000001, 0x00530621, 0x16f }, | ||
409 | { 0x92000000, 0x00204411, 0x000 }, | ||
410 | { 0x00000000, 0xc0604800, 0x184 }, | ||
411 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
412 | { 0x00000013, 0x0020062d, 0x000 }, | ||
413 | { 0x00000000, 0x0078042a, 0x2e4 }, | ||
414 | { 0x00000000, 0x00202809, 0x000 }, | ||
415 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
416 | { 0x00000000, 0x0cc00000, 0x165 }, | ||
417 | { 0x00000000, 0xc0400400, 0x001 }, | ||
418 | { 0x00000210, 0x00600411, 0x2fe }, | ||
419 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
420 | { 0x00000000, 0x0ce00000, 0x181 }, | ||
421 | { 0x0000001b, 0xc0203620, 0x000 }, | ||
422 | { 0x0000001c, 0xc0203620, 0x000 }, | ||
423 | { 0x3f800000, 0x00200411, 0x000 }, | ||
424 | { 0x46000000, 0x00600811, 0x19f }, | ||
425 | { 0x00000000, 0x00800000, 0x000 }, | ||
426 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
427 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
428 | { 0x00000000, 0x0cc00000, 0x188 }, | ||
429 | { 0x00000001, 0x00804811, 0x000 }, | ||
430 | { 0x00000021, 0x00804811, 0x000 }, | ||
431 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
432 | { 0x00000010, 0xc0211220, 0x000 }, | ||
433 | { 0x0000ffff, 0x40281620, 0x000 }, | ||
434 | { 0x00000010, 0xc0811a20, 0x000 }, | ||
435 | { 0x81000000, 0x00204411, 0x000 }, | ||
436 | { 0x00000006, 0x00204811, 0x000 }, | ||
437 | { 0x00000008, 0x00221e30, 0x000 }, | ||
438 | { 0x00000032, 0x00201a2d, 0x000 }, | ||
439 | { 0x0000e000, 0x00204411, 0x000 }, | ||
440 | { 0xfffbff09, 0x00204811, 0x000 }, | ||
441 | { 0x00000011, 0x0020222d, 0x000 }, | ||
442 | { 0x00001fff, 0x00294a28, 0x000 }, | ||
443 | { 0x00000006, 0x0020222d, 0x000 }, | ||
444 | { 0x00000000, 0x002920e8, 0x000 }, | ||
445 | { 0x00000000, 0x00204808, 0x000 }, | ||
446 | { 0x00000000, 0x00204811, 0x000 }, | ||
447 | { 0x060a0200, 0x00294a26, 0x000 }, | ||
448 | { 0x00000000, 0x00204811, 0x000 }, | ||
449 | { 0x00000000, 0x00204811, 0x000 }, | ||
450 | { 0x00000100, 0x00201811, 0x000 }, | ||
451 | { 0x00000008, 0x00621e28, 0x128 }, | ||
452 | { 0x00000008, 0x00822228, 0x000 }, | ||
453 | { 0x0002c000, 0x00204411, 0x000 }, | ||
454 | { 0x0000001b, 0x00600e2d, 0x1aa }, | ||
455 | { 0x0000001c, 0x00600e2d, 0x1aa }, | ||
456 | { 0x0000c008, 0x00204411, 0x000 }, | ||
457 | { 0x0000001d, 0x00200e2d, 0x000 }, | ||
458 | { 0x00000000, 0x14c00000, 0x1a6 }, | ||
459 | { 0x00000000, 0x00200411, 0x000 }, | ||
460 | { 0x00000000, 0x00204801, 0x000 }, | ||
461 | { 0x39000000, 0x00204811, 0x000 }, | ||
462 | { 0x00000000, 0x00204811, 0x000 }, | ||
463 | { 0x00000000, 0x00804802, 0x000 }, | ||
464 | { 0x00000020, 0x00202e2d, 0x000 }, | ||
465 | { 0x00000000, 0x003b0d63, 0x000 }, | ||
466 | { 0x00000008, 0x00224a23, 0x000 }, | ||
467 | { 0x00000010, 0x00224a23, 0x000 }, | ||
468 | { 0x00000018, 0x00224a23, 0x000 }, | ||
469 | { 0x00000000, 0x00804803, 0x000 }, | ||
470 | { 0x00000000, 0x00600000, 0x00b }, | ||
471 | { 0x00001000, 0x00600411, 0x2fe }, | ||
472 | { 0x00000000, 0x00200411, 0x000 }, | ||
473 | { 0x00000000, 0x00600811, 0x19f }, | ||
474 | { 0x00000007, 0x0021062f, 0x000 }, | ||
475 | { 0x00000019, 0x00200a2d, 0x000 }, | ||
476 | { 0x00000001, 0x00202c11, 0x000 }, | ||
477 | { 0x0000ffff, 0x40282220, 0x000 }, | ||
478 | { 0x0000000f, 0x00262228, 0x000 }, | ||
479 | { 0x00000010, 0x40212620, 0x000 }, | ||
480 | { 0x0000000f, 0x00262629, 0x000 }, | ||
481 | { 0x00000000, 0x00202802, 0x000 }, | ||
482 | { 0x00002256, 0x00204411, 0x000 }, | ||
483 | { 0x0000001b, 0x00204811, 0x000 }, | ||
484 | { 0x00000000, 0x002f0221, 0x000 }, | ||
485 | { 0x00000000, 0x0ce00000, 0x1cd }, | ||
486 | { 0x0000225c, 0x00204411, 0x000 }, | ||
487 | { 0x00000081, 0x00204811, 0x000 }, | ||
488 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
489 | { 0x00000001, 0x00204811, 0x000 }, | ||
490 | { 0x00000080, 0x00201c11, 0x000 }, | ||
491 | { 0x00000000, 0x002f0227, 0x000 }, | ||
492 | { 0x00000000, 0x0ce00000, 0x1c9 }, | ||
493 | { 0x00000000, 0x00600000, 0x1d6 }, | ||
494 | { 0x00000001, 0x00531e27, 0x1c5 }, | ||
495 | { 0x00000001, 0x00202c11, 0x000 }, | ||
496 | { 0x0000001f, 0x00280a22, 0x000 }, | ||
497 | { 0x0000001f, 0x00282a2a, 0x000 }, | ||
498 | { 0x00000001, 0x00530621, 0x1be }, | ||
499 | { 0x0000225c, 0x00204411, 0x000 }, | ||
500 | { 0x00000002, 0x00304a2f, 0x000 }, | ||
501 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
502 | { 0x00000001, 0x00204811, 0x000 }, | ||
503 | { 0x00000001, 0x00301e2f, 0x000 }, | ||
504 | { 0x00000000, 0x002f0227, 0x000 }, | ||
505 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
506 | { 0x00000000, 0x00600000, 0x1d6 }, | ||
507 | { 0x00000001, 0x00531e27, 0x1d2 }, | ||
508 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
509 | { 0x0000000f, 0x00260e23, 0x000 }, | ||
510 | { 0x00000010, 0xc0211220, 0x000 }, | ||
511 | { 0x0000000f, 0x00261224, 0x000 }, | ||
512 | { 0x00000000, 0x00201411, 0x000 }, | ||
513 | { 0x00000000, 0x00601811, 0x2a4 }, | ||
514 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
515 | { 0x00000000, 0x002f022b, 0x000 }, | ||
516 | { 0x00000000, 0x0ce00000, 0x1e5 }, | ||
517 | { 0x00000010, 0x00221628, 0x000 }, | ||
518 | { 0xffff0000, 0x00281625, 0x000 }, | ||
519 | { 0x0000ffff, 0x00281a29, 0x000 }, | ||
520 | { 0x00000000, 0x002948c5, 0x000 }, | ||
521 | { 0x00000000, 0x0020480a, 0x000 }, | ||
522 | { 0x00000000, 0x00202c11, 0x000 }, | ||
523 | { 0x00000010, 0x00221623, 0x000 }, | ||
524 | { 0xffff0000, 0x00281625, 0x000 }, | ||
525 | { 0x0000ffff, 0x00281a24, 0x000 }, | ||
526 | { 0x00000000, 0x002948c5, 0x000 }, | ||
527 | { 0x00000000, 0x00731503, 0x1f2 }, | ||
528 | { 0x00000000, 0x00201805, 0x000 }, | ||
529 | { 0x00000000, 0x00731524, 0x1f2 }, | ||
530 | { 0x00000000, 0x002d14c5, 0x000 }, | ||
531 | { 0x00000000, 0x003008a2, 0x000 }, | ||
532 | { 0x00000000, 0x00204802, 0x000 }, | ||
533 | { 0x00000000, 0x00202802, 0x000 }, | ||
534 | { 0x00000000, 0x00202003, 0x000 }, | ||
535 | { 0x00000000, 0x00802404, 0x000 }, | ||
536 | { 0x0000000f, 0x00210225, 0x000 }, | ||
537 | { 0x00000000, 0x14c00000, 0x613 }, | ||
538 | { 0x00000000, 0x002b1405, 0x000 }, | ||
539 | { 0x00000001, 0x00901625, 0x000 }, | ||
540 | { 0x00000000, 0x00600000, 0x00b }, | ||
541 | { 0x00000000, 0x00600411, 0x2fe }, | ||
542 | { 0x00000000, 0x00200411, 0x000 }, | ||
543 | { 0x00000000, 0x00600811, 0x19f }, | ||
544 | { 0x00002256, 0x00204411, 0x000 }, | ||
545 | { 0x0000001a, 0x00294a22, 0x000 }, | ||
546 | { 0x00000000, 0xc0200000, 0x000 }, | ||
547 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
548 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
549 | { 0x00000000, 0xc0200400, 0x000 }, | ||
550 | { 0x0000225c, 0x00204411, 0x000 }, | ||
551 | { 0x00000003, 0x00384a21, 0x000 }, | ||
552 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
553 | { 0x00000001, 0x00204811, 0x000 }, | ||
554 | { 0x0000ffff, 0x40281220, 0x000 }, | ||
555 | { 0x00000010, 0xc0211a20, 0x000 }, | ||
556 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
557 | { 0x00000010, 0xc0211620, 0x000 }, | ||
558 | { 0x00000000, 0x00741465, 0x2a4 }, | ||
559 | { 0x0001a1fd, 0x00604411, 0x2c9 }, | ||
560 | { 0x00000001, 0x00330621, 0x000 }, | ||
561 | { 0x00000000, 0x002f0221, 0x000 }, | ||
562 | { 0x00000000, 0x0cc00000, 0x206 }, | ||
563 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
564 | { 0x00000000, 0x0cc00000, 0x1ff }, | ||
565 | { 0x00000000, 0xc0400400, 0x001 }, | ||
566 | { 0x00000000, 0x00600000, 0x5c5 }, | ||
567 | { 0x00000000, 0x0040040f, 0x200 }, | ||
568 | { 0x00000000, 0x00600000, 0x5b2 }, | ||
569 | { 0x00000000, 0x00600000, 0x5c5 }, | ||
570 | { 0x00000210, 0x00600411, 0x2fe }, | ||
571 | { 0x00000000, 0x00600000, 0x18d }, | ||
572 | { 0x00000000, 0x00600000, 0x189 }, | ||
573 | { 0x00000000, 0x00600000, 0x2a4 }, | ||
574 | { 0x00000000, 0x00600000, 0x28c }, | ||
575 | { 0x93800000, 0x00204411, 0x000 }, | ||
576 | { 0x00000000, 0x00204808, 0x000 }, | ||
577 | { 0x95000000, 0x00204411, 0x000 }, | ||
578 | { 0x00000000, 0x002f022f, 0x000 }, | ||
579 | { 0x00000000, 0x0ce00000, 0x21f }, | ||
580 | { 0x00000000, 0xc0404800, 0x21c }, | ||
581 | { 0x92000000, 0x00204411, 0x000 }, | ||
582 | { 0x00000000, 0xc0204800, 0x000 }, | ||
583 | { 0x00002256, 0x00204411, 0x000 }, | ||
584 | { 0x00000016, 0x00204811, 0x000 }, | ||
585 | { 0x0000225c, 0x00204411, 0x000 }, | ||
586 | { 0x00000003, 0x00204811, 0x000 }, | ||
587 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
588 | { 0x00000001, 0x00204811, 0x000 }, | ||
589 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
590 | { 0x00000000, 0x00600411, 0x2e4 }, | ||
591 | { 0x00000000, 0xc0400400, 0x001 }, | ||
592 | { 0x00000000, 0x00600000, 0x5b2 }, | ||
593 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
594 | { 0x00000000, 0xc0204800, 0x000 }, | ||
595 | { 0x00000000, 0xc0404800, 0x000 }, | ||
596 | { 0x00000000, 0x00600000, 0x00b }, | ||
597 | { 0x00000018, 0x40210a20, 0x000 }, | ||
598 | { 0x00000003, 0x002f0222, 0x000 }, | ||
599 | { 0x00000000, 0x0ae00000, 0x235 }, | ||
600 | { 0x0000001a, 0x0020222d, 0x000 }, | ||
601 | { 0x00080101, 0x00292228, 0x000 }, | ||
602 | { 0x0000001a, 0x00203628, 0x000 }, | ||
603 | { 0x0000a30c, 0x00204411, 0x000 }, | ||
604 | { 0x00000000, 0xc0204800, 0x000 }, | ||
605 | { 0x00000000, 0xc0204800, 0x000 }, | ||
606 | { 0x00000000, 0xc0404800, 0x23a }, | ||
607 | { 0x00000000, 0x00600000, 0x00b }, | ||
608 | { 0x00000010, 0x00600411, 0x2fe }, | ||
609 | { 0x3f800000, 0x00200411, 0x000 }, | ||
610 | { 0x00000000, 0x00600811, 0x19f }, | ||
611 | { 0x0000225c, 0x00204411, 0x000 }, | ||
612 | { 0x00000003, 0x00204811, 0x000 }, | ||
613 | { 0x00000000, 0x00600000, 0x265 }, | ||
614 | { 0x0000001d, 0x00201e2d, 0x000 }, | ||
615 | { 0x00000001, 0x00211e27, 0x000 }, | ||
616 | { 0x00000000, 0x14e00000, 0x253 }, | ||
617 | { 0x00000018, 0x00201e2d, 0x000 }, | ||
618 | { 0x0000ffff, 0x00281e27, 0x000 }, | ||
619 | { 0x00000000, 0x00341c27, 0x000 }, | ||
620 | { 0x00000000, 0x12c00000, 0x248 }, | ||
621 | { 0x00000000, 0x00201c11, 0x000 }, | ||
622 | { 0x00000000, 0x002f00e5, 0x000 }, | ||
623 | { 0x00000000, 0x08c00000, 0x24b }, | ||
624 | { 0x00000000, 0x00201407, 0x000 }, | ||
625 | { 0x00000018, 0x00201e2d, 0x000 }, | ||
626 | { 0x00000010, 0x00211e27, 0x000 }, | ||
627 | { 0x00000000, 0x00341c47, 0x000 }, | ||
628 | { 0x00000000, 0x12c00000, 0x250 }, | ||
629 | { 0x00000000, 0x00201c11, 0x000 }, | ||
630 | { 0x00000000, 0x002f00e6, 0x000 }, | ||
631 | { 0x00000000, 0x08c00000, 0x253 }, | ||
632 | { 0x00000000, 0x00201807, 0x000 }, | ||
633 | { 0x00000000, 0x00600000, 0x2aa }, | ||
634 | { 0x00002256, 0x00204411, 0x000 }, | ||
635 | { 0x00000000, 0x00342023, 0x000 }, | ||
636 | { 0x00000000, 0x12c00000, 0x25b }, | ||
637 | { 0x00000000, 0x00342044, 0x000 }, | ||
638 | { 0x00000000, 0x12c00000, 0x25a }, | ||
639 | { 0x00000016, 0x00404811, 0x25f }, | ||
640 | { 0x00000018, 0x00404811, 0x25f }, | ||
641 | { 0x00000000, 0x00342044, 0x000 }, | ||
642 | { 0x00000000, 0x12c00000, 0x25e }, | ||
643 | { 0x00000017, 0x00404811, 0x25f }, | ||
644 | { 0x00000019, 0x00204811, 0x000 }, | ||
645 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
646 | { 0x00000001, 0x00204811, 0x000 }, | ||
647 | { 0x0001a1fd, 0x00604411, 0x2d2 }, | ||
648 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
649 | { 0x00000000, 0x0cc00000, 0x23f }, | ||
650 | { 0x00000000, 0xc0400400, 0x001 }, | ||
651 | { 0x00000010, 0x40210620, 0x000 }, | ||
652 | { 0x0000ffff, 0xc0280a20, 0x000 }, | ||
653 | { 0x00000010, 0x40210e20, 0x000 }, | ||
654 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
655 | { 0x00000010, 0x40211620, 0x000 }, | ||
656 | { 0x0000ffff, 0xc0881a20, 0x000 }, | ||
657 | { 0x81000000, 0x00204411, 0x000 }, | ||
658 | { 0x00000001, 0x00204811, 0x000 }, | ||
659 | { 0x00042004, 0x00604411, 0x614 }, | ||
660 | { 0x00000000, 0x00600000, 0x5b2 }, | ||
661 | { 0x00000000, 0xc0600000, 0x28c }, | ||
662 | { 0x00000005, 0x00200a2d, 0x000 }, | ||
663 | { 0x00000008, 0x00220a22, 0x000 }, | ||
664 | { 0x00000034, 0x00201a2d, 0x000 }, | ||
665 | { 0x00000024, 0x00201e2d, 0x000 }, | ||
666 | { 0x00007000, 0x00281e27, 0x000 }, | ||
667 | { 0x00000000, 0x00311ce6, 0x000 }, | ||
668 | { 0x00000033, 0x00201a2d, 0x000 }, | ||
669 | { 0x0000000c, 0x00221a26, 0x000 }, | ||
670 | { 0x00000000, 0x002f00e6, 0x000 }, | ||
671 | { 0x00000000, 0x06e00000, 0x27b }, | ||
672 | { 0x00000000, 0x00201c11, 0x000 }, | ||
673 | { 0x00000000, 0x00200c11, 0x000 }, | ||
674 | { 0x00000034, 0x00203623, 0x000 }, | ||
675 | { 0x00000010, 0x00201811, 0x000 }, | ||
676 | { 0x00000000, 0x00691ce2, 0x128 }, | ||
677 | { 0x93800000, 0x00204411, 0x000 }, | ||
678 | { 0x00000000, 0x00204807, 0x000 }, | ||
679 | { 0x95000000, 0x00204411, 0x000 }, | ||
680 | { 0x00000000, 0x002f022f, 0x000 }, | ||
681 | { 0x00000000, 0x0ce00000, 0x286 }, | ||
682 | { 0x00000001, 0x00333e2f, 0x000 }, | ||
683 | { 0x00000000, 0xd9004800, 0x000 }, | ||
684 | { 0x92000000, 0x00204411, 0x000 }, | ||
685 | { 0x00000000, 0xc0204800, 0x000 }, | ||
686 | { 0x00000024, 0x00403627, 0x000 }, | ||
687 | { 0x0000000c, 0xc0220a20, 0x000 }, | ||
688 | { 0x00000032, 0x00203622, 0x000 }, | ||
689 | { 0x00000031, 0xc0403620, 0x000 }, | ||
690 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
691 | { 0x00000009, 0x00204811, 0x000 }, | ||
692 | { 0xa1000000, 0x00204411, 0x000 }, | ||
693 | { 0x00000001, 0x00804811, 0x000 }, | ||
694 | { 0x00000029, 0x00201e2d, 0x000 }, | ||
695 | { 0x00000000, 0x002c1ce3, 0x000 }, | ||
696 | { 0x00000029, 0x00203627, 0x000 }, | ||
697 | { 0x0000002a, 0x00201e2d, 0x000 }, | ||
698 | { 0x00000000, 0x002c1ce4, 0x000 }, | ||
699 | { 0x0000002a, 0x00203627, 0x000 }, | ||
700 | { 0x0000002b, 0x00201e2d, 0x000 }, | ||
701 | { 0x00000000, 0x003120a3, 0x000 }, | ||
702 | { 0x00000000, 0x002d1d07, 0x000 }, | ||
703 | { 0x0000002b, 0x00203627, 0x000 }, | ||
704 | { 0x0000002c, 0x00201e2d, 0x000 }, | ||
705 | { 0x00000000, 0x003120c4, 0x000 }, | ||
706 | { 0x00000000, 0x002d1d07, 0x000 }, | ||
707 | { 0x0000002c, 0x00803627, 0x000 }, | ||
708 | { 0x00000029, 0x00203623, 0x000 }, | ||
709 | { 0x0000002a, 0x00203624, 0x000 }, | ||
710 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
711 | { 0x0000002b, 0x00203627, 0x000 }, | ||
712 | { 0x00000000, 0x00311cc4, 0x000 }, | ||
713 | { 0x0000002c, 0x00803627, 0x000 }, | ||
714 | { 0x00000022, 0x00203627, 0x000 }, | ||
715 | { 0x00000023, 0x00203628, 0x000 }, | ||
716 | { 0x0000001d, 0x00201e2d, 0x000 }, | ||
717 | { 0x00000002, 0x00210227, 0x000 }, | ||
718 | { 0x00000000, 0x14c00000, 0x2c5 }, | ||
719 | { 0x00000000, 0x00400000, 0x2c2 }, | ||
720 | { 0x00000022, 0x00203627, 0x000 }, | ||
721 | { 0x00000023, 0x00203628, 0x000 }, | ||
722 | { 0x0000001d, 0x00201e2d, 0x000 }, | ||
723 | { 0x00000002, 0x00210227, 0x000 }, | ||
724 | { 0x00000000, 0x14e00000, 0x2c2 }, | ||
725 | { 0x00000003, 0x00210227, 0x000 }, | ||
726 | { 0x00000000, 0x14e00000, 0x2c5 }, | ||
727 | { 0x0000002b, 0x00201e2d, 0x000 }, | ||
728 | { 0x00000000, 0x002e00e1, 0x000 }, | ||
729 | { 0x00000000, 0x02c00000, 0x2c5 }, | ||
730 | { 0x00000029, 0x00201e2d, 0x000 }, | ||
731 | { 0x00000000, 0x003120a1, 0x000 }, | ||
732 | { 0x00000000, 0x002e00e8, 0x000 }, | ||
733 | { 0x00000000, 0x06c00000, 0x2c5 }, | ||
734 | { 0x0000002c, 0x00201e2d, 0x000 }, | ||
735 | { 0x00000000, 0x002e00e2, 0x000 }, | ||
736 | { 0x00000000, 0x02c00000, 0x2c5 }, | ||
737 | { 0x0000002a, 0x00201e2d, 0x000 }, | ||
738 | { 0x00000000, 0x003120c2, 0x000 }, | ||
739 | { 0x00000000, 0x002e00e8, 0x000 }, | ||
740 | { 0x00000000, 0x06c00000, 0x2c5 }, | ||
741 | { 0x00000000, 0x00600000, 0x5ed }, | ||
742 | { 0x00000000, 0x00600000, 0x29e }, | ||
743 | { 0x00000000, 0x00400000, 0x2c7 }, | ||
744 | { 0x00000000, 0x00600000, 0x29e }, | ||
745 | { 0x00000000, 0x00600000, 0x5e4 }, | ||
746 | { 0x00000000, 0x00400000, 0x2c7 }, | ||
747 | { 0x00000000, 0x00600000, 0x290 }, | ||
748 | { 0x00000000, 0x00400000, 0x2c7 }, | ||
749 | { 0x00000022, 0x00201e2d, 0x000 }, | ||
750 | { 0x00000023, 0x0080222d, 0x000 }, | ||
751 | { 0x00000010, 0x00221e23, 0x000 }, | ||
752 | { 0x00000000, 0x00294887, 0x000 }, | ||
753 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
754 | { 0x00000010, 0x00221e27, 0x000 }, | ||
755 | { 0x00000000, 0x00294887, 0x000 }, | ||
756 | { 0x00000010, 0x00221e23, 0x000 }, | ||
757 | { 0x00000000, 0x003120c4, 0x000 }, | ||
758 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
759 | { 0x00000000, 0x00894907, 0x000 }, | ||
760 | { 0x00000010, 0x00221e23, 0x000 }, | ||
761 | { 0x00000000, 0x00294887, 0x000 }, | ||
762 | { 0x00000010, 0x00221e21, 0x000 }, | ||
763 | { 0x00000000, 0x00294847, 0x000 }, | ||
764 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
765 | { 0x00000010, 0x00221e27, 0x000 }, | ||
766 | { 0x00000000, 0x00294887, 0x000 }, | ||
767 | { 0x00000000, 0x00311ca1, 0x000 }, | ||
768 | { 0x00000010, 0x00221e27, 0x000 }, | ||
769 | { 0x00000000, 0x00294847, 0x000 }, | ||
770 | { 0x00000010, 0x00221e23, 0x000 }, | ||
771 | { 0x00000000, 0x003120c4, 0x000 }, | ||
772 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
773 | { 0x00000000, 0x00294907, 0x000 }, | ||
774 | { 0x00000010, 0x00221e21, 0x000 }, | ||
775 | { 0x00000000, 0x003120c2, 0x000 }, | ||
776 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
777 | { 0x00000000, 0x00894907, 0x000 }, | ||
778 | { 0x00000010, 0x00221e23, 0x000 }, | ||
779 | { 0x00000000, 0x00294887, 0x000 }, | ||
780 | { 0x00000001, 0x00220a21, 0x000 }, | ||
781 | { 0x00000000, 0x003308a2, 0x000 }, | ||
782 | { 0x00000010, 0x00221e22, 0x000 }, | ||
783 | { 0x00000010, 0x00212222, 0x000 }, | ||
784 | { 0x00000000, 0x00294907, 0x000 }, | ||
785 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
786 | { 0x00000010, 0x00221e27, 0x000 }, | ||
787 | { 0x00000000, 0x00294887, 0x000 }, | ||
788 | { 0x00000001, 0x00220a21, 0x000 }, | ||
789 | { 0x00000000, 0x003008a2, 0x000 }, | ||
790 | { 0x00000010, 0x00221e22, 0x000 }, | ||
791 | { 0x00000010, 0x00212222, 0x000 }, | ||
792 | { 0x00000000, 0x00294907, 0x000 }, | ||
793 | { 0x00000010, 0x00221e23, 0x000 }, | ||
794 | { 0x00000000, 0x003120c4, 0x000 }, | ||
795 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
796 | { 0x00000000, 0x00294907, 0x000 }, | ||
797 | { 0x00000000, 0x003808c5, 0x000 }, | ||
798 | { 0x00000000, 0x00300841, 0x000 }, | ||
799 | { 0x00000001, 0x00220a22, 0x000 }, | ||
800 | { 0x00000000, 0x003308a2, 0x000 }, | ||
801 | { 0x00000010, 0x00221e22, 0x000 }, | ||
802 | { 0x00000010, 0x00212222, 0x000 }, | ||
803 | { 0x00000000, 0x00894907, 0x000 }, | ||
804 | { 0x0000001d, 0x0020222d, 0x000 }, | ||
805 | { 0x00000000, 0x14c00000, 0x301 }, | ||
806 | { 0xffffffef, 0x00280621, 0x000 }, | ||
807 | { 0x0000001a, 0x0020222d, 0x000 }, | ||
808 | { 0x0000f8e0, 0x00204411, 0x000 }, | ||
809 | { 0x00000000, 0x00294901, 0x000 }, | ||
810 | { 0x00000000, 0x00894901, 0x000 }, | ||
811 | { 0x00000000, 0x00204811, 0x000 }, | ||
812 | { 0x00000000, 0x00204811, 0x000 }, | ||
813 | { 0x060a0200, 0x00804811, 0x000 }, | ||
814 | { 0x00000000, 0xc0200000, 0x000 }, | ||
815 | { 0x97000000, 0xc0204411, 0x000 }, | ||
816 | { 0x00000000, 0xc0204811, 0x000 }, | ||
817 | { 0x8a000000, 0x00204411, 0x000 }, | ||
818 | { 0x00000000, 0x00204811, 0x000 }, | ||
819 | { 0x0000225c, 0x00204411, 0x000 }, | ||
820 | { 0x00000000, 0xc0204800, 0x000 }, | ||
821 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
822 | { 0x00000000, 0xc0204800, 0x000 }, | ||
823 | { 0x00000000, 0xc0200400, 0x000 }, | ||
824 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
825 | { 0x97000000, 0x00204411, 0x000 }, | ||
826 | { 0x00000000, 0x00204811, 0x000 }, | ||
827 | { 0x8a000000, 0x00204411, 0x000 }, | ||
828 | { 0x00000000, 0x00204811, 0x000 }, | ||
829 | { 0x0000225c, 0x00204411, 0x000 }, | ||
830 | { 0x00000000, 0xc0204800, 0x000 }, | ||
831 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
832 | { 0x00000000, 0xc0204800, 0x000 }, | ||
833 | { 0x00000000, 0xc0200400, 0x000 }, | ||
834 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
835 | { 0x97000000, 0x00204411, 0x000 }, | ||
836 | { 0x00000000, 0x00204811, 0x000 }, | ||
837 | { 0x8a000000, 0x00204411, 0x000 }, | ||
838 | { 0x00000000, 0x00204811, 0x000 }, | ||
839 | { 0x0000225c, 0x00204411, 0x000 }, | ||
840 | { 0x00000000, 0xc0204800, 0x000 }, | ||
841 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
842 | { 0x00000000, 0xc0204800, 0x000 }, | ||
843 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
844 | { 0x00000000, 0xd9004800, 0x000 }, | ||
845 | { 0x00000000, 0xc0200400, 0x000 }, | ||
846 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
847 | { 0x00002257, 0x00204411, 0x000 }, | ||
848 | { 0x00000003, 0xc0484a20, 0x000 }, | ||
849 | { 0x0000225d, 0x00204411, 0x000 }, | ||
850 | { 0x00000000, 0xc0404800, 0x000 }, | ||
851 | { 0x00000000, 0x00600000, 0x5c5 }, | ||
852 | { 0x00000000, 0xc0200800, 0x000 }, | ||
853 | { 0x0000225c, 0x00204411, 0x000 }, | ||
854 | { 0x00000003, 0x00384a22, 0x000 }, | ||
855 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
856 | { 0x00000000, 0xc0204800, 0x000 }, | ||
857 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
858 | { 0x00000000, 0x002f0222, 0x000 }, | ||
859 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
860 | { 0x00000000, 0x40204800, 0x000 }, | ||
861 | { 0x00000001, 0x40304a20, 0x000 }, | ||
862 | { 0x00000002, 0xc0304a20, 0x000 }, | ||
863 | { 0x00000001, 0x00530a22, 0x334 }, | ||
864 | { 0x0000003f, 0xc0280a20, 0x000 }, | ||
865 | { 0x81000000, 0x00204411, 0x000 }, | ||
866 | { 0x00000001, 0x00204811, 0x000 }, | ||
867 | { 0x000021f8, 0x00204411, 0x000 }, | ||
868 | { 0x00000017, 0x00204811, 0x000 }, | ||
869 | { 0x000421f9, 0x00604411, 0x614 }, | ||
870 | { 0x00000011, 0x00210230, 0x000 }, | ||
871 | { 0x00000000, 0x14e00000, 0x33d }, | ||
872 | { 0x00000014, 0x002f0222, 0x000 }, | ||
873 | { 0x00000000, 0x0cc00000, 0x351 }, | ||
874 | { 0x00002010, 0x00204411, 0x000 }, | ||
875 | { 0x00008000, 0x00204811, 0x000 }, | ||
876 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
877 | { 0x00000000, 0x00204811, 0x000 }, | ||
878 | { 0x00000016, 0x00604811, 0x35e }, | ||
879 | { 0x00002100, 0x00204411, 0x000 }, | ||
880 | { 0x00000000, 0xc0204800, 0x000 }, | ||
881 | { 0x00000000, 0xc0204800, 0x000 }, | ||
882 | { 0x00000000, 0xc0204800, 0x000 }, | ||
883 | { 0x00000000, 0xc0204800, 0x000 }, | ||
884 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
885 | { 0x00000000, 0x00204811, 0x000 }, | ||
886 | { 0x00000000, 0x00404802, 0x000 }, | ||
887 | { 0x00000004, 0x002f0222, 0x000 }, | ||
888 | { 0x00000000, 0x0cc00000, 0x355 }, | ||
889 | { 0x00002010, 0x00204411, 0x000 }, | ||
890 | { 0x00008000, 0x00404811, 0x349 }, | ||
891 | { 0x00000028, 0x002f0222, 0x000 }, | ||
892 | { 0x00000000, 0x0ce00000, 0x349 }, | ||
893 | { 0x00002104, 0x00204411, 0x000 }, | ||
894 | { 0x00000000, 0xc0204800, 0x000 }, | ||
895 | { 0x00000000, 0xc0204800, 0x000 }, | ||
896 | { 0x00000000, 0xc0204800, 0x000 }, | ||
897 | { 0x00000000, 0xc0204800, 0x000 }, | ||
898 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
899 | { 0x00000000, 0x00404802, 0x000 }, | ||
900 | { 0x00000035, 0x00203626, 0x000 }, | ||
901 | { 0x00000049, 0x00201811, 0x000 }, | ||
902 | { 0x00000000, 0x00204811, 0x000 }, | ||
903 | { 0x00000001, 0x00331a26, 0x000 }, | ||
904 | { 0x00000000, 0x002f0226, 0x000 }, | ||
905 | { 0x00000000, 0x0cc00000, 0x360 }, | ||
906 | { 0x00000035, 0x00801a2d, 0x000 }, | ||
907 | { 0x0000003f, 0xc0280a20, 0x000 }, | ||
908 | { 0x00000015, 0x002f0222, 0x000 }, | ||
909 | { 0x00000000, 0x0ce00000, 0x376 }, | ||
910 | { 0x0000001e, 0x002f0222, 0x000 }, | ||
911 | { 0x00000000, 0x0ce00000, 0x380 }, | ||
912 | { 0x00000020, 0x002f0222, 0x000 }, | ||
913 | { 0x00000000, 0x0ce00000, 0x38c }, | ||
914 | { 0x0000000f, 0x002f0222, 0x000 }, | ||
915 | { 0x00000000, 0x0ce00000, 0x398 }, | ||
916 | { 0x00000010, 0x002f0222, 0x000 }, | ||
917 | { 0x00000000, 0x0ce00000, 0x398 }, | ||
918 | { 0x00000006, 0x002f0222, 0x000 }, | ||
919 | { 0x00000000, 0x0ce00000, 0x39a }, | ||
920 | { 0x00000016, 0x002f0222, 0x000 }, | ||
921 | { 0x00000000, 0x0ce00000, 0x39f }, | ||
922 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
923 | { 0x00000000, 0x00404802, 0x000 }, | ||
924 | { 0x08000000, 0x00290a22, 0x000 }, | ||
925 | { 0x00000003, 0x40210e20, 0x000 }, | ||
926 | { 0x0000000c, 0xc0211220, 0x000 }, | ||
927 | { 0x00080000, 0x00281224, 0x000 }, | ||
928 | { 0x00000014, 0xc0221620, 0x000 }, | ||
929 | { 0x00000000, 0x002914a4, 0x000 }, | ||
930 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
931 | { 0x00000000, 0x002948a2, 0x000 }, | ||
932 | { 0x0000a1fe, 0x00204411, 0x000 }, | ||
933 | { 0x00000000, 0x00404803, 0x000 }, | ||
934 | { 0x81000000, 0x00204411, 0x000 }, | ||
935 | { 0x00000001, 0x00204811, 0x000 }, | ||
936 | { 0x000021f8, 0x00204411, 0x000 }, | ||
937 | { 0x00000015, 0x00204811, 0x000 }, | ||
938 | { 0x000421f9, 0x00604411, 0x614 }, | ||
939 | { 0x00000015, 0x00210230, 0x000 }, | ||
940 | { 0x00000000, 0x14e00000, 0x382 }, | ||
941 | { 0x0000210e, 0x00204411, 0x000 }, | ||
942 | { 0x00000000, 0xc0204800, 0x000 }, | ||
943 | { 0x00000000, 0xc0204800, 0x000 }, | ||
944 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
945 | { 0x00000000, 0x00404802, 0x000 }, | ||
946 | { 0x81000000, 0x00204411, 0x000 }, | ||
947 | { 0x00000001, 0x00204811, 0x000 }, | ||
948 | { 0x000021f8, 0x00204411, 0x000 }, | ||
949 | { 0x00000016, 0x00204811, 0x000 }, | ||
950 | { 0x000421f9, 0x00604411, 0x614 }, | ||
951 | { 0x00000003, 0x00210230, 0x000 }, | ||
952 | { 0x00000000, 0x14e00000, 0x38e }, | ||
953 | { 0x00002108, 0x00204411, 0x000 }, | ||
954 | { 0x00000000, 0xc0204800, 0x000 }, | ||
955 | { 0x00000000, 0xc0204800, 0x000 }, | ||
956 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
957 | { 0x00000000, 0x00404802, 0x000 }, | ||
958 | { 0x00002010, 0x00204411, 0x000 }, | ||
959 | { 0x00008000, 0x00404811, 0x000 }, | ||
960 | { 0x00002010, 0x00204411, 0x000 }, | ||
961 | { 0x00008000, 0x00204811, 0x000 }, | ||
962 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
963 | { 0x00000000, 0x00204811, 0x000 }, | ||
964 | { 0x00000006, 0x00404811, 0x000 }, | ||
965 | { 0x00002010, 0x00204411, 0x000 }, | ||
966 | { 0x00008000, 0x00204811, 0x000 }, | ||
967 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
968 | { 0x00000000, 0x00204811, 0x000 }, | ||
969 | { 0x00000016, 0x00604811, 0x35e }, | ||
970 | { 0x00000016, 0x00404811, 0x000 }, | ||
971 | { 0x00000000, 0xc0200800, 0x000 }, | ||
972 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
973 | { 0x0000001d, 0x00210223, 0x000 }, | ||
974 | { 0x00000000, 0x14e00000, 0x3b9 }, | ||
975 | { 0x81000000, 0x00204411, 0x000 }, | ||
976 | { 0x00000001, 0x00204811, 0x000 }, | ||
977 | { 0x000021f8, 0x00204411, 0x000 }, | ||
978 | { 0x00000017, 0x00204811, 0x000 }, | ||
979 | { 0x000421f9, 0x00604411, 0x614 }, | ||
980 | { 0x00000011, 0x00210230, 0x000 }, | ||
981 | { 0x00000000, 0x14e00000, 0x3ab }, | ||
982 | { 0x00002100, 0x00204411, 0x000 }, | ||
983 | { 0x00000000, 0x00204802, 0x000 }, | ||
984 | { 0x00000000, 0x00204803, 0x000 }, | ||
985 | { 0xbabecafe, 0x00204811, 0x000 }, | ||
986 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
987 | { 0x00002010, 0x00204411, 0x000 }, | ||
988 | { 0x00008000, 0x00204811, 0x000 }, | ||
989 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
990 | { 0x00000004, 0x00404811, 0x000 }, | ||
991 | { 0x00002170, 0x00204411, 0x000 }, | ||
992 | { 0x00000000, 0x00204802, 0x000 }, | ||
993 | { 0x00000000, 0x00204803, 0x000 }, | ||
994 | { 0x81000000, 0x00204411, 0x000 }, | ||
995 | { 0x0000000a, 0x00204811, 0x000 }, | ||
996 | { 0x00000000, 0x00200010, 0x000 }, | ||
997 | { 0x00000000, 0x14c00000, 0x3be }, | ||
998 | { 0x8c000000, 0x00204411, 0x000 }, | ||
999 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
1000 | { 0x81000000, 0x00204411, 0x000 }, | ||
1001 | { 0x00000001, 0x00204811, 0x000 }, | ||
1002 | { 0x00003fff, 0x40280a20, 0x000 }, | ||
1003 | { 0x80000000, 0x40280e20, 0x000 }, | ||
1004 | { 0x40000000, 0xc0281220, 0x000 }, | ||
1005 | { 0x00040000, 0x00694622, 0x614 }, | ||
1006 | { 0x00000000, 0x00201410, 0x000 }, | ||
1007 | { 0x00000000, 0x002f0223, 0x000 }, | ||
1008 | { 0x00000000, 0x0cc00000, 0x3cc }, | ||
1009 | { 0x00000000, 0xc0401800, 0x3cf }, | ||
1010 | { 0x00003fff, 0xc0281a20, 0x000 }, | ||
1011 | { 0x00040000, 0x00694626, 0x614 }, | ||
1012 | { 0x00000000, 0x00201810, 0x000 }, | ||
1013 | { 0x00000000, 0x002f0224, 0x000 }, | ||
1014 | { 0x00000000, 0x0cc00000, 0x3d2 }, | ||
1015 | { 0x00000000, 0xc0401c00, 0x3d5 }, | ||
1016 | { 0x00003fff, 0xc0281e20, 0x000 }, | ||
1017 | { 0x00040000, 0x00694627, 0x614 }, | ||
1018 | { 0x00000000, 0x00201c10, 0x000 }, | ||
1019 | { 0x00000000, 0x00204402, 0x000 }, | ||
1020 | { 0x00000000, 0x002820c5, 0x000 }, | ||
1021 | { 0x00000000, 0x004948e8, 0x000 }, | ||
1022 | { 0xa5800000, 0x00200811, 0x000 }, | ||
1023 | { 0x00002000, 0x00200c11, 0x000 }, | ||
1024 | { 0x83000000, 0x00604411, 0x3fd }, | ||
1025 | { 0x00000000, 0x00204402, 0x000 }, | ||
1026 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1027 | { 0x00000000, 0x40204800, 0x000 }, | ||
1028 | { 0x0000001f, 0xc0210220, 0x000 }, | ||
1029 | { 0x00000000, 0x14c00000, 0x3e2 }, | ||
1030 | { 0x00002010, 0x00204411, 0x000 }, | ||
1031 | { 0x00008000, 0x00204811, 0x000 }, | ||
1032 | { 0x0000ffff, 0xc0481220, 0x3ea }, | ||
1033 | { 0xa7800000, 0x00200811, 0x000 }, | ||
1034 | { 0x0000a000, 0x00200c11, 0x000 }, | ||
1035 | { 0x83000000, 0x00604411, 0x3fd }, | ||
1036 | { 0x00000000, 0x00204402, 0x000 }, | ||
1037 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1038 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1039 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
1040 | { 0x83000000, 0x00204411, 0x000 }, | ||
1041 | { 0x00000000, 0x00304883, 0x000 }, | ||
1042 | { 0x84000000, 0x00204411, 0x000 }, | ||
1043 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1044 | { 0x00000000, 0x1d000000, 0x000 }, | ||
1045 | { 0x83000000, 0x00604411, 0x3fd }, | ||
1046 | { 0x00000000, 0xc0400400, 0x001 }, | ||
1047 | { 0xa9800000, 0x00200811, 0x000 }, | ||
1048 | { 0x0000c000, 0x00400c11, 0x3e5 }, | ||
1049 | { 0xab800000, 0x00200811, 0x000 }, | ||
1050 | { 0x0000f8e0, 0x00400c11, 0x3e5 }, | ||
1051 | { 0xad800000, 0x00200811, 0x000 }, | ||
1052 | { 0x0000f880, 0x00400c11, 0x3e5 }, | ||
1053 | { 0xb3800000, 0x00200811, 0x000 }, | ||
1054 | { 0x0000f3fc, 0x00400c11, 0x3e5 }, | ||
1055 | { 0xaf800000, 0x00200811, 0x000 }, | ||
1056 | { 0x0000e000, 0x00400c11, 0x3e5 }, | ||
1057 | { 0xb1800000, 0x00200811, 0x000 }, | ||
1058 | { 0x0000f000, 0x00400c11, 0x3e5 }, | ||
1059 | { 0x83000000, 0x00204411, 0x000 }, | ||
1060 | { 0x00002148, 0x00204811, 0x000 }, | ||
1061 | { 0x84000000, 0x00204411, 0x000 }, | ||
1062 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1063 | { 0x00000000, 0x1d000000, 0x000 }, | ||
1064 | { 0x00000000, 0x00800000, 0x000 }, | ||
1065 | { 0x00182000, 0xc0304620, 0x000 }, | ||
1066 | { 0x00000000, 0xd9004800, 0x000 }, | ||
1067 | { 0x00000000, 0xc0200400, 0x000 }, | ||
1068 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
1069 | { 0x0018a000, 0xc0304620, 0x000 }, | ||
1070 | { 0x00000000, 0xd9004800, 0x000 }, | ||
1071 | { 0x00000000, 0xc0200400, 0x000 }, | ||
1072 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
1073 | { 0x0018c000, 0xc0304620, 0x000 }, | ||
1074 | { 0x00000000, 0xd9004800, 0x000 }, | ||
1075 | { 0x00000000, 0xc0200400, 0x000 }, | ||
1076 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
1077 | { 0x0018f8e0, 0xc0304620, 0x000 }, | ||
1078 | { 0x00000000, 0xd9004800, 0x000 }, | ||
1079 | { 0x00000000, 0xc0200400, 0x000 }, | ||
1080 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
1081 | { 0x0018f880, 0xc0304620, 0x000 }, | ||
1082 | { 0x00000000, 0xd9004800, 0x000 }, | ||
1083 | { 0x00000000, 0xc0200400, 0x000 }, | ||
1084 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
1085 | { 0x0018e000, 0xc0304620, 0x000 }, | ||
1086 | { 0x00000000, 0xd9004800, 0x000 }, | ||
1087 | { 0x00000000, 0xc0200400, 0x000 }, | ||
1088 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
1089 | { 0x0018f000, 0xc0304620, 0x000 }, | ||
1090 | { 0x00000000, 0xd9004800, 0x000 }, | ||
1091 | { 0x00000000, 0xc0200400, 0x000 }, | ||
1092 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
1093 | { 0x0018f3fc, 0xc0304620, 0x000 }, | ||
1094 | { 0x00000000, 0xd9004800, 0x000 }, | ||
1095 | { 0x00000000, 0xc0200400, 0x000 }, | ||
1096 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
1097 | { 0x86000000, 0x00204411, 0x000 }, | ||
1098 | { 0x00000000, 0x00404801, 0x000 }, | ||
1099 | { 0x85000000, 0x00204411, 0x000 }, | ||
1100 | { 0x00000000, 0x00404801, 0x000 }, | ||
1101 | { 0x0000217c, 0x00204411, 0x000 }, | ||
1102 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1103 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1104 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1105 | { 0x81000000, 0x00204411, 0x000 }, | ||
1106 | { 0x00000001, 0x00204811, 0x000 }, | ||
1107 | { 0x00000000, 0xc0200800, 0x000 }, | ||
1108 | { 0x00000000, 0x17000000, 0x000 }, | ||
1109 | { 0x0004217f, 0x00604411, 0x614 }, | ||
1110 | { 0x0000001f, 0x00210230, 0x000 }, | ||
1111 | { 0x00000000, 0x14c00000, 0x000 }, | ||
1112 | { 0x00000000, 0x00404c02, 0x42e }, | ||
1113 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
1114 | { 0x00000000, 0xc0201000, 0x000 }, | ||
1115 | { 0x00000000, 0xc0201400, 0x000 }, | ||
1116 | { 0x00000000, 0xc0201800, 0x000 }, | ||
1117 | { 0x00000000, 0xc0201c00, 0x000 }, | ||
1118 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
1119 | { 0x00004500, 0x002f0222, 0x000 }, | ||
1120 | { 0x00000000, 0x0ce00000, 0x43c }, | ||
1121 | { 0x00000000, 0xc0202000, 0x000 }, | ||
1122 | { 0x00000000, 0x17000000, 0x000 }, | ||
1123 | { 0x00000010, 0x00280a23, 0x000 }, | ||
1124 | { 0x00000010, 0x002f0222, 0x000 }, | ||
1125 | { 0x00000000, 0x0ce00000, 0x444 }, | ||
1126 | { 0x81000000, 0x00204411, 0x000 }, | ||
1127 | { 0x00000001, 0x00204811, 0x000 }, | ||
1128 | { 0x00040000, 0x00694624, 0x614 }, | ||
1129 | { 0x00000000, 0x00400000, 0x44d }, | ||
1130 | { 0x81000000, 0x00204411, 0x000 }, | ||
1131 | { 0x00000000, 0x00204811, 0x000 }, | ||
1132 | { 0x0000216d, 0x00204411, 0x000 }, | ||
1133 | { 0x00000000, 0x00204804, 0x000 }, | ||
1134 | { 0x00000000, 0x00204805, 0x000 }, | ||
1135 | { 0x00000000, 0x1ac00000, 0x449 }, | ||
1136 | { 0x9e000000, 0x00204411, 0x000 }, | ||
1137 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
1138 | { 0x00000000, 0x1ae00000, 0x44c }, | ||
1139 | { 0x00000000, 0x002824f0, 0x000 }, | ||
1140 | { 0x00000007, 0x00280a23, 0x000 }, | ||
1141 | { 0x00000001, 0x002f0222, 0x000 }, | ||
1142 | { 0x00000000, 0x0ae00000, 0x454 }, | ||
1143 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
1144 | { 0x00000000, 0x04e00000, 0x46d }, | ||
1145 | { 0x00000000, 0x00400000, 0x47a }, | ||
1146 | { 0x00000002, 0x002f0222, 0x000 }, | ||
1147 | { 0x00000000, 0x0ae00000, 0x459 }, | ||
1148 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
1149 | { 0x00000000, 0x02e00000, 0x46d }, | ||
1150 | { 0x00000000, 0x00400000, 0x47a }, | ||
1151 | { 0x00000003, 0x002f0222, 0x000 }, | ||
1152 | { 0x00000000, 0x0ae00000, 0x45e }, | ||
1153 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
1154 | { 0x00000000, 0x0ce00000, 0x46d }, | ||
1155 | { 0x00000000, 0x00400000, 0x47a }, | ||
1156 | { 0x00000004, 0x002f0222, 0x000 }, | ||
1157 | { 0x00000000, 0x0ae00000, 0x463 }, | ||
1158 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
1159 | { 0x00000000, 0x0ae00000, 0x46d }, | ||
1160 | { 0x00000000, 0x00400000, 0x47a }, | ||
1161 | { 0x00000005, 0x002f0222, 0x000 }, | ||
1162 | { 0x00000000, 0x0ae00000, 0x468 }, | ||
1163 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
1164 | { 0x00000000, 0x06e00000, 0x46d }, | ||
1165 | { 0x00000000, 0x00400000, 0x47a }, | ||
1166 | { 0x00000006, 0x002f0222, 0x000 }, | ||
1167 | { 0x00000000, 0x0ae00000, 0x46d }, | ||
1168 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
1169 | { 0x00000000, 0x08e00000, 0x46d }, | ||
1170 | { 0x00000000, 0x00400000, 0x47a }, | ||
1171 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
1172 | { 0x00004500, 0x002f0222, 0x000 }, | ||
1173 | { 0x00000000, 0x0ae00000, 0x000 }, | ||
1174 | { 0x00000008, 0x00210a23, 0x000 }, | ||
1175 | { 0x00000000, 0x14c00000, 0x477 }, | ||
1176 | { 0x00002169, 0x00204411, 0x000 }, | ||
1177 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1178 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1179 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1180 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
1181 | { 0x00000000, 0xc0204400, 0x000 }, | ||
1182 | { 0x00000000, 0xc0200000, 0x000 }, | ||
1183 | { 0x00000000, 0xc0404800, 0x000 }, | ||
1184 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
1185 | { 0x00004500, 0x002f0222, 0x000 }, | ||
1186 | { 0x00000000, 0x0ae00000, 0x480 }, | ||
1187 | { 0x00000000, 0xc0200000, 0x000 }, | ||
1188 | { 0x00000000, 0xc0200000, 0x000 }, | ||
1189 | { 0x00000000, 0xc0400000, 0x000 }, | ||
1190 | { 0x00000000, 0x00404c08, 0x43c }, | ||
1191 | { 0x00000000, 0xc0200800, 0x000 }, | ||
1192 | { 0x00000010, 0x40210e20, 0x000 }, | ||
1193 | { 0x00000011, 0x40211220, 0x000 }, | ||
1194 | { 0x00000012, 0x40211620, 0x000 }, | ||
1195 | { 0x00002169, 0x00204411, 0x000 }, | ||
1196 | { 0x00000000, 0x00204802, 0x000 }, | ||
1197 | { 0x00000000, 0x00210225, 0x000 }, | ||
1198 | { 0x00000000, 0x14e00000, 0x48a }, | ||
1199 | { 0x00040000, 0xc0494a20, 0x48b }, | ||
1200 | { 0xfffbffff, 0xc0284a20, 0x000 }, | ||
1201 | { 0x00000000, 0x00210223, 0x000 }, | ||
1202 | { 0x00000000, 0x14e00000, 0x497 }, | ||
1203 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1204 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1205 | { 0x00000000, 0x00210224, 0x000 }, | ||
1206 | { 0x00000000, 0x14c00000, 0x000 }, | ||
1207 | { 0x81000000, 0x00204411, 0x000 }, | ||
1208 | { 0x0000000c, 0x00204811, 0x000 }, | ||
1209 | { 0x00000000, 0x00200010, 0x000 }, | ||
1210 | { 0x00000000, 0x14c00000, 0x493 }, | ||
1211 | { 0xa0000000, 0x00204411, 0x000 }, | ||
1212 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
1213 | { 0x81000000, 0x00204411, 0x000 }, | ||
1214 | { 0x00000004, 0x00204811, 0x000 }, | ||
1215 | { 0x0000216b, 0x00204411, 0x000 }, | ||
1216 | { 0x00000000, 0xc0204810, 0x000 }, | ||
1217 | { 0x81000000, 0x00204411, 0x000 }, | ||
1218 | { 0x00000005, 0x00204811, 0x000 }, | ||
1219 | { 0x0000216c, 0x00204411, 0x000 }, | ||
1220 | { 0x00000000, 0xc0204810, 0x000 }, | ||
1221 | { 0x00000000, 0x002f0224, 0x000 }, | ||
1222 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
1223 | { 0x00000000, 0x00400000, 0x491 }, | ||
1224 | { 0x00000000, 0xc0210a20, 0x000 }, | ||
1225 | { 0x00000000, 0x14c00000, 0x4ae }, | ||
1226 | { 0x81000000, 0x00204411, 0x000 }, | ||
1227 | { 0x00000000, 0x00204811, 0x000 }, | ||
1228 | { 0x0000216d, 0x00204411, 0x000 }, | ||
1229 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1230 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1231 | { 0x00000000, 0x1ac00000, 0x4a9 }, | ||
1232 | { 0x9e000000, 0x00204411, 0x000 }, | ||
1233 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
1234 | { 0x00000000, 0x1ae00000, 0x4ac }, | ||
1235 | { 0x00000000, 0x00400000, 0x4b2 }, | ||
1236 | { 0x81000000, 0x00204411, 0x000 }, | ||
1237 | { 0x00000001, 0x00204811, 0x000 }, | ||
1238 | { 0x00040000, 0xc0294620, 0x000 }, | ||
1239 | { 0x00000000, 0xc0600000, 0x614 }, | ||
1240 | { 0x00000001, 0x00210222, 0x000 }, | ||
1241 | { 0x00000000, 0x14c00000, 0x4b9 }, | ||
1242 | { 0x00002169, 0x00204411, 0x000 }, | ||
1243 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1244 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1245 | { 0x00000000, 0x00204810, 0x000 }, | ||
1246 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
1247 | { 0x00000000, 0xc0204400, 0x000 }, | ||
1248 | { 0x00000000, 0xc0404810, 0x000 }, | ||
1249 | { 0x81000000, 0x00204411, 0x000 }, | ||
1250 | { 0x00000001, 0x00204811, 0x000 }, | ||
1251 | { 0x000021f8, 0x00204411, 0x000 }, | ||
1252 | { 0x0000000d, 0x00204811, 0x000 }, | ||
1253 | { 0x000421f9, 0x00604411, 0x614 }, | ||
1254 | { 0x00000000, 0x00210230, 0x000 }, | ||
1255 | { 0x00000000, 0x14c00000, 0x4bb }, | ||
1256 | { 0x00002180, 0x00204411, 0x000 }, | ||
1257 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1258 | { 0x00000000, 0xc0200000, 0x000 }, | ||
1259 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1260 | { 0x00000000, 0xc0200000, 0x000 }, | ||
1261 | { 0x00000000, 0xc0404800, 0x000 }, | ||
1262 | { 0x00000003, 0x00333e2f, 0x000 }, | ||
1263 | { 0x00000001, 0x00210221, 0x000 }, | ||
1264 | { 0x00000000, 0x14e00000, 0x4eb }, | ||
1265 | { 0x00000035, 0x00200a2d, 0x000 }, | ||
1266 | { 0x00040000, 0x18e00c11, 0x4da }, | ||
1267 | { 0x00000001, 0x00333e2f, 0x000 }, | ||
1268 | { 0x00002169, 0x00204411, 0x000 }, | ||
1269 | { 0x00000000, 0x00204802, 0x000 }, | ||
1270 | { 0x00000000, 0x00204803, 0x000 }, | ||
1271 | { 0x00000008, 0x00300a22, 0x000 }, | ||
1272 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1273 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1274 | { 0x00002169, 0x00204411, 0x000 }, | ||
1275 | { 0x00000000, 0x00204802, 0x000 }, | ||
1276 | { 0x00000000, 0x00204803, 0x000 }, | ||
1277 | { 0x00000008, 0x00300a22, 0x000 }, | ||
1278 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1279 | { 0x00000000, 0xd8c04800, 0x4ce }, | ||
1280 | { 0x00002169, 0x00204411, 0x000 }, | ||
1281 | { 0x00000000, 0x00204802, 0x000 }, | ||
1282 | { 0x00000000, 0x00204803, 0x000 }, | ||
1283 | { 0x00000008, 0x00300a22, 0x000 }, | ||
1284 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1285 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1286 | { 0x00000036, 0x0020122d, 0x000 }, | ||
1287 | { 0x00000000, 0x00290c83, 0x000 }, | ||
1288 | { 0x00002169, 0x00204411, 0x000 }, | ||
1289 | { 0x00000000, 0x00204802, 0x000 }, | ||
1290 | { 0x00000000, 0x00204803, 0x000 }, | ||
1291 | { 0x00000008, 0x00300a22, 0x000 }, | ||
1292 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1293 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1294 | { 0x00000011, 0x00210224, 0x000 }, | ||
1295 | { 0x00000000, 0x14c00000, 0x000 }, | ||
1296 | { 0x00000000, 0x00400000, 0x491 }, | ||
1297 | { 0x00000035, 0xc0203620, 0x000 }, | ||
1298 | { 0x00000036, 0xc0403620, 0x000 }, | ||
1299 | { 0x0000304a, 0x00204411, 0x000 }, | ||
1300 | { 0xe0000000, 0xc0484a20, 0x000 }, | ||
1301 | { 0x0000000f, 0x00210221, 0x000 }, | ||
1302 | { 0x00000000, 0x14c00000, 0x4f2 }, | ||
1303 | { 0x00000000, 0x00600000, 0x00b }, | ||
1304 | { 0x00000000, 0xd9000000, 0x000 }, | ||
1305 | { 0x00000000, 0xc0400400, 0x001 }, | ||
1306 | { 0x81000000, 0x00204411, 0x000 }, | ||
1307 | { 0x00000002, 0x00204811, 0x000 }, | ||
1308 | { 0x000000ff, 0x00280e30, 0x000 }, | ||
1309 | { 0x00000000, 0x002f0223, 0x000 }, | ||
1310 | { 0x00000000, 0x0cc00000, 0x4f6 }, | ||
1311 | { 0x00000000, 0xc0200800, 0x000 }, | ||
1312 | { 0x00000000, 0x14c00000, 0x50b }, | ||
1313 | { 0x00000000, 0x00200c11, 0x000 }, | ||
1314 | { 0x00000024, 0x00203623, 0x000 }, | ||
1315 | { 0x00000034, 0x00203623, 0x000 }, | ||
1316 | { 0x00000032, 0x00203623, 0x000 }, | ||
1317 | { 0x00000031, 0x00203623, 0x000 }, | ||
1318 | { 0x0000001d, 0x00203623, 0x000 }, | ||
1319 | { 0x0000002d, 0x00203623, 0x000 }, | ||
1320 | { 0x0000002e, 0x00203623, 0x000 }, | ||
1321 | { 0x0000001b, 0x00203623, 0x000 }, | ||
1322 | { 0x0000001c, 0x00203623, 0x000 }, | ||
1323 | { 0xffffe000, 0x00200c11, 0x000 }, | ||
1324 | { 0x00000029, 0x00203623, 0x000 }, | ||
1325 | { 0x0000002a, 0x00203623, 0x000 }, | ||
1326 | { 0x00001fff, 0x00200c11, 0x000 }, | ||
1327 | { 0x0000002b, 0x00203623, 0x000 }, | ||
1328 | { 0x0000002c, 0x00203623, 0x000 }, | ||
1329 | { 0xf1ffffff, 0x00283a2e, 0x000 }, | ||
1330 | { 0x0000001a, 0xc0220e20, 0x000 }, | ||
1331 | { 0x00000000, 0x0029386e, 0x000 }, | ||
1332 | { 0x81000000, 0x00204411, 0x000 }, | ||
1333 | { 0x00000006, 0x00204811, 0x000 }, | ||
1334 | { 0x00000033, 0x40203620, 0x000 }, | ||
1335 | { 0x87000000, 0x00204411, 0x000 }, | ||
1336 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1337 | { 0x0000a1f4, 0x00204411, 0x000 }, | ||
1338 | { 0x00000000, 0x00204810, 0x000 }, | ||
1339 | { 0x9d000000, 0x00204411, 0x000 }, | ||
1340 | { 0x0000001f, 0x40214a20, 0x000 }, | ||
1341 | { 0x96000000, 0x00204411, 0x000 }, | ||
1342 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1343 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
1344 | { 0x00000000, 0xc0201000, 0x000 }, | ||
1345 | { 0x0000001f, 0x00211624, 0x000 }, | ||
1346 | { 0x00000000, 0x14c00000, 0x000 }, | ||
1347 | { 0x00000025, 0x00203623, 0x000 }, | ||
1348 | { 0x00000003, 0x00281e23, 0x000 }, | ||
1349 | { 0x00000008, 0x00222223, 0x000 }, | ||
1350 | { 0xfffff000, 0x00282228, 0x000 }, | ||
1351 | { 0x00000000, 0x002920e8, 0x000 }, | ||
1352 | { 0x00000027, 0x00203628, 0x000 }, | ||
1353 | { 0x00000018, 0x00211e23, 0x000 }, | ||
1354 | { 0x00000028, 0x00203627, 0x000 }, | ||
1355 | { 0x00000002, 0x00221624, 0x000 }, | ||
1356 | { 0x00000000, 0x003014a8, 0x000 }, | ||
1357 | { 0x00000026, 0x00203625, 0x000 }, | ||
1358 | { 0x00000003, 0x00211a24, 0x000 }, | ||
1359 | { 0x10000000, 0x00281a26, 0x000 }, | ||
1360 | { 0xefffffff, 0x00283a2e, 0x000 }, | ||
1361 | { 0x00000000, 0x004938ce, 0x602 }, | ||
1362 | { 0x00000001, 0x40280a20, 0x000 }, | ||
1363 | { 0x00000006, 0x40280e20, 0x000 }, | ||
1364 | { 0x00000300, 0xc0281220, 0x000 }, | ||
1365 | { 0x00000008, 0x00211224, 0x000 }, | ||
1366 | { 0x00000000, 0xc0201620, 0x000 }, | ||
1367 | { 0x00000000, 0xc0201a20, 0x000 }, | ||
1368 | { 0x00000000, 0x00210222, 0x000 }, | ||
1369 | { 0x00000000, 0x14c00000, 0x541 }, | ||
1370 | { 0x81000000, 0x00204411, 0x000 }, | ||
1371 | { 0x00000001, 0x00204811, 0x000 }, | ||
1372 | { 0x00002258, 0x00300a24, 0x000 }, | ||
1373 | { 0x00040000, 0x00694622, 0x614 }, | ||
1374 | { 0x00002169, 0x00204411, 0x000 }, | ||
1375 | { 0x00000000, 0x00204805, 0x000 }, | ||
1376 | { 0x00020000, 0x00294a26, 0x000 }, | ||
1377 | { 0x00000000, 0x00204810, 0x000 }, | ||
1378 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
1379 | { 0x00000002, 0x002f0223, 0x000 }, | ||
1380 | { 0x00000000, 0x0cc00000, 0x549 }, | ||
1381 | { 0x00000000, 0xc0201c10, 0x000 }, | ||
1382 | { 0x00000000, 0xc0400000, 0x55b }, | ||
1383 | { 0x00000002, 0x002f0223, 0x000 }, | ||
1384 | { 0x00000000, 0x0cc00000, 0x549 }, | ||
1385 | { 0x81000000, 0x00204411, 0x000 }, | ||
1386 | { 0x00000001, 0x00204811, 0x000 }, | ||
1387 | { 0x00002258, 0x00300a24, 0x000 }, | ||
1388 | { 0x00040000, 0x00694622, 0x614 }, | ||
1389 | { 0x00000000, 0xc0201c10, 0x000 }, | ||
1390 | { 0x00000000, 0xc0400000, 0x55b }, | ||
1391 | { 0x00000000, 0x002f0223, 0x000 }, | ||
1392 | { 0x00000000, 0x0cc00000, 0x54d }, | ||
1393 | { 0x00000000, 0xc0201c00, 0x000 }, | ||
1394 | { 0x00000000, 0xc0400000, 0x55b }, | ||
1395 | { 0x00000004, 0x002f0223, 0x000 }, | ||
1396 | { 0x00000000, 0x0cc00000, 0x559 }, | ||
1397 | { 0x81000000, 0x00204411, 0x000 }, | ||
1398 | { 0x00000000, 0x00204811, 0x000 }, | ||
1399 | { 0x0000216d, 0x00204411, 0x000 }, | ||
1400 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1401 | { 0x00000000, 0xc0204800, 0x000 }, | ||
1402 | { 0x00000000, 0x1ac00000, 0x554 }, | ||
1403 | { 0x9e000000, 0x00204411, 0x000 }, | ||
1404 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
1405 | { 0x00000000, 0x1ae00000, 0x557 }, | ||
1406 | { 0x00000000, 0x00401c10, 0x55b }, | ||
1407 | { 0x00000000, 0xc0200000, 0x000 }, | ||
1408 | { 0x00000000, 0xc0400000, 0x000 }, | ||
1409 | { 0x00000000, 0x0ee00000, 0x55d }, | ||
1410 | { 0x00000000, 0x00600000, 0x5a4 }, | ||
1411 | { 0x00000000, 0x002f0224, 0x000 }, | ||
1412 | { 0x00000000, 0x0cc00000, 0x56d }, | ||
1413 | { 0x0000a2b7, 0x00204411, 0x000 }, | ||
1414 | { 0x00000000, 0x00204807, 0x000 }, | ||
1415 | { 0x81000000, 0x00204411, 0x000 }, | ||
1416 | { 0x00000001, 0x00204811, 0x000 }, | ||
1417 | { 0x0004a2b6, 0x00604411, 0x614 }, | ||
1418 | { 0x0000001a, 0x00212230, 0x000 }, | ||
1419 | { 0x00000006, 0x00222630, 0x000 }, | ||
1420 | { 0x0000a2c4, 0x00204411, 0x000 }, | ||
1421 | { 0x00000000, 0x003048e9, 0x000 }, | ||
1422 | { 0x00000000, 0x00e00000, 0x56b }, | ||
1423 | { 0x0000a2d1, 0x00204411, 0x000 }, | ||
1424 | { 0x00000000, 0x00404808, 0x000 }, | ||
1425 | { 0x0000a2d1, 0x00204411, 0x000 }, | ||
1426 | { 0x00000001, 0x00504a28, 0x000 }, | ||
1427 | { 0x00000001, 0x002f0224, 0x000 }, | ||
1428 | { 0x00000000, 0x0cc00000, 0x57d }, | ||
1429 | { 0x0000a2bb, 0x00204411, 0x000 }, | ||
1430 | { 0x00000000, 0x00204807, 0x000 }, | ||
1431 | { 0x81000000, 0x00204411, 0x000 }, | ||
1432 | { 0x00000001, 0x00204811, 0x000 }, | ||
1433 | { 0x0004a2ba, 0x00604411, 0x614 }, | ||
1434 | { 0x0000001a, 0x00212230, 0x000 }, | ||
1435 | { 0x00000006, 0x00222630, 0x000 }, | ||
1436 | { 0x0000a2c5, 0x00204411, 0x000 }, | ||
1437 | { 0x00000000, 0x003048e9, 0x000 }, | ||
1438 | { 0x00000000, 0x00e00000, 0x57b }, | ||
1439 | { 0x0000a2d2, 0x00204411, 0x000 }, | ||
1440 | { 0x00000000, 0x00404808, 0x000 }, | ||
1441 | { 0x0000a2d2, 0x00204411, 0x000 }, | ||
1442 | { 0x00000001, 0x00504a28, 0x000 }, | ||
1443 | { 0x00000002, 0x002f0224, 0x000 }, | ||
1444 | { 0x00000000, 0x0cc00000, 0x58d }, | ||
1445 | { 0x0000a2bf, 0x00204411, 0x000 }, | ||
1446 | { 0x00000000, 0x00204807, 0x000 }, | ||
1447 | { 0x81000000, 0x00204411, 0x000 }, | ||
1448 | { 0x00000001, 0x00204811, 0x000 }, | ||
1449 | { 0x0004a2be, 0x00604411, 0x614 }, | ||
1450 | { 0x0000001a, 0x00212230, 0x000 }, | ||
1451 | { 0x00000006, 0x00222630, 0x000 }, | ||
1452 | { 0x0000a2c6, 0x00204411, 0x000 }, | ||
1453 | { 0x00000000, 0x003048e9, 0x000 }, | ||
1454 | { 0x00000000, 0x00e00000, 0x58b }, | ||
1455 | { 0x0000a2d3, 0x00204411, 0x000 }, | ||
1456 | { 0x00000000, 0x00404808, 0x000 }, | ||
1457 | { 0x0000a2d3, 0x00204411, 0x000 }, | ||
1458 | { 0x00000001, 0x00504a28, 0x000 }, | ||
1459 | { 0x0000a2c3, 0x00204411, 0x000 }, | ||
1460 | { 0x00000000, 0x00204807, 0x000 }, | ||
1461 | { 0x81000000, 0x00204411, 0x000 }, | ||
1462 | { 0x00000001, 0x00204811, 0x000 }, | ||
1463 | { 0x0004a2c2, 0x00604411, 0x614 }, | ||
1464 | { 0x0000001a, 0x00212230, 0x000 }, | ||
1465 | { 0x00000006, 0x00222630, 0x000 }, | ||
1466 | { 0x0000a2c7, 0x00204411, 0x000 }, | ||
1467 | { 0x00000000, 0x003048e9, 0x000 }, | ||
1468 | { 0x00000000, 0x00e00000, 0x599 }, | ||
1469 | { 0x0000a2d4, 0x00204411, 0x000 }, | ||
1470 | { 0x00000000, 0x00404808, 0x000 }, | ||
1471 | { 0x0000a2d4, 0x00204411, 0x000 }, | ||
1472 | { 0x00000001, 0x00504a28, 0x000 }, | ||
1473 | { 0x85000000, 0x00204411, 0x000 }, | ||
1474 | { 0x00000000, 0x00204801, 0x000 }, | ||
1475 | { 0x0000304a, 0x00204411, 0x000 }, | ||
1476 | { 0x01000000, 0x00204811, 0x000 }, | ||
1477 | { 0x00000000, 0x00400000, 0x59f }, | ||
1478 | { 0xa4000000, 0xc0204411, 0x000 }, | ||
1479 | { 0x00000000, 0xc0404800, 0x000 }, | ||
1480 | { 0x00000000, 0xc0600000, 0x5a4 }, | ||
1481 | { 0x00000000, 0xc0400400, 0x001 }, | ||
1482 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
1483 | { 0x00000000, 0x00204811, 0x000 }, | ||
1484 | { 0x00000000, 0x00204811, 0x000 }, | ||
1485 | { 0x00000000, 0x00204811, 0x000 }, | ||
1486 | { 0x00000000, 0x00204811, 0x000 }, | ||
1487 | { 0x00000005, 0x00204811, 0x000 }, | ||
1488 | { 0x0000a1f4, 0x00204411, 0x000 }, | ||
1489 | { 0x00000000, 0x00204811, 0x000 }, | ||
1490 | { 0x88000000, 0x00204411, 0x000 }, | ||
1491 | { 0x00000001, 0x00204811, 0x000 }, | ||
1492 | { 0xff000000, 0x00204411, 0x000 }, | ||
1493 | { 0x00000000, 0x00204811, 0x000 }, | ||
1494 | { 0x00000001, 0x00204811, 0x000 }, | ||
1495 | { 0x00000002, 0x00804811, 0x000 }, | ||
1496 | { 0x00000000, 0x0ee00000, 0x5b7 }, | ||
1497 | { 0x00001000, 0x00200811, 0x000 }, | ||
1498 | { 0x00000034, 0x00203622, 0x000 }, | ||
1499 | { 0x00000000, 0x00600000, 0x5bb }, | ||
1500 | { 0x00000000, 0x00600000, 0x5a4 }, | ||
1501 | { 0x98000000, 0x00204411, 0x000 }, | ||
1502 | { 0x00000000, 0x00804811, 0x000 }, | ||
1503 | { 0x00000000, 0xc0600000, 0x5bb }, | ||
1504 | { 0x00000000, 0xc0400400, 0x001 }, | ||
1505 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
1506 | { 0x00000022, 0x00204811, 0x000 }, | ||
1507 | { 0x89000000, 0x00204411, 0x000 }, | ||
1508 | { 0x00000001, 0x00204811, 0x000 }, | ||
1509 | { 0xff000000, 0x00204411, 0x000 }, | ||
1510 | { 0x00000000, 0x00204811, 0x000 }, | ||
1511 | { 0x00000001, 0x00204811, 0x000 }, | ||
1512 | { 0x00000002, 0x00804811, 0x000 }, | ||
1513 | { 0x0000217a, 0xc0204411, 0x000 }, | ||
1514 | { 0x00000000, 0x00404811, 0x000 }, | ||
1515 | { 0x97000000, 0x00204411, 0x000 }, | ||
1516 | { 0x00000000, 0x00204811, 0x000 }, | ||
1517 | { 0x8a000000, 0x00204411, 0x000 }, | ||
1518 | { 0x00000000, 0x00204811, 0x000 }, | ||
1519 | { 0xff000000, 0x00204411, 0x000 }, | ||
1520 | { 0x00000000, 0x00204811, 0x000 }, | ||
1521 | { 0x00000001, 0x00204811, 0x000 }, | ||
1522 | { 0x00000002, 0x00804811, 0x000 }, | ||
1523 | { 0x00000000, 0x00600000, 0x5e1 }, | ||
1524 | { 0x00002010, 0x00204411, 0x000 }, | ||
1525 | { 0x00008000, 0x00204811, 0x000 }, | ||
1526 | { 0x0001a2a4, 0xc0204411, 0x000 }, | ||
1527 | { 0x00000000, 0x00204811, 0x000 }, | ||
1528 | { 0x00000016, 0x00604811, 0x35e }, | ||
1529 | { 0x00000016, 0x00204811, 0x000 }, | ||
1530 | { 0x00002010, 0x00204411, 0x000 }, | ||
1531 | { 0x00010000, 0x00204811, 0x000 }, | ||
1532 | { 0x81000000, 0x00204411, 0x000 }, | ||
1533 | { 0x00000001, 0x00204811, 0x000 }, | ||
1534 | { 0x0000217c, 0x00204411, 0x000 }, | ||
1535 | { 0x09800000, 0x00204811, 0x000 }, | ||
1536 | { 0xffffffff, 0x00204811, 0x000 }, | ||
1537 | { 0x00000000, 0x00204811, 0x000 }, | ||
1538 | { 0x00000000, 0x17000000, 0x000 }, | ||
1539 | { 0x0004217f, 0x00604411, 0x614 }, | ||
1540 | { 0x0000001f, 0x00210230, 0x000 }, | ||
1541 | { 0x00000000, 0x14c00000, 0x000 }, | ||
1542 | { 0x00000004, 0x00404c11, 0x5dc }, | ||
1543 | { 0x0000001d, 0x00201e2d, 0x000 }, | ||
1544 | { 0x00000004, 0x00291e27, 0x000 }, | ||
1545 | { 0x0000001d, 0x00803627, 0x000 }, | ||
1546 | { 0x0000001d, 0x00201e2d, 0x000 }, | ||
1547 | { 0xfffffffb, 0x00281e27, 0x000 }, | ||
1548 | { 0x0000001d, 0x00803627, 0x000 }, | ||
1549 | { 0x0000001d, 0x00201e2d, 0x000 }, | ||
1550 | { 0x00000008, 0x00291e27, 0x000 }, | ||
1551 | { 0x0000001d, 0x00803627, 0x000 }, | ||
1552 | { 0x0000001d, 0x00201e2d, 0x000 }, | ||
1553 | { 0xfffffff7, 0x00281e27, 0x000 }, | ||
1554 | { 0x0000001d, 0x00803627, 0x000 }, | ||
1555 | { 0x00002010, 0x00204411, 0x000 }, | ||
1556 | { 0x00008000, 0x00204811, 0x000 }, | ||
1557 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
1558 | { 0x00000000, 0x00204811, 0x000 }, | ||
1559 | { 0x00000016, 0x00604811, 0x35e }, | ||
1560 | { 0x00000016, 0x00204811, 0x000 }, | ||
1561 | { 0x00002010, 0x00204411, 0x000 }, | ||
1562 | { 0x00010000, 0x00204811, 0x000 }, | ||
1563 | { 0x0000217c, 0x00204411, 0x000 }, | ||
1564 | { 0x01800000, 0x00204811, 0x000 }, | ||
1565 | { 0x00ffffff, 0x00204811, 0x000 }, | ||
1566 | { 0x00000000, 0x00204811, 0x000 }, | ||
1567 | { 0x00000000, 0x17000000, 0x000 }, | ||
1568 | { 0x81000000, 0x00204411, 0x000 }, | ||
1569 | { 0x00000001, 0x00204811, 0x000 }, | ||
1570 | { 0x0004217f, 0x00604411, 0x614 }, | ||
1571 | { 0x00000000, 0x00200010, 0x000 }, | ||
1572 | { 0x00000000, 0x14c00000, 0x613 }, | ||
1573 | { 0x00000010, 0x00404c11, 0x5f9 }, | ||
1574 | { 0x00000000, 0xc0200400, 0x000 }, | ||
1575 | { 0x00000000, 0x38c00000, 0x000 }, | ||
1576 | { 0x00000025, 0x00200a2d, 0x000 }, | ||
1577 | { 0x00000026, 0x00200e2d, 0x000 }, | ||
1578 | { 0x00000027, 0x0020122d, 0x000 }, | ||
1579 | { 0x00000028, 0x0020162d, 0x000 }, | ||
1580 | { 0x00002169, 0x00204411, 0x000 }, | ||
1581 | { 0x00000000, 0x00204804, 0x000 }, | ||
1582 | { 0x00000000, 0x00204805, 0x000 }, | ||
1583 | { 0x00000000, 0x00204801, 0x000 }, | ||
1584 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
1585 | { 0x00000004, 0x00301224, 0x000 }, | ||
1586 | { 0x00000000, 0x002f0064, 0x000 }, | ||
1587 | { 0x00000000, 0x0cc00000, 0x612 }, | ||
1588 | { 0x00000003, 0x00281a22, 0x000 }, | ||
1589 | { 0x00000008, 0x00221222, 0x000 }, | ||
1590 | { 0xfffff000, 0x00281224, 0x000 }, | ||
1591 | { 0x00000000, 0x002910c4, 0x000 }, | ||
1592 | { 0x00000027, 0x00403624, 0x000 }, | ||
1593 | { 0x00000000, 0x00800000, 0x000 }, | ||
1594 | { 0x00000000, 0x1ac00000, 0x614 }, | ||
1595 | { 0x9f000000, 0x00204411, 0x000 }, | ||
1596 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
1597 | { 0x00000000, 0x1ae00000, 0x617 }, | ||
1598 | { 0x00000000, 0x00800000, 0x000 }, | ||
1599 | { 0x00000000, 0x00600000, 0x00b }, | ||
1600 | { 0x00001000, 0x00600411, 0x2fe }, | ||
1601 | { 0x00000000, 0x00200411, 0x000 }, | ||
1602 | { 0x00000000, 0x00600811, 0x19f }, | ||
1603 | { 0x0000225c, 0x00204411, 0x000 }, | ||
1604 | { 0x00000003, 0x00204811, 0x000 }, | ||
1605 | { 0x00002256, 0x00204411, 0x000 }, | ||
1606 | { 0x0000001b, 0x00204811, 0x000 }, | ||
1607 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
1608 | { 0x00000001, 0x00204811, 0x000 }, | ||
1609 | { 0x0001a1fd, 0xc0204411, 0x000 }, | ||
1610 | { 0x00000029, 0x00201e2d, 0x000 }, | ||
1611 | { 0x00000010, 0x00221e27, 0x000 }, | ||
1612 | { 0x0000002c, 0x0020222d, 0x000 }, | ||
1613 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
1614 | { 0x00000000, 0x00294907, 0x000 }, | ||
1615 | { 0x00000000, 0x00204811, 0x000 }, | ||
1616 | { 0x0000002a, 0x0020222d, 0x000 }, | ||
1617 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
1618 | { 0x00000000, 0x00294907, 0x000 }, | ||
1619 | { 0x00000000, 0x00204811, 0x000 }, | ||
1620 | { 0x0000002b, 0x00201e2d, 0x000 }, | ||
1621 | { 0x00000010, 0x00221e27, 0x000 }, | ||
1622 | { 0x00000000, 0x00294907, 0x000 }, | ||
1623 | { 0x00000000, 0x00404811, 0x000 }, | ||
1624 | { 0x00000000, 0x00000000, 0x000 }, | ||
1625 | { 0x00000000, 0x00000000, 0x000 }, | ||
1626 | { 0x00000000, 0x00000000, 0x000 }, | ||
1627 | { 0x00000000, 0x00000000, 0x000 }, | ||
1628 | { 0x00000000, 0x00000000, 0x000 }, | ||
1629 | { 0x00000000, 0x00000000, 0x000 }, | ||
1630 | { 0x00000000, 0x00000000, 0x000 }, | ||
1631 | { 0x00000000, 0x00000000, 0x000 }, | ||
1632 | { 0x00000000, 0x00000000, 0x000 }, | ||
1633 | { 0x00000000, 0x00000000, 0x000 }, | ||
1634 | { 0x00000000, 0x00000000, 0x000 }, | ||
1635 | { 0x00000000, 0x00000000, 0x000 }, | ||
1636 | { 0x00000000, 0x00000000, 0x000 }, | ||
1637 | { 0x00000000, 0x00000000, 0x000 }, | ||
1638 | { 0x00000000, 0x00000000, 0x000 }, | ||
1639 | { 0x00000000, 0x00000000, 0x000 }, | ||
1640 | { 0x00000000, 0x00000000, 0x000 }, | ||
1641 | { 0x00000000, 0x00000000, 0x000 }, | ||
1642 | { 0x00000000, 0x00000000, 0x000 }, | ||
1643 | { 0x00000000, 0x00000000, 0x000 }, | ||
1644 | { 0x00000000, 0x00000000, 0x000 }, | ||
1645 | { 0x00000000, 0x00000000, 0x000 }, | ||
1646 | { 0x00000000, 0x00000000, 0x000 }, | ||
1647 | { 0x00000000, 0x00000000, 0x000 }, | ||
1648 | { 0x00000000, 0x00000000, 0x000 }, | ||
1649 | { 0x00000000, 0x00000000, 0x000 }, | ||
1650 | { 0x00000000, 0x00000000, 0x000 }, | ||
1651 | { 0x00000000, 0x00000000, 0x000 }, | ||
1652 | { 0x00000000, 0x00000000, 0x000 }, | ||
1653 | { 0x00000000, 0x00000000, 0x000 }, | ||
1654 | { 0x00000000, 0x00000000, 0x000 }, | ||
1655 | { 0x00000000, 0x00000000, 0x000 }, | ||
1656 | { 0x00000000, 0x00000000, 0x000 }, | ||
1657 | { 0x00000000, 0x00000000, 0x000 }, | ||
1658 | { 0x00000000, 0x00000000, 0x000 }, | ||
1659 | { 0x00000000, 0x00000000, 0x000 }, | ||
1660 | { 0x00000000, 0x00000000, 0x000 }, | ||
1661 | { 0x00000000, 0x00000000, 0x000 }, | ||
1662 | { 0x00000000, 0x00000000, 0x000 }, | ||
1663 | { 0x00000000, 0x00000000, 0x000 }, | ||
1664 | { 0x00000000, 0x00000000, 0x000 }, | ||
1665 | { 0x00000000, 0x00000000, 0x000 }, | ||
1666 | { 0x00000000, 0x00000000, 0x000 }, | ||
1667 | { 0x00000000, 0x00000000, 0x000 }, | ||
1668 | { 0x00000000, 0x00000000, 0x000 }, | ||
1669 | { 0x00000000, 0x00000000, 0x000 }, | ||
1670 | { 0x00000000, 0x00000000, 0x000 }, | ||
1671 | { 0x00000000, 0x00000000, 0x000 }, | ||
1672 | { 0x00000000, 0x00000000, 0x000 }, | ||
1673 | { 0x00000000, 0x00000000, 0x000 }, | ||
1674 | { 0x00000000, 0x00000000, 0x000 }, | ||
1675 | { 0x00000000, 0x00000000, 0x000 }, | ||
1676 | { 0x00000000, 0x00000000, 0x000 }, | ||
1677 | { 0x00000000, 0x00000000, 0x000 }, | ||
1678 | { 0x00000000, 0x00000000, 0x000 }, | ||
1679 | { 0x00000000, 0x00000000, 0x000 }, | ||
1680 | { 0x00000000, 0x00000000, 0x000 }, | ||
1681 | { 0x00000000, 0x00000000, 0x000 }, | ||
1682 | { 0x00000000, 0x00000000, 0x000 }, | ||
1683 | { 0x00000000, 0x00000000, 0x000 }, | ||
1684 | { 0x00000000, 0x00000000, 0x000 }, | ||
1685 | { 0x00000000, 0x00000000, 0x000 }, | ||
1686 | { 0x00000000, 0x00000000, 0x000 }, | ||
1687 | { 0x00000000, 0x00000000, 0x000 }, | ||
1688 | { 0x00000000, 0x00000000, 0x000 }, | ||
1689 | { 0x00000000, 0x00000000, 0x000 }, | ||
1690 | { 0x00000000, 0x00000000, 0x000 }, | ||
1691 | { 0x00000000, 0x00000000, 0x000 }, | ||
1692 | { 0x00000000, 0x00000000, 0x000 }, | ||
1693 | { 0x00000000, 0x00000000, 0x000 }, | ||
1694 | { 0x00000000, 0x00000000, 0x000 }, | ||
1695 | { 0x00000000, 0x00000000, 0x000 }, | ||
1696 | { 0x00000000, 0x00000000, 0x000 }, | ||
1697 | { 0x00000000, 0x00000000, 0x000 }, | ||
1698 | { 0x00000000, 0x00000000, 0x000 }, | ||
1699 | { 0x00000000, 0x00000000, 0x000 }, | ||
1700 | { 0x00000000, 0x00000000, 0x000 }, | ||
1701 | { 0x00000000, 0x00000000, 0x000 }, | ||
1702 | { 0x00000000, 0x00000000, 0x000 }, | ||
1703 | { 0x00000000, 0x00000000, 0x000 }, | ||
1704 | { 0x00000000, 0x00000000, 0x000 }, | ||
1705 | { 0x00000000, 0x00000000, 0x000 }, | ||
1706 | { 0x00000000, 0x00000000, 0x000 }, | ||
1707 | { 0x00000000, 0x00000000, 0x000 }, | ||
1708 | { 0x00000000, 0x00000000, 0x000 }, | ||
1709 | { 0x00000000, 0x00000000, 0x000 }, | ||
1710 | { 0x00000000, 0x00000000, 0x000 }, | ||
1711 | { 0x00000000, 0x00000000, 0x000 }, | ||
1712 | { 0x00000000, 0x00000000, 0x000 }, | ||
1713 | { 0x00000000, 0x00000000, 0x000 }, | ||
1714 | { 0x00000000, 0x00000000, 0x000 }, | ||
1715 | { 0x00000000, 0x00000000, 0x000 }, | ||
1716 | { 0x00000000, 0x00000000, 0x000 }, | ||
1717 | { 0x00000000, 0x00000000, 0x000 }, | ||
1718 | { 0x00000000, 0x00000000, 0x000 }, | ||
1719 | { 0x00000000, 0x00000000, 0x000 }, | ||
1720 | { 0x00000000, 0x00000000, 0x000 }, | ||
1721 | { 0x00000000, 0x00000000, 0x000 }, | ||
1722 | { 0x00000000, 0x00000000, 0x000 }, | ||
1723 | { 0x00000000, 0x00000000, 0x000 }, | ||
1724 | { 0x00000000, 0x00000000, 0x000 }, | ||
1725 | { 0x00000000, 0x00000000, 0x000 }, | ||
1726 | { 0x00000000, 0x00000000, 0x000 }, | ||
1727 | { 0x00000000, 0x00000000, 0x000 }, | ||
1728 | { 0x00000000, 0x00000000, 0x000 }, | ||
1729 | { 0x00000000, 0x00000000, 0x000 }, | ||
1730 | { 0x00000000, 0x00000000, 0x000 }, | ||
1731 | { 0x00000000, 0x00000000, 0x000 }, | ||
1732 | { 0x00000000, 0x00000000, 0x000 }, | ||
1733 | { 0x00000000, 0x00000000, 0x000 }, | ||
1734 | { 0x00000000, 0x00000000, 0x000 }, | ||
1735 | { 0x00000000, 0x00000000, 0x000 }, | ||
1736 | { 0x00000000, 0x00000000, 0x000 }, | ||
1737 | { 0x00000000, 0x00000000, 0x000 }, | ||
1738 | { 0x00000000, 0x00000000, 0x000 }, | ||
1739 | { 0x00000000, 0x00000000, 0x000 }, | ||
1740 | { 0x00000000, 0x00000000, 0x000 }, | ||
1741 | { 0x00000000, 0x00000000, 0x000 }, | ||
1742 | { 0x00000000, 0x00000000, 0x000 }, | ||
1743 | { 0x00000000, 0x00000000, 0x000 }, | ||
1744 | { 0x00000000, 0x00000000, 0x000 }, | ||
1745 | { 0x00000000, 0x00000000, 0x000 }, | ||
1746 | { 0x00000000, 0x00000000, 0x000 }, | ||
1747 | { 0x00000000, 0x00000000, 0x000 }, | ||
1748 | { 0x00000000, 0x00000000, 0x000 }, | ||
1749 | { 0x00000000, 0x00000000, 0x000 }, | ||
1750 | { 0x00000000, 0x00000000, 0x000 }, | ||
1751 | { 0x00000000, 0x00000000, 0x000 }, | ||
1752 | { 0x00000000, 0x00000000, 0x000 }, | ||
1753 | { 0x00000000, 0x00000000, 0x000 }, | ||
1754 | { 0x00000000, 0x00000000, 0x000 }, | ||
1755 | { 0x00000000, 0x00000000, 0x000 }, | ||
1756 | { 0x00000000, 0x00000000, 0x000 }, | ||
1757 | { 0x00000000, 0x00000000, 0x000 }, | ||
1758 | { 0x00000000, 0x00000000, 0x000 }, | ||
1759 | { 0x00000000, 0x00000000, 0x000 }, | ||
1760 | { 0x00000000, 0x00000000, 0x000 }, | ||
1761 | { 0x00000000, 0x00000000, 0x000 }, | ||
1762 | { 0x00000000, 0x00000000, 0x000 }, | ||
1763 | { 0x00000000, 0x00000000, 0x000 }, | ||
1764 | { 0x00000000, 0x00000000, 0x000 }, | ||
1765 | { 0x00000000, 0x00000000, 0x000 }, | ||
1766 | { 0x00000000, 0x00000000, 0x000 }, | ||
1767 | { 0x00000000, 0x00000000, 0x000 }, | ||
1768 | { 0x00000000, 0x00000000, 0x000 }, | ||
1769 | { 0x00000000, 0x00000000, 0x000 }, | ||
1770 | { 0x00000000, 0x00000000, 0x000 }, | ||
1771 | { 0x00000000, 0x00000000, 0x000 }, | ||
1772 | { 0x00000000, 0x00000000, 0x000 }, | ||
1773 | { 0x00000000, 0x00000000, 0x000 }, | ||
1774 | { 0x00000000, 0x00000000, 0x000 }, | ||
1775 | { 0x00000000, 0x00000000, 0x000 }, | ||
1776 | { 0x00000000, 0x00000000, 0x000 }, | ||
1777 | { 0x00000000, 0x00000000, 0x000 }, | ||
1778 | { 0x00000000, 0x00000000, 0x000 }, | ||
1779 | { 0x00000000, 0x00000000, 0x000 }, | ||
1780 | { 0x00000000, 0x00000000, 0x000 }, | ||
1781 | { 0x00000000, 0x00000000, 0x000 }, | ||
1782 | { 0x00000000, 0x00000000, 0x000 }, | ||
1783 | { 0x00000000, 0x00000000, 0x000 }, | ||
1784 | { 0x00000000, 0x00000000, 0x000 }, | ||
1785 | { 0x00000000, 0x00000000, 0x000 }, | ||
1786 | { 0x00000000, 0x00000000, 0x000 }, | ||
1787 | { 0x00000000, 0x00000000, 0x000 }, | ||
1788 | { 0x00000000, 0x00000000, 0x000 }, | ||
1789 | { 0x00000000, 0x00000000, 0x000 }, | ||
1790 | { 0x00000000, 0x00000000, 0x000 }, | ||
1791 | { 0x00000000, 0x00000000, 0x000 }, | ||
1792 | { 0x00000000, 0x00000000, 0x000 }, | ||
1793 | { 0x00000000, 0x00000000, 0x000 }, | ||
1794 | { 0x00000000, 0x00000000, 0x000 }, | ||
1795 | { 0x00000000, 0x00000000, 0x000 }, | ||
1796 | { 0x00000000, 0x00000000, 0x000 }, | ||
1797 | { 0x00000000, 0x00000000, 0x000 }, | ||
1798 | { 0x00000000, 0x00000000, 0x000 }, | ||
1799 | { 0x00000000, 0x00000000, 0x000 }, | ||
1800 | { 0x00000000, 0x00000000, 0x000 }, | ||
1801 | { 0x00000000, 0x00000000, 0x000 }, | ||
1802 | { 0x013304ef, 0x059b0239, 0x000 }, | ||
1803 | { 0x01b00159, 0x0425059b, 0x000 }, | ||
1804 | { 0x021201f6, 0x02390142, 0x000 }, | ||
1805 | { 0x0210022e, 0x0289022a, 0x000 }, | ||
1806 | { 0x03c2059b, 0x059b059b, 0x000 }, | ||
1807 | { 0x05cd05ce, 0x0308059b, 0x000 }, | ||
1808 | { 0x059b05a0, 0x03090329, 0x000 }, | ||
1809 | { 0x0313026b, 0x032b031d, 0x000 }, | ||
1810 | { 0x059b059b, 0x059b059b, 0x000 }, | ||
1811 | { 0x059b052c, 0x059b059b, 0x000 }, | ||
1812 | { 0x03a5059b, 0x04a2032d, 0x000 }, | ||
1813 | { 0x04810433, 0x0423059b, 0x000 }, | ||
1814 | { 0x04bb04ed, 0x042704c8, 0x000 }, | ||
1815 | { 0x043304f4, 0x033a0365, 0x000 }, | ||
1816 | { 0x059b059b, 0x059b059b, 0x000 }, | ||
1817 | { 0x059b059b, 0x059b059b, 0x000 }, | ||
1818 | { 0x059b059b, 0x05b905a2, 0x000 }, | ||
1819 | { 0x059b059b, 0x0007059b, 0x000 }, | ||
1820 | { 0x059b059b, 0x059b059b, 0x000 }, | ||
1821 | { 0x059b059b, 0x059b059b, 0x000 }, | ||
1822 | { 0x03e303d8, 0x03f303f1, 0x000 }, | ||
1823 | { 0x03f903f5, 0x03f703fb, 0x000 }, | ||
1824 | { 0x04070403, 0x040f040b, 0x000 }, | ||
1825 | { 0x04170413, 0x041f041b, 0x000 }, | ||
1826 | { 0x059b059b, 0x059b059b, 0x000 }, | ||
1827 | { 0x059b059b, 0x059b059b, 0x000 }, | ||
1828 | { 0x059b059b, 0x059b059b, 0x000 }, | ||
1829 | { 0x00020600, 0x06190006, 0x000 }, | ||
1830 | }; | ||
1831 | |||
1832 | static const u32 R600_pfp_microcode[] = { | ||
1833 | 0xd40071, | ||
1834 | 0xd40072, | ||
1835 | 0xca0400, | ||
1836 | 0xa00000, | ||
1837 | 0x7e828b, | ||
1838 | 0x800003, | ||
1839 | 0xca0400, | ||
1840 | 0xd4401e, | ||
1841 | 0xee001e, | ||
1842 | 0xca0400, | ||
1843 | 0xa00000, | ||
1844 | 0x7e828b, | ||
1845 | 0xc41838, | ||
1846 | 0xca2400, | ||
1847 | 0xca2800, | ||
1848 | 0x9581a8, | ||
1849 | 0xc41c3a, | ||
1850 | 0xc3c000, | ||
1851 | 0xca0800, | ||
1852 | 0xca0c00, | ||
1853 | 0x7c744b, | ||
1854 | 0xc20005, | ||
1855 | 0x99c000, | ||
1856 | 0xc41c3a, | ||
1857 | 0x7c744c, | ||
1858 | 0xc0fff0, | ||
1859 | 0x042c04, | ||
1860 | 0x309002, | ||
1861 | 0x7d2500, | ||
1862 | 0x351402, | ||
1863 | 0x7d350b, | ||
1864 | 0x255403, | ||
1865 | 0x7cd580, | ||
1866 | 0x259c03, | ||
1867 | 0x95c004, | ||
1868 | 0xd5001b, | ||
1869 | 0x7eddc1, | ||
1870 | 0x7d9d80, | ||
1871 | 0xd6801b, | ||
1872 | 0xd5801b, | ||
1873 | 0xd4401e, | ||
1874 | 0xd5401e, | ||
1875 | 0xd6401e, | ||
1876 | 0xd6801e, | ||
1877 | 0xd4801e, | ||
1878 | 0xd4c01e, | ||
1879 | 0x9783d4, | ||
1880 | 0xd5c01e, | ||
1881 | 0xca0800, | ||
1882 | 0x80001b, | ||
1883 | 0xca0c00, | ||
1884 | 0xe4011e, | ||
1885 | 0xd4001e, | ||
1886 | 0x80000d, | ||
1887 | 0xc41838, | ||
1888 | 0xe4013e, | ||
1889 | 0xd4001e, | ||
1890 | 0x80000d, | ||
1891 | 0xc41838, | ||
1892 | 0xd4401e, | ||
1893 | 0xee001e, | ||
1894 | 0xca0400, | ||
1895 | 0xa00000, | ||
1896 | 0x7e828b, | ||
1897 | 0xe4011e, | ||
1898 | 0xd4001e, | ||
1899 | 0xd4401e, | ||
1900 | 0xee001e, | ||
1901 | 0xca0400, | ||
1902 | 0xa00000, | ||
1903 | 0x7e828b, | ||
1904 | 0xe4013e, | ||
1905 | 0xd4001e, | ||
1906 | 0xd4401e, | ||
1907 | 0xee001e, | ||
1908 | 0xca0400, | ||
1909 | 0xa00000, | ||
1910 | 0x7e828b, | ||
1911 | 0xca1800, | ||
1912 | 0xd4401e, | ||
1913 | 0xd5801e, | ||
1914 | 0x800054, | ||
1915 | 0xd40073, | ||
1916 | 0xd4401e, | ||
1917 | 0xca0800, | ||
1918 | 0xca0c00, | ||
1919 | 0xca1000, | ||
1920 | 0xd48019, | ||
1921 | 0xd4c018, | ||
1922 | 0xd50017, | ||
1923 | 0xd4801e, | ||
1924 | 0xd4c01e, | ||
1925 | 0xd5001e, | ||
1926 | 0xe2001e, | ||
1927 | 0xca0400, | ||
1928 | 0xa00000, | ||
1929 | 0x7e828b, | ||
1930 | 0xca0800, | ||
1931 | 0xd48060, | ||
1932 | 0xd4401e, | ||
1933 | 0x800002, | ||
1934 | 0xd4801e, | ||
1935 | 0xca0800, | ||
1936 | 0xd48061, | ||
1937 | 0xd4401e, | ||
1938 | 0x800002, | ||
1939 | 0xd4801e, | ||
1940 | 0xca0800, | ||
1941 | 0xca0c00, | ||
1942 | 0xd4401e, | ||
1943 | 0xd48016, | ||
1944 | 0xd4c016, | ||
1945 | 0xd4801e, | ||
1946 | 0x8001b9, | ||
1947 | 0xd4c01e, | ||
1948 | 0xc6083e, | ||
1949 | 0xca0c00, | ||
1950 | 0xca1000, | ||
1951 | 0x948004, | ||
1952 | 0xca1400, | ||
1953 | 0xe420f3, | ||
1954 | 0xd42013, | ||
1955 | 0xd56065, | ||
1956 | 0xd4e01c, | ||
1957 | 0xd5201c, | ||
1958 | 0xd5601c, | ||
1959 | 0x800002, | ||
1960 | 0x062001, | ||
1961 | 0xc6083e, | ||
1962 | 0xca0c00, | ||
1963 | 0xca1000, | ||
1964 | 0x9483f7, | ||
1965 | 0xca1400, | ||
1966 | 0xe420f3, | ||
1967 | 0x80007a, | ||
1968 | 0xd42013, | ||
1969 | 0xc6083e, | ||
1970 | 0xca0c00, | ||
1971 | 0xca1000, | ||
1972 | 0x9883ef, | ||
1973 | 0xca1400, | ||
1974 | 0xd40064, | ||
1975 | 0x80008e, | ||
1976 | 0x000000, | ||
1977 | 0xc41432, | ||
1978 | 0xc6183e, | ||
1979 | 0xc4082f, | ||
1980 | 0x954005, | ||
1981 | 0xc40c30, | ||
1982 | 0xd4401e, | ||
1983 | 0x800002, | ||
1984 | 0xee001e, | ||
1985 | 0x9583f5, | ||
1986 | 0xc41031, | ||
1987 | 0xd44033, | ||
1988 | 0xd52065, | ||
1989 | 0xd4a01c, | ||
1990 | 0xd4e01c, | ||
1991 | 0xd5201c, | ||
1992 | 0xd40073, | ||
1993 | 0xe4015e, | ||
1994 | 0xd4001e, | ||
1995 | 0x8001b9, | ||
1996 | 0x062001, | ||
1997 | 0x0a2001, | ||
1998 | 0xd60074, | ||
1999 | 0xc40836, | ||
2000 | 0xc61040, | ||
2001 | 0x988007, | ||
2002 | 0xcc3835, | ||
2003 | 0x95010f, | ||
2004 | 0xd4001f, | ||
2005 | 0xd46062, | ||
2006 | 0x800002, | ||
2007 | 0xd42062, | ||
2008 | 0xcc1433, | ||
2009 | 0x8401bc, | ||
2010 | 0xd40070, | ||
2011 | 0xd5401e, | ||
2012 | 0x800002, | ||
2013 | 0xee001e, | ||
2014 | 0xca0c00, | ||
2015 | 0xca1000, | ||
2016 | 0xd4c01a, | ||
2017 | 0x8401bc, | ||
2018 | 0xd5001a, | ||
2019 | 0xcc0443, | ||
2020 | 0x35101f, | ||
2021 | 0x2c9401, | ||
2022 | 0x7d098b, | ||
2023 | 0x984005, | ||
2024 | 0x7d15cb, | ||
2025 | 0xd4001a, | ||
2026 | 0x8001b9, | ||
2027 | 0xd4006d, | ||
2028 | 0x344401, | ||
2029 | 0xcc0c44, | ||
2030 | 0x98403a, | ||
2031 | 0xcc2c46, | ||
2032 | 0x958004, | ||
2033 | 0xcc0445, | ||
2034 | 0x8001b9, | ||
2035 | 0xd4001a, | ||
2036 | 0xd4c01a, | ||
2037 | 0x282801, | ||
2038 | 0x8400f3, | ||
2039 | 0xcc1003, | ||
2040 | 0x98801b, | ||
2041 | 0x04380c, | ||
2042 | 0x8400f3, | ||
2043 | 0xcc1003, | ||
2044 | 0x988017, | ||
2045 | 0x043808, | ||
2046 | 0x8400f3, | ||
2047 | 0xcc1003, | ||
2048 | 0x988013, | ||
2049 | 0x043804, | ||
2050 | 0x8400f3, | ||
2051 | 0xcc1003, | ||
2052 | 0x988014, | ||
2053 | 0xcc1047, | ||
2054 | 0x9a8009, | ||
2055 | 0xcc1448, | ||
2056 | 0x9840da, | ||
2057 | 0xd4006d, | ||
2058 | 0xcc1844, | ||
2059 | 0xd5001a, | ||
2060 | 0xd5401a, | ||
2061 | 0x8000cc, | ||
2062 | 0xd5801a, | ||
2063 | 0x96c0d3, | ||
2064 | 0xd4006d, | ||
2065 | 0x8001b9, | ||
2066 | 0xd4006e, | ||
2067 | 0x9ac003, | ||
2068 | 0xd4006d, | ||
2069 | 0xd4006e, | ||
2070 | 0x800002, | ||
2071 | 0xec007f, | ||
2072 | 0x9ac0ca, | ||
2073 | 0xd4006d, | ||
2074 | 0x8001b9, | ||
2075 | 0xd4006e, | ||
2076 | 0xcc1403, | ||
2077 | 0xcc1803, | ||
2078 | 0xcc1c03, | ||
2079 | 0x7d9103, | ||
2080 | 0x7dd583, | ||
2081 | 0x7d190c, | ||
2082 | 0x35cc1f, | ||
2083 | 0x35701f, | ||
2084 | 0x7cf0cb, | ||
2085 | 0x7cd08b, | ||
2086 | 0x880000, | ||
2087 | 0x7e8e8b, | ||
2088 | 0x95c004, | ||
2089 | 0xd4006e, | ||
2090 | 0x8001b9, | ||
2091 | 0xd4001a, | ||
2092 | 0xd4c01a, | ||
2093 | 0xcc0803, | ||
2094 | 0xcc0c03, | ||
2095 | 0xcc1003, | ||
2096 | 0xcc1403, | ||
2097 | 0xcc1803, | ||
2098 | 0xcc1c03, | ||
2099 | 0xcc2403, | ||
2100 | 0xcc2803, | ||
2101 | 0x35c41f, | ||
2102 | 0x36b01f, | ||
2103 | 0x7c704b, | ||
2104 | 0x34f01f, | ||
2105 | 0x7c704b, | ||
2106 | 0x35701f, | ||
2107 | 0x7c704b, | ||
2108 | 0x7d8881, | ||
2109 | 0x7dccc1, | ||
2110 | 0x7e5101, | ||
2111 | 0x7e9541, | ||
2112 | 0x7c9082, | ||
2113 | 0x7cd4c2, | ||
2114 | 0x7c848b, | ||
2115 | 0x9ac003, | ||
2116 | 0x7c8c8b, | ||
2117 | 0x2c8801, | ||
2118 | 0x98809c, | ||
2119 | 0xd4006d, | ||
2120 | 0x98409a, | ||
2121 | 0xd4006e, | ||
2122 | 0xcc0847, | ||
2123 | 0xcc0c48, | ||
2124 | 0xcc1044, | ||
2125 | 0xd4801a, | ||
2126 | 0xd4c01a, | ||
2127 | 0x800104, | ||
2128 | 0xd5001a, | ||
2129 | 0xcc0832, | ||
2130 | 0xd40032, | ||
2131 | 0x9482d8, | ||
2132 | 0xca0c00, | ||
2133 | 0xd4401e, | ||
2134 | 0x800002, | ||
2135 | 0xd4001e, | ||
2136 | 0xe4011e, | ||
2137 | 0xd4001e, | ||
2138 | 0xca0800, | ||
2139 | 0xca0c00, | ||
2140 | 0xca1000, | ||
2141 | 0xd4401e, | ||
2142 | 0xca1400, | ||
2143 | 0xd4801e, | ||
2144 | 0xd4c01e, | ||
2145 | 0xd5001e, | ||
2146 | 0xd5401e, | ||
2147 | 0xd54034, | ||
2148 | 0x800002, | ||
2149 | 0xee001e, | ||
2150 | 0x280404, | ||
2151 | 0xe2001a, | ||
2152 | 0xe2001a, | ||
2153 | 0xd4401a, | ||
2154 | 0xca3800, | ||
2155 | 0xcc0803, | ||
2156 | 0xcc0c03, | ||
2157 | 0xcc0c03, | ||
2158 | 0xcc0c03, | ||
2159 | 0x9882bc, | ||
2160 | 0x000000, | ||
2161 | 0x8401bc, | ||
2162 | 0xd7806f, | ||
2163 | 0x800002, | ||
2164 | 0xee001f, | ||
2165 | 0xca0400, | ||
2166 | 0xc2ff00, | ||
2167 | 0xcc0834, | ||
2168 | 0xc13fff, | ||
2169 | 0x7c74cb, | ||
2170 | 0x7cc90b, | ||
2171 | 0x7d010f, | ||
2172 | 0x9902af, | ||
2173 | 0x7c738b, | ||
2174 | 0x8401bc, | ||
2175 | 0xd7806f, | ||
2176 | 0x800002, | ||
2177 | 0xee001f, | ||
2178 | 0xca0800, | ||
2179 | 0x281900, | ||
2180 | 0x7d898b, | ||
2181 | 0x958014, | ||
2182 | 0x281404, | ||
2183 | 0xca0c00, | ||
2184 | 0xca1000, | ||
2185 | 0xca1c00, | ||
2186 | 0xca2400, | ||
2187 | 0xe2001f, | ||
2188 | 0xd4c01a, | ||
2189 | 0xd5001a, | ||
2190 | 0xd5401a, | ||
2191 | 0xcc1803, | ||
2192 | 0xcc2c03, | ||
2193 | 0xcc2c03, | ||
2194 | 0xcc2c03, | ||
2195 | 0x7da58b, | ||
2196 | 0x7d9c47, | ||
2197 | 0x984296, | ||
2198 | 0x000000, | ||
2199 | 0x800164, | ||
2200 | 0xd4c01a, | ||
2201 | 0xd4401e, | ||
2202 | 0xd4801e, | ||
2203 | 0x800002, | ||
2204 | 0xee001e, | ||
2205 | 0xe4011e, | ||
2206 | 0xd4001e, | ||
2207 | 0xd4401e, | ||
2208 | 0xee001e, | ||
2209 | 0xca0400, | ||
2210 | 0xa00000, | ||
2211 | 0x7e828b, | ||
2212 | 0xe4013e, | ||
2213 | 0xd4001e, | ||
2214 | 0xd4401e, | ||
2215 | 0xee001e, | ||
2216 | 0xca0400, | ||
2217 | 0xa00000, | ||
2218 | 0x7e828b, | ||
2219 | 0xca0800, | ||
2220 | 0x248c06, | ||
2221 | 0x0ccc06, | ||
2222 | 0x98c006, | ||
2223 | 0xcc1049, | ||
2224 | 0x990004, | ||
2225 | 0xd40071, | ||
2226 | 0xe4011e, | ||
2227 | 0xd4001e, | ||
2228 | 0xd4401e, | ||
2229 | 0xd4801e, | ||
2230 | 0x800002, | ||
2231 | 0xee001e, | ||
2232 | 0xca0800, | ||
2233 | 0xca0c00, | ||
2234 | 0x34d018, | ||
2235 | 0x251001, | ||
2236 | 0x95001f, | ||
2237 | 0xc17fff, | ||
2238 | 0xca1000, | ||
2239 | 0xca1400, | ||
2240 | 0xca1800, | ||
2241 | 0xd4801d, | ||
2242 | 0xd4c01d, | ||
2243 | 0x7db18b, | ||
2244 | 0xc14202, | ||
2245 | 0xc2c001, | ||
2246 | 0xd5801d, | ||
2247 | 0x34dc0e, | ||
2248 | 0x7d5d4c, | ||
2249 | 0x7f734c, | ||
2250 | 0xd7401e, | ||
2251 | 0xd5001e, | ||
2252 | 0xd5401e, | ||
2253 | 0xc14200, | ||
2254 | 0xc2c000, | ||
2255 | 0x099c01, | ||
2256 | 0x31dc10, | ||
2257 | 0x7f5f4c, | ||
2258 | 0x7f734c, | ||
2259 | 0x7d8380, | ||
2260 | 0xd5806f, | ||
2261 | 0xd58066, | ||
2262 | 0xd7401e, | ||
2263 | 0xec005e, | ||
2264 | 0xc82402, | ||
2265 | 0x8001b9, | ||
2266 | 0xd60074, | ||
2267 | 0xd4401e, | ||
2268 | 0xd4801e, | ||
2269 | 0xd4c01e, | ||
2270 | 0x800002, | ||
2271 | 0xee001e, | ||
2272 | 0x800002, | ||
2273 | 0xee001f, | ||
2274 | 0xd4001f, | ||
2275 | 0x800002, | ||
2276 | 0xd4001f, | ||
2277 | 0xd4001f, | ||
2278 | 0x880000, | ||
2279 | 0xd4001f, | ||
2280 | 0x000000, | ||
2281 | 0x000000, | ||
2282 | 0x000000, | ||
2283 | 0x000000, | ||
2284 | 0x000000, | ||
2285 | 0x000000, | ||
2286 | 0x000000, | ||
2287 | 0x000000, | ||
2288 | 0x000000, | ||
2289 | 0x000000, | ||
2290 | 0x000000, | ||
2291 | 0x000000, | ||
2292 | 0x000000, | ||
2293 | 0x000000, | ||
2294 | 0x000000, | ||
2295 | 0x000000, | ||
2296 | 0x000000, | ||
2297 | 0x000000, | ||
2298 | 0x000000, | ||
2299 | 0x000000, | ||
2300 | 0x000000, | ||
2301 | 0x000000, | ||
2302 | 0x000000, | ||
2303 | 0x000000, | ||
2304 | 0x000000, | ||
2305 | 0x000000, | ||
2306 | 0x000000, | ||
2307 | 0x000000, | ||
2308 | 0x000000, | ||
2309 | 0x000000, | ||
2310 | 0x000000, | ||
2311 | 0x000000, | ||
2312 | 0x000000, | ||
2313 | 0x000000, | ||
2314 | 0x000000, | ||
2315 | 0x000000, | ||
2316 | 0x000000, | ||
2317 | 0x000000, | ||
2318 | 0x000000, | ||
2319 | 0x000000, | ||
2320 | 0x000000, | ||
2321 | 0x000000, | ||
2322 | 0x000000, | ||
2323 | 0x000000, | ||
2324 | 0x000000, | ||
2325 | 0x000000, | ||
2326 | 0x000000, | ||
2327 | 0x000000, | ||
2328 | 0x000000, | ||
2329 | 0x000000, | ||
2330 | 0x000000, | ||
2331 | 0x000000, | ||
2332 | 0x000000, | ||
2333 | 0x000000, | ||
2334 | 0x000000, | ||
2335 | 0x000000, | ||
2336 | 0x000000, | ||
2337 | 0x000000, | ||
2338 | 0x000000, | ||
2339 | 0x000000, | ||
2340 | 0x000000, | ||
2341 | 0x000000, | ||
2342 | 0x000000, | ||
2343 | 0x000000, | ||
2344 | 0x000000, | ||
2345 | 0x010174, | ||
2346 | 0x02017b, | ||
2347 | 0x030090, | ||
2348 | 0x040080, | ||
2349 | 0x050005, | ||
2350 | 0x060040, | ||
2351 | 0x070033, | ||
2352 | 0x08012f, | ||
2353 | 0x090047, | ||
2354 | 0x0a0037, | ||
2355 | 0x1001b7, | ||
2356 | 0x1700a4, | ||
2357 | 0x22013d, | ||
2358 | 0x23014c, | ||
2359 | 0x2000b5, | ||
2360 | 0x240128, | ||
2361 | 0x27004e, | ||
2362 | 0x28006b, | ||
2363 | 0x2a0061, | ||
2364 | 0x2b0053, | ||
2365 | 0x2f0066, | ||
2366 | 0x320088, | ||
2367 | 0x340182, | ||
2368 | 0x3c0159, | ||
2369 | 0x3f0073, | ||
2370 | 0x41018f, | ||
2371 | 0x440131, | ||
2372 | 0x550176, | ||
2373 | 0x56017d, | ||
2374 | 0x60000c, | ||
2375 | 0x610035, | ||
2376 | 0x620039, | ||
2377 | 0x630039, | ||
2378 | 0x640039, | ||
2379 | 0x650039, | ||
2380 | 0x660039, | ||
2381 | 0x670039, | ||
2382 | 0x68003b, | ||
2383 | 0x690042, | ||
2384 | 0x6a0049, | ||
2385 | 0x6b0049, | ||
2386 | 0x6c0049, | ||
2387 | 0x6d0049, | ||
2388 | 0x6e0049, | ||
2389 | 0x6f0049, | ||
2390 | 0x7301b7, | ||
2391 | 0x000007, | ||
2392 | 0x000007, | ||
2393 | 0x000007, | ||
2394 | 0x000007, | ||
2395 | 0x000007, | ||
2396 | 0x000007, | ||
2397 | 0x000007, | ||
2398 | 0x000007, | ||
2399 | 0x000007, | ||
2400 | 0x000007, | ||
2401 | 0x000007, | ||
2402 | 0x000007, | ||
2403 | 0x000007, | ||
2404 | 0x000007, | ||
2405 | 0x000007, | ||
2406 | 0x000007, | ||
2407 | 0x000007, | ||
2408 | 0x000007, | ||
2409 | }; | ||
2410 | |||
2411 | static const u32 RV610_cp_microcode[][3] = { | ||
2412 | { 0x00000000, 0xc0200400, 0x000 }, | ||
2413 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
2414 | { 0x0000ffff, 0x00284621, 0x000 }, | ||
2415 | { 0x00000000, 0xd9004800, 0x000 }, | ||
2416 | { 0x00000000, 0xc0200400, 0x000 }, | ||
2417 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
2418 | { 0x00000000, 0x00e00000, 0x000 }, | ||
2419 | { 0x00010000, 0xc0294620, 0x000 }, | ||
2420 | { 0x00000000, 0xd9004800, 0x000 }, | ||
2421 | { 0x00000000, 0xc0200400, 0x000 }, | ||
2422 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
2423 | { 0x81000000, 0x00204411, 0x000 }, | ||
2424 | { 0x00000001, 0x00204811, 0x000 }, | ||
2425 | { 0x00042004, 0x00604411, 0x68d }, | ||
2426 | { 0x00000000, 0x00600000, 0x631 }, | ||
2427 | { 0x00000000, 0x00600000, 0x645 }, | ||
2428 | { 0x00000000, 0xc0200800, 0x000 }, | ||
2429 | { 0x00000f00, 0x00281622, 0x000 }, | ||
2430 | { 0x00000008, 0x00211625, 0x000 }, | ||
2431 | { 0x00000018, 0x00203625, 0x000 }, | ||
2432 | { 0x8d000000, 0x00204411, 0x000 }, | ||
2433 | { 0x00000004, 0x002f0225, 0x000 }, | ||
2434 | { 0x00000000, 0x0ce00000, 0x018 }, | ||
2435 | { 0x00412000, 0x00404811, 0x019 }, | ||
2436 | { 0x00422000, 0x00204811, 0x000 }, | ||
2437 | { 0x8e000000, 0x00204411, 0x000 }, | ||
2438 | { 0x00000028, 0x00204a2d, 0x000 }, | ||
2439 | { 0x90000000, 0x00204411, 0x000 }, | ||
2440 | { 0x00000000, 0x00204805, 0x000 }, | ||
2441 | { 0x0000000c, 0x00211622, 0x000 }, | ||
2442 | { 0x00000003, 0x00281625, 0x000 }, | ||
2443 | { 0x00000019, 0x00211a22, 0x000 }, | ||
2444 | { 0x00000004, 0x00281a26, 0x000 }, | ||
2445 | { 0x00000000, 0x002914c5, 0x000 }, | ||
2446 | { 0x00000019, 0x00203625, 0x000 }, | ||
2447 | { 0x00000000, 0x003a1402, 0x000 }, | ||
2448 | { 0x00000016, 0x00211625, 0x000 }, | ||
2449 | { 0x00000003, 0x00281625, 0x000 }, | ||
2450 | { 0x00000017, 0x00200e2d, 0x000 }, | ||
2451 | { 0xfffffffc, 0x00280e23, 0x000 }, | ||
2452 | { 0x00000000, 0x002914a3, 0x000 }, | ||
2453 | { 0x00000017, 0x00203625, 0x000 }, | ||
2454 | { 0x00008000, 0x00280e22, 0x000 }, | ||
2455 | { 0x00000007, 0x00220e23, 0x000 }, | ||
2456 | { 0x00000000, 0x0029386e, 0x000 }, | ||
2457 | { 0x20000000, 0x00280e22, 0x000 }, | ||
2458 | { 0x00000006, 0x00210e23, 0x000 }, | ||
2459 | { 0x00000000, 0x0029386e, 0x000 }, | ||
2460 | { 0x00000000, 0x00220222, 0x000 }, | ||
2461 | { 0x00000000, 0x14e00000, 0x038 }, | ||
2462 | { 0x00000000, 0x2ee00000, 0x035 }, | ||
2463 | { 0x00000000, 0x2ce00000, 0x037 }, | ||
2464 | { 0x00000000, 0x00400e2d, 0x039 }, | ||
2465 | { 0x00000008, 0x00200e2d, 0x000 }, | ||
2466 | { 0x00000009, 0x0040122d, 0x046 }, | ||
2467 | { 0x00000001, 0x00400e2d, 0x039 }, | ||
2468 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
2469 | { 0x003ffffc, 0x00281223, 0x000 }, | ||
2470 | { 0x00000002, 0x00221224, 0x000 }, | ||
2471 | { 0x0000001f, 0x00211e23, 0x000 }, | ||
2472 | { 0x00000000, 0x14e00000, 0x03e }, | ||
2473 | { 0x00000008, 0x00401c11, 0x041 }, | ||
2474 | { 0x0000000d, 0x00201e2d, 0x000 }, | ||
2475 | { 0x0000000f, 0x00281e27, 0x000 }, | ||
2476 | { 0x00000003, 0x00221e27, 0x000 }, | ||
2477 | { 0x7fc00000, 0x00281a23, 0x000 }, | ||
2478 | { 0x00000014, 0x00211a26, 0x000 }, | ||
2479 | { 0x00000001, 0x00331a26, 0x000 }, | ||
2480 | { 0x00000008, 0x00221a26, 0x000 }, | ||
2481 | { 0x00000000, 0x00290cc7, 0x000 }, | ||
2482 | { 0x00000027, 0x00203624, 0x000 }, | ||
2483 | { 0x00007f00, 0x00281221, 0x000 }, | ||
2484 | { 0x00001400, 0x002f0224, 0x000 }, | ||
2485 | { 0x00000000, 0x0ce00000, 0x04b }, | ||
2486 | { 0x00000001, 0x00290e23, 0x000 }, | ||
2487 | { 0x0000000e, 0x00203623, 0x000 }, | ||
2488 | { 0x0000e000, 0x00204411, 0x000 }, | ||
2489 | { 0xfff80000, 0x00294a23, 0x000 }, | ||
2490 | { 0x00000000, 0x003a2c02, 0x000 }, | ||
2491 | { 0x00000002, 0x00220e2b, 0x000 }, | ||
2492 | { 0xfc000000, 0x00280e23, 0x000 }, | ||
2493 | { 0x0000000f, 0x00203623, 0x000 }, | ||
2494 | { 0x00001fff, 0x00294a23, 0x000 }, | ||
2495 | { 0x00000027, 0x00204a2d, 0x000 }, | ||
2496 | { 0x00000000, 0x00204811, 0x000 }, | ||
2497 | { 0x00000029, 0x00200e2d, 0x000 }, | ||
2498 | { 0x060a0200, 0x00294a23, 0x000 }, | ||
2499 | { 0x00000000, 0x00204811, 0x000 }, | ||
2500 | { 0x00000000, 0x00204811, 0x000 }, | ||
2501 | { 0x00000001, 0x00210222, 0x000 }, | ||
2502 | { 0x00000000, 0x14e00000, 0x061 }, | ||
2503 | { 0x00000000, 0x2ee00000, 0x05f }, | ||
2504 | { 0x00000000, 0x2ce00000, 0x05e }, | ||
2505 | { 0x00000000, 0x00400e2d, 0x062 }, | ||
2506 | { 0x00000001, 0x00400e2d, 0x062 }, | ||
2507 | { 0x0000000a, 0x00200e2d, 0x000 }, | ||
2508 | { 0x0000000b, 0x0040122d, 0x06a }, | ||
2509 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
2510 | { 0x003ffffc, 0x00281223, 0x000 }, | ||
2511 | { 0x00000002, 0x00221224, 0x000 }, | ||
2512 | { 0x7fc00000, 0x00281623, 0x000 }, | ||
2513 | { 0x00000014, 0x00211625, 0x000 }, | ||
2514 | { 0x00000001, 0x00331625, 0x000 }, | ||
2515 | { 0x80000000, 0x00280e23, 0x000 }, | ||
2516 | { 0x00000000, 0x00290ca3, 0x000 }, | ||
2517 | { 0x3ffffc00, 0x00290e23, 0x000 }, | ||
2518 | { 0x0000001f, 0x00211e23, 0x000 }, | ||
2519 | { 0x00000000, 0x14e00000, 0x06d }, | ||
2520 | { 0x00000100, 0x00401c11, 0x070 }, | ||
2521 | { 0x0000000d, 0x00201e2d, 0x000 }, | ||
2522 | { 0x000000f0, 0x00281e27, 0x000 }, | ||
2523 | { 0x00000004, 0x00221e27, 0x000 }, | ||
2524 | { 0x81000000, 0x00204411, 0x000 }, | ||
2525 | { 0x0000000d, 0x00204811, 0x000 }, | ||
2526 | { 0xfffff0ff, 0x00281a30, 0x000 }, | ||
2527 | { 0x0000a028, 0x00204411, 0x000 }, | ||
2528 | { 0x00000000, 0x002948e6, 0x000 }, | ||
2529 | { 0x0000a018, 0x00204411, 0x000 }, | ||
2530 | { 0x3fffffff, 0x00284a23, 0x000 }, | ||
2531 | { 0x0000a010, 0x00204411, 0x000 }, | ||
2532 | { 0x00000000, 0x00204804, 0x000 }, | ||
2533 | { 0x00000030, 0x0020162d, 0x000 }, | ||
2534 | { 0x00000002, 0x00291625, 0x000 }, | ||
2535 | { 0x00000030, 0x00203625, 0x000 }, | ||
2536 | { 0x00000025, 0x0020162d, 0x000 }, | ||
2537 | { 0x00000000, 0x002f00a3, 0x000 }, | ||
2538 | { 0x00000000, 0x0cc00000, 0x083 }, | ||
2539 | { 0x00000026, 0x0020162d, 0x000 }, | ||
2540 | { 0x00000000, 0x002f00a4, 0x000 }, | ||
2541 | { 0x00000000, 0x0cc00000, 0x084 }, | ||
2542 | { 0x00000000, 0x00400000, 0x08a }, | ||
2543 | { 0x00000025, 0x00203623, 0x000 }, | ||
2544 | { 0x00000026, 0x00203624, 0x000 }, | ||
2545 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
2546 | { 0x00000002, 0x00210227, 0x000 }, | ||
2547 | { 0x00000000, 0x14e00000, 0x08a }, | ||
2548 | { 0x00000000, 0x00600000, 0x668 }, | ||
2549 | { 0x00000000, 0x00600000, 0x65c }, | ||
2550 | { 0x00000002, 0x00210e22, 0x000 }, | ||
2551 | { 0x00000000, 0x14c00000, 0x08d }, | ||
2552 | { 0x00000012, 0xc0403620, 0x093 }, | ||
2553 | { 0x00000000, 0x2ee00000, 0x091 }, | ||
2554 | { 0x00000000, 0x2ce00000, 0x090 }, | ||
2555 | { 0x00000002, 0x00400e2d, 0x092 }, | ||
2556 | { 0x00000003, 0x00400e2d, 0x092 }, | ||
2557 | { 0x0000000c, 0x00200e2d, 0x000 }, | ||
2558 | { 0x00000012, 0x00203623, 0x000 }, | ||
2559 | { 0x00000003, 0x00210e22, 0x000 }, | ||
2560 | { 0x00000000, 0x14c00000, 0x098 }, | ||
2561 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
2562 | { 0x00000000, 0xc0204800, 0x000 }, | ||
2563 | { 0x00000000, 0xc0404800, 0x0a0 }, | ||
2564 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
2565 | { 0x00000000, 0x00204811, 0x000 }, | ||
2566 | { 0x00000000, 0x2ee00000, 0x09e }, | ||
2567 | { 0x00000000, 0x2ce00000, 0x09d }, | ||
2568 | { 0x00000002, 0x00400e2d, 0x09f }, | ||
2569 | { 0x00000003, 0x00400e2d, 0x09f }, | ||
2570 | { 0x0000000c, 0x00200e2d, 0x000 }, | ||
2571 | { 0x00000000, 0x00204803, 0x000 }, | ||
2572 | { 0x00000000, 0x003a0c02, 0x000 }, | ||
2573 | { 0x003f0000, 0x00280e23, 0x000 }, | ||
2574 | { 0x00000010, 0x00210e23, 0x000 }, | ||
2575 | { 0x00000011, 0x00203623, 0x000 }, | ||
2576 | { 0x0000001e, 0x0021022b, 0x000 }, | ||
2577 | { 0x00000000, 0x14c00000, 0x0a7 }, | ||
2578 | { 0x00000016, 0xc0203620, 0x000 }, | ||
2579 | { 0x0000001f, 0x0021022b, 0x000 }, | ||
2580 | { 0x00000000, 0x14c00000, 0x0aa }, | ||
2581 | { 0x00000015, 0xc0203620, 0x000 }, | ||
2582 | { 0x00000008, 0x00210e2b, 0x000 }, | ||
2583 | { 0x0000007f, 0x00280e23, 0x000 }, | ||
2584 | { 0x00000000, 0x002f0223, 0x000 }, | ||
2585 | { 0x00000000, 0x0ce00000, 0x0e1 }, | ||
2586 | { 0x00000000, 0x27000000, 0x000 }, | ||
2587 | { 0x00000000, 0x00600000, 0x2a3 }, | ||
2588 | { 0x00000001, 0x002f0223, 0x000 }, | ||
2589 | { 0x00000000, 0x0ae00000, 0x0b3 }, | ||
2590 | { 0x00000000, 0x00600000, 0x13a }, | ||
2591 | { 0x81000000, 0x00204411, 0x000 }, | ||
2592 | { 0x00000006, 0x00204811, 0x000 }, | ||
2593 | { 0x0000000c, 0x00221e30, 0x000 }, | ||
2594 | { 0x99800000, 0x00204411, 0x000 }, | ||
2595 | { 0x00000004, 0x0020122d, 0x000 }, | ||
2596 | { 0x00000008, 0x00221224, 0x000 }, | ||
2597 | { 0x00000010, 0x00201811, 0x000 }, | ||
2598 | { 0x00000000, 0x00291ce4, 0x000 }, | ||
2599 | { 0x00000000, 0x00604807, 0x12f }, | ||
2600 | { 0x9b000000, 0x00204411, 0x000 }, | ||
2601 | { 0x00000000, 0x00204802, 0x000 }, | ||
2602 | { 0x9c000000, 0x00204411, 0x000 }, | ||
2603 | { 0x00000000, 0x0033146f, 0x000 }, | ||
2604 | { 0x00000001, 0x00333e23, 0x000 }, | ||
2605 | { 0x00000000, 0xd9004800, 0x000 }, | ||
2606 | { 0x00000000, 0x00203c05, 0x000 }, | ||
2607 | { 0x81000000, 0x00204411, 0x000 }, | ||
2608 | { 0x0000000e, 0x00204811, 0x000 }, | ||
2609 | { 0x00000000, 0x00201010, 0x000 }, | ||
2610 | { 0x0000e007, 0x00204411, 0x000 }, | ||
2611 | { 0x0000000f, 0x0021022b, 0x000 }, | ||
2612 | { 0x00000000, 0x14c00000, 0x0cb }, | ||
2613 | { 0x00f8ff08, 0x00204811, 0x000 }, | ||
2614 | { 0x98000000, 0x00404811, 0x0dc }, | ||
2615 | { 0x000000f0, 0x00280e22, 0x000 }, | ||
2616 | { 0x000000a0, 0x002f0223, 0x000 }, | ||
2617 | { 0x00000000, 0x0cc00000, 0x0da }, | ||
2618 | { 0x00000011, 0x00200e2d, 0x000 }, | ||
2619 | { 0x00000001, 0x002f0223, 0x000 }, | ||
2620 | { 0x00000000, 0x0ce00000, 0x0d5 }, | ||
2621 | { 0x00000002, 0x002f0223, 0x000 }, | ||
2622 | { 0x00000000, 0x0ce00000, 0x0d4 }, | ||
2623 | { 0x00003f00, 0x00400c11, 0x0d6 }, | ||
2624 | { 0x00001f00, 0x00400c11, 0x0d6 }, | ||
2625 | { 0x00000f00, 0x00200c11, 0x000 }, | ||
2626 | { 0x00380009, 0x00294a23, 0x000 }, | ||
2627 | { 0x3f000000, 0x00280e2b, 0x000 }, | ||
2628 | { 0x00000002, 0x00220e23, 0x000 }, | ||
2629 | { 0x00000007, 0x00494a23, 0x0dc }, | ||
2630 | { 0x00380f09, 0x00204811, 0x000 }, | ||
2631 | { 0x68000007, 0x00204811, 0x000 }, | ||
2632 | { 0x00000008, 0x00214a27, 0x000 }, | ||
2633 | { 0x00000000, 0x00204811, 0x000 }, | ||
2634 | { 0x060a0200, 0x00294a24, 0x000 }, | ||
2635 | { 0x00000000, 0x00204811, 0x000 }, | ||
2636 | { 0x00000000, 0x00204811, 0x000 }, | ||
2637 | { 0x0000a202, 0x00204411, 0x000 }, | ||
2638 | { 0x00ff0000, 0x00280e22, 0x000 }, | ||
2639 | { 0x00000080, 0x00294a23, 0x000 }, | ||
2640 | { 0x00000027, 0x00200e2d, 0x000 }, | ||
2641 | { 0x00000026, 0x0020122d, 0x000 }, | ||
2642 | { 0x00000000, 0x002f0083, 0x000 }, | ||
2643 | { 0x00000000, 0x0ce00000, 0x0ea }, | ||
2644 | { 0x00000000, 0x00600000, 0x662 }, | ||
2645 | { 0x00000000, 0x00400000, 0x0eb }, | ||
2646 | { 0x00000000, 0x00600000, 0x665 }, | ||
2647 | { 0x00000007, 0x0020222d, 0x000 }, | ||
2648 | { 0x00000005, 0x00220e22, 0x000 }, | ||
2649 | { 0x00100000, 0x00280e23, 0x000 }, | ||
2650 | { 0x00000000, 0x00292068, 0x000 }, | ||
2651 | { 0x00000000, 0x003a0c02, 0x000 }, | ||
2652 | { 0x000000ef, 0x00280e23, 0x000 }, | ||
2653 | { 0x00000000, 0x00292068, 0x000 }, | ||
2654 | { 0x00000017, 0x00200e2d, 0x000 }, | ||
2655 | { 0x00000003, 0x00210223, 0x000 }, | ||
2656 | { 0x00000000, 0x14e00000, 0x0f8 }, | ||
2657 | { 0x0000000b, 0x00210228, 0x000 }, | ||
2658 | { 0x00000000, 0x14c00000, 0x0f8 }, | ||
2659 | { 0x00000400, 0x00292228, 0x000 }, | ||
2660 | { 0x00000014, 0x00203628, 0x000 }, | ||
2661 | { 0x0000001c, 0x00210e22, 0x000 }, | ||
2662 | { 0x00000000, 0x14c00000, 0x0fd }, | ||
2663 | { 0x0000a30c, 0x00204411, 0x000 }, | ||
2664 | { 0x00000000, 0x00204811, 0x000 }, | ||
2665 | { 0x0000001e, 0x00210e22, 0x000 }, | ||
2666 | { 0x00000000, 0x14c00000, 0x10b }, | ||
2667 | { 0x0000a30f, 0x00204411, 0x000 }, | ||
2668 | { 0x00000011, 0x00200e2d, 0x000 }, | ||
2669 | { 0x00000001, 0x002f0223, 0x000 }, | ||
2670 | { 0x00000000, 0x0cc00000, 0x104 }, | ||
2671 | { 0xffffffff, 0x00404811, 0x10b }, | ||
2672 | { 0x00000002, 0x002f0223, 0x000 }, | ||
2673 | { 0x00000000, 0x0cc00000, 0x107 }, | ||
2674 | { 0x0000ffff, 0x00404811, 0x10b }, | ||
2675 | { 0x00000004, 0x002f0223, 0x000 }, | ||
2676 | { 0x00000000, 0x0cc00000, 0x10a }, | ||
2677 | { 0x000000ff, 0x00404811, 0x10b }, | ||
2678 | { 0x00000001, 0x00204811, 0x000 }, | ||
2679 | { 0x0002c400, 0x00204411, 0x000 }, | ||
2680 | { 0x0000001f, 0x00210e22, 0x000 }, | ||
2681 | { 0x00000000, 0x14c00000, 0x112 }, | ||
2682 | { 0x00000010, 0x40210e20, 0x000 }, | ||
2683 | { 0x00000013, 0x00203623, 0x000 }, | ||
2684 | { 0x00000018, 0x40224a20, 0x000 }, | ||
2685 | { 0x00000010, 0xc0424a20, 0x114 }, | ||
2686 | { 0x00000000, 0x00200c11, 0x000 }, | ||
2687 | { 0x00000013, 0x00203623, 0x000 }, | ||
2688 | { 0x00000000, 0x00204811, 0x000 }, | ||
2689 | { 0x00000000, 0x00204811, 0x000 }, | ||
2690 | { 0x0000000a, 0x00201011, 0x000 }, | ||
2691 | { 0x00000000, 0x002f0224, 0x000 }, | ||
2692 | { 0x00000000, 0x0ce00000, 0x11b }, | ||
2693 | { 0x00000000, 0x00204811, 0x000 }, | ||
2694 | { 0x00000001, 0x00531224, 0x117 }, | ||
2695 | { 0xffbfffff, 0x00283a2e, 0x000 }, | ||
2696 | { 0x0000001b, 0x00210222, 0x000 }, | ||
2697 | { 0x00000000, 0x14c00000, 0x12e }, | ||
2698 | { 0x81000000, 0x00204411, 0x000 }, | ||
2699 | { 0x0000000d, 0x00204811, 0x000 }, | ||
2700 | { 0x00000018, 0x00220e30, 0x000 }, | ||
2701 | { 0xfc000000, 0x00280e23, 0x000 }, | ||
2702 | { 0x81000000, 0x00204411, 0x000 }, | ||
2703 | { 0x0000000e, 0x00204811, 0x000 }, | ||
2704 | { 0x00000000, 0x00201010, 0x000 }, | ||
2705 | { 0x0000e00e, 0x00204411, 0x000 }, | ||
2706 | { 0x07f8ff08, 0x00204811, 0x000 }, | ||
2707 | { 0x00000000, 0x00294a23, 0x000 }, | ||
2708 | { 0x0000001c, 0x00201e2d, 0x000 }, | ||
2709 | { 0x00000008, 0x00214a27, 0x000 }, | ||
2710 | { 0x00000000, 0x00204811, 0x000 }, | ||
2711 | { 0x060a0200, 0x00294a24, 0x000 }, | ||
2712 | { 0x00000000, 0x00204811, 0x000 }, | ||
2713 | { 0x00000000, 0x00204811, 0x000 }, | ||
2714 | { 0x00000000, 0x00800000, 0x000 }, | ||
2715 | { 0x81000000, 0x00204411, 0x000 }, | ||
2716 | { 0x00000001, 0x00204811, 0x000 }, | ||
2717 | { 0x0000217c, 0x00204411, 0x000 }, | ||
2718 | { 0x00800000, 0x00204811, 0x000 }, | ||
2719 | { 0x00000000, 0x00204806, 0x000 }, | ||
2720 | { 0x00000008, 0x00214a27, 0x000 }, | ||
2721 | { 0x00000000, 0x17000000, 0x000 }, | ||
2722 | { 0x0004217f, 0x00604411, 0x68d }, | ||
2723 | { 0x0000001f, 0x00210230, 0x000 }, | ||
2724 | { 0x00000000, 0x14c00000, 0x68c }, | ||
2725 | { 0x00000004, 0x00404c11, 0x135 }, | ||
2726 | { 0x81000000, 0x00204411, 0x000 }, | ||
2727 | { 0x00000001, 0x00204811, 0x000 }, | ||
2728 | { 0x000021f8, 0x00204411, 0x000 }, | ||
2729 | { 0x0000001c, 0x00204811, 0x000 }, | ||
2730 | { 0x000421f9, 0x00604411, 0x68d }, | ||
2731 | { 0x00000011, 0x00210230, 0x000 }, | ||
2732 | { 0x00000000, 0x14e00000, 0x13c }, | ||
2733 | { 0x00000000, 0x00800000, 0x000 }, | ||
2734 | { 0x00000000, 0x00600000, 0x00b }, | ||
2735 | { 0x00000000, 0x00600411, 0x315 }, | ||
2736 | { 0x00000000, 0x00200411, 0x000 }, | ||
2737 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
2738 | { 0x00000000, 0x00600000, 0x160 }, | ||
2739 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
2740 | { 0x00000010, 0xc0211220, 0x000 }, | ||
2741 | { 0x0000ffff, 0x40280620, 0x000 }, | ||
2742 | { 0x00000010, 0xc0210a20, 0x000 }, | ||
2743 | { 0x00000000, 0x00341461, 0x000 }, | ||
2744 | { 0x00000000, 0x00741882, 0x2bb }, | ||
2745 | { 0x0001a1fd, 0x00604411, 0x2e0 }, | ||
2746 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
2747 | { 0x00000000, 0x0cc00000, 0x147 }, | ||
2748 | { 0x00000000, 0xc0400400, 0x001 }, | ||
2749 | { 0x00000000, 0x00600000, 0x00b }, | ||
2750 | { 0x00000000, 0x00600411, 0x315 }, | ||
2751 | { 0x00000000, 0x00200411, 0x000 }, | ||
2752 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
2753 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
2754 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
2755 | { 0x00000000, 0x00600000, 0x160 }, | ||
2756 | { 0x00000010, 0x40210e20, 0x000 }, | ||
2757 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
2758 | { 0x00000010, 0x40211620, 0x000 }, | ||
2759 | { 0x0000ffff, 0xc0681a20, 0x2bb }, | ||
2760 | { 0x0001a1fd, 0x00604411, 0x2e0 }, | ||
2761 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
2762 | { 0x00000000, 0x0cc00000, 0x158 }, | ||
2763 | { 0x00000000, 0xc0400400, 0x001 }, | ||
2764 | { 0x0000225c, 0x00204411, 0x000 }, | ||
2765 | { 0x00000001, 0x00300a2f, 0x000 }, | ||
2766 | { 0x00000001, 0x00210a22, 0x000 }, | ||
2767 | { 0x00000003, 0x00384a22, 0x000 }, | ||
2768 | { 0x00002256, 0x00204411, 0x000 }, | ||
2769 | { 0x0000001a, 0x00204811, 0x000 }, | ||
2770 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
2771 | { 0x00000001, 0x00804811, 0x000 }, | ||
2772 | { 0x00000000, 0x00600000, 0x00b }, | ||
2773 | { 0x00000000, 0x00600000, 0x18f }, | ||
2774 | { 0x00000000, 0x00600000, 0x1a0 }, | ||
2775 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
2776 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
2777 | { 0x00000000, 0x00202c08, 0x000 }, | ||
2778 | { 0x00000000, 0x00202411, 0x000 }, | ||
2779 | { 0x00000000, 0x00202811, 0x000 }, | ||
2780 | { 0x00002256, 0x00204411, 0x000 }, | ||
2781 | { 0x00000016, 0x00204811, 0x000 }, | ||
2782 | { 0x0000225c, 0x00204411, 0x000 }, | ||
2783 | { 0x00000003, 0x00204811, 0x000 }, | ||
2784 | { 0x93800000, 0x00204411, 0x000 }, | ||
2785 | { 0x00000002, 0x00221e29, 0x000 }, | ||
2786 | { 0x00000000, 0x007048eb, 0x19c }, | ||
2787 | { 0x00000000, 0x00600000, 0x2bb }, | ||
2788 | { 0x00000001, 0x40330620, 0x000 }, | ||
2789 | { 0x00000000, 0xc0302409, 0x000 }, | ||
2790 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
2791 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
2792 | { 0x00000000, 0x00600000, 0x2a3 }, | ||
2793 | { 0x00000000, 0x002f0221, 0x000 }, | ||
2794 | { 0x00000000, 0x0ae00000, 0x181 }, | ||
2795 | { 0x00000000, 0x00600000, 0x13a }, | ||
2796 | { 0x00000000, 0x00400000, 0x186 }, | ||
2797 | { 0x95000000, 0x00204411, 0x000 }, | ||
2798 | { 0x00000000, 0x002f0221, 0x000 }, | ||
2799 | { 0x00000000, 0x0ce00000, 0x186 }, | ||
2800 | { 0x00000000, 0xc0204800, 0x000 }, | ||
2801 | { 0x00000001, 0x00530621, 0x182 }, | ||
2802 | { 0x92000000, 0x00204411, 0x000 }, | ||
2803 | { 0x00000000, 0xc0604800, 0x197 }, | ||
2804 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
2805 | { 0x00000011, 0x0020062d, 0x000 }, | ||
2806 | { 0x00000000, 0x0078042a, 0x2fb }, | ||
2807 | { 0x00000000, 0x00202809, 0x000 }, | ||
2808 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
2809 | { 0x00000000, 0x0cc00000, 0x174 }, | ||
2810 | { 0x00000000, 0xc0400400, 0x001 }, | ||
2811 | { 0x00000210, 0x00600411, 0x315 }, | ||
2812 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
2813 | { 0x00000000, 0x0ce00000, 0x194 }, | ||
2814 | { 0x00000015, 0xc0203620, 0x000 }, | ||
2815 | { 0x00000016, 0xc0203620, 0x000 }, | ||
2816 | { 0x3f800000, 0x00200411, 0x000 }, | ||
2817 | { 0x46000000, 0x00600811, 0x1b2 }, | ||
2818 | { 0x00000000, 0x00800000, 0x000 }, | ||
2819 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
2820 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
2821 | { 0x00000000, 0x0cc00000, 0x19b }, | ||
2822 | { 0x00000001, 0x00804811, 0x000 }, | ||
2823 | { 0x00000021, 0x00804811, 0x000 }, | ||
2824 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
2825 | { 0x00000010, 0xc0211220, 0x000 }, | ||
2826 | { 0x0000ffff, 0x40281620, 0x000 }, | ||
2827 | { 0x00000010, 0xc0811a20, 0x000 }, | ||
2828 | { 0x81000000, 0x00204411, 0x000 }, | ||
2829 | { 0x00000006, 0x00204811, 0x000 }, | ||
2830 | { 0x00000008, 0x00221e30, 0x000 }, | ||
2831 | { 0x00000029, 0x00201a2d, 0x000 }, | ||
2832 | { 0x0000e000, 0x00204411, 0x000 }, | ||
2833 | { 0xfffbff09, 0x00204811, 0x000 }, | ||
2834 | { 0x0000000f, 0x0020222d, 0x000 }, | ||
2835 | { 0x00001fff, 0x00294a28, 0x000 }, | ||
2836 | { 0x00000006, 0x0020222d, 0x000 }, | ||
2837 | { 0x00000000, 0x002920e8, 0x000 }, | ||
2838 | { 0x00000000, 0x00204808, 0x000 }, | ||
2839 | { 0x00000000, 0x00204811, 0x000 }, | ||
2840 | { 0x060a0200, 0x00294a26, 0x000 }, | ||
2841 | { 0x00000000, 0x00204811, 0x000 }, | ||
2842 | { 0x00000000, 0x00204811, 0x000 }, | ||
2843 | { 0x00000100, 0x00201811, 0x000 }, | ||
2844 | { 0x00000008, 0x00621e28, 0x12f }, | ||
2845 | { 0x00000008, 0x00822228, 0x000 }, | ||
2846 | { 0x0002c000, 0x00204411, 0x000 }, | ||
2847 | { 0x00000015, 0x00600e2d, 0x1bd }, | ||
2848 | { 0x00000016, 0x00600e2d, 0x1bd }, | ||
2849 | { 0x0000c008, 0x00204411, 0x000 }, | ||
2850 | { 0x00000017, 0x00200e2d, 0x000 }, | ||
2851 | { 0x00000000, 0x14c00000, 0x1b9 }, | ||
2852 | { 0x00000000, 0x00200411, 0x000 }, | ||
2853 | { 0x00000000, 0x00204801, 0x000 }, | ||
2854 | { 0x39000000, 0x00204811, 0x000 }, | ||
2855 | { 0x00000000, 0x00204811, 0x000 }, | ||
2856 | { 0x00000000, 0x00804802, 0x000 }, | ||
2857 | { 0x00000018, 0x00202e2d, 0x000 }, | ||
2858 | { 0x00000000, 0x003b0d63, 0x000 }, | ||
2859 | { 0x00000008, 0x00224a23, 0x000 }, | ||
2860 | { 0x00000010, 0x00224a23, 0x000 }, | ||
2861 | { 0x00000018, 0x00224a23, 0x000 }, | ||
2862 | { 0x00000000, 0x00804803, 0x000 }, | ||
2863 | { 0x00000000, 0x00600000, 0x00b }, | ||
2864 | { 0x00001000, 0x00600411, 0x315 }, | ||
2865 | { 0x00000000, 0x00200411, 0x000 }, | ||
2866 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
2867 | { 0x00000007, 0x0021062f, 0x000 }, | ||
2868 | { 0x00000013, 0x00200a2d, 0x000 }, | ||
2869 | { 0x00000001, 0x00202c11, 0x000 }, | ||
2870 | { 0x0000ffff, 0x40282220, 0x000 }, | ||
2871 | { 0x0000000f, 0x00262228, 0x000 }, | ||
2872 | { 0x00000010, 0x40212620, 0x000 }, | ||
2873 | { 0x0000000f, 0x00262629, 0x000 }, | ||
2874 | { 0x00000000, 0x00202802, 0x000 }, | ||
2875 | { 0x00002256, 0x00204411, 0x000 }, | ||
2876 | { 0x0000001b, 0x00204811, 0x000 }, | ||
2877 | { 0x00000000, 0x002f0221, 0x000 }, | ||
2878 | { 0x00000000, 0x0ce00000, 0x1e0 }, | ||
2879 | { 0x0000225c, 0x00204411, 0x000 }, | ||
2880 | { 0x00000081, 0x00204811, 0x000 }, | ||
2881 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
2882 | { 0x00000001, 0x00204811, 0x000 }, | ||
2883 | { 0x00000080, 0x00201c11, 0x000 }, | ||
2884 | { 0x00000000, 0x002f0227, 0x000 }, | ||
2885 | { 0x00000000, 0x0ce00000, 0x1dc }, | ||
2886 | { 0x00000000, 0x00600000, 0x1e9 }, | ||
2887 | { 0x00000001, 0x00531e27, 0x1d8 }, | ||
2888 | { 0x00000001, 0x00202c11, 0x000 }, | ||
2889 | { 0x0000001f, 0x00280a22, 0x000 }, | ||
2890 | { 0x0000001f, 0x00282a2a, 0x000 }, | ||
2891 | { 0x00000001, 0x00530621, 0x1d1 }, | ||
2892 | { 0x0000225c, 0x00204411, 0x000 }, | ||
2893 | { 0x00000002, 0x00304a2f, 0x000 }, | ||
2894 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
2895 | { 0x00000001, 0x00204811, 0x000 }, | ||
2896 | { 0x00000001, 0x00301e2f, 0x000 }, | ||
2897 | { 0x00000000, 0x002f0227, 0x000 }, | ||
2898 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
2899 | { 0x00000000, 0x00600000, 0x1e9 }, | ||
2900 | { 0x00000001, 0x00531e27, 0x1e5 }, | ||
2901 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
2902 | { 0x0000000f, 0x00260e23, 0x000 }, | ||
2903 | { 0x00000010, 0xc0211220, 0x000 }, | ||
2904 | { 0x0000000f, 0x00261224, 0x000 }, | ||
2905 | { 0x00000000, 0x00201411, 0x000 }, | ||
2906 | { 0x00000000, 0x00601811, 0x2bb }, | ||
2907 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
2908 | { 0x00000000, 0x002f022b, 0x000 }, | ||
2909 | { 0x00000000, 0x0ce00000, 0x1f8 }, | ||
2910 | { 0x00000010, 0x00221628, 0x000 }, | ||
2911 | { 0xffff0000, 0x00281625, 0x000 }, | ||
2912 | { 0x0000ffff, 0x00281a29, 0x000 }, | ||
2913 | { 0x00000000, 0x002948c5, 0x000 }, | ||
2914 | { 0x00000000, 0x0020480a, 0x000 }, | ||
2915 | { 0x00000000, 0x00202c11, 0x000 }, | ||
2916 | { 0x00000010, 0x00221623, 0x000 }, | ||
2917 | { 0xffff0000, 0x00281625, 0x000 }, | ||
2918 | { 0x0000ffff, 0x00281a24, 0x000 }, | ||
2919 | { 0x00000000, 0x002948c5, 0x000 }, | ||
2920 | { 0x00000000, 0x00731503, 0x205 }, | ||
2921 | { 0x00000000, 0x00201805, 0x000 }, | ||
2922 | { 0x00000000, 0x00731524, 0x205 }, | ||
2923 | { 0x00000000, 0x002d14c5, 0x000 }, | ||
2924 | { 0x00000000, 0x003008a2, 0x000 }, | ||
2925 | { 0x00000000, 0x00204802, 0x000 }, | ||
2926 | { 0x00000000, 0x00202802, 0x000 }, | ||
2927 | { 0x00000000, 0x00202003, 0x000 }, | ||
2928 | { 0x00000000, 0x00802404, 0x000 }, | ||
2929 | { 0x0000000f, 0x00210225, 0x000 }, | ||
2930 | { 0x00000000, 0x14c00000, 0x68c }, | ||
2931 | { 0x00000000, 0x002b1405, 0x000 }, | ||
2932 | { 0x00000001, 0x00901625, 0x000 }, | ||
2933 | { 0x00000000, 0x00600000, 0x00b }, | ||
2934 | { 0x00000000, 0x00600411, 0x315 }, | ||
2935 | { 0x00000000, 0x00200411, 0x000 }, | ||
2936 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
2937 | { 0x00002256, 0x00204411, 0x000 }, | ||
2938 | { 0x0000001a, 0x00294a22, 0x000 }, | ||
2939 | { 0x00000000, 0xc0200000, 0x000 }, | ||
2940 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
2941 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
2942 | { 0x00000000, 0xc0200400, 0x000 }, | ||
2943 | { 0x0000225c, 0x00204411, 0x000 }, | ||
2944 | { 0x00000003, 0x00384a21, 0x000 }, | ||
2945 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
2946 | { 0x00000001, 0x00204811, 0x000 }, | ||
2947 | { 0x0000ffff, 0x40281220, 0x000 }, | ||
2948 | { 0x00000010, 0xc0211a20, 0x000 }, | ||
2949 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
2950 | { 0x00000010, 0xc0211620, 0x000 }, | ||
2951 | { 0x00000000, 0x00741465, 0x2bb }, | ||
2952 | { 0x0001a1fd, 0x00604411, 0x2e0 }, | ||
2953 | { 0x00000001, 0x00330621, 0x000 }, | ||
2954 | { 0x00000000, 0x002f0221, 0x000 }, | ||
2955 | { 0x00000000, 0x0cc00000, 0x219 }, | ||
2956 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
2957 | { 0x00000000, 0x0cc00000, 0x212 }, | ||
2958 | { 0x00000000, 0xc0400400, 0x001 }, | ||
2959 | { 0x00000000, 0x00600000, 0x645 }, | ||
2960 | { 0x00000000, 0x0040040f, 0x213 }, | ||
2961 | { 0x00000000, 0x00600000, 0x631 }, | ||
2962 | { 0x00000000, 0x00600000, 0x645 }, | ||
2963 | { 0x00000210, 0x00600411, 0x315 }, | ||
2964 | { 0x00000000, 0x00600000, 0x1a0 }, | ||
2965 | { 0x00000000, 0x00600000, 0x19c }, | ||
2966 | { 0x00000000, 0x00600000, 0x2bb }, | ||
2967 | { 0x00000000, 0x00600000, 0x2a3 }, | ||
2968 | { 0x93800000, 0x00204411, 0x000 }, | ||
2969 | { 0x00000000, 0x00204808, 0x000 }, | ||
2970 | { 0x00000000, 0x002f022f, 0x000 }, | ||
2971 | { 0x00000000, 0x0ae00000, 0x232 }, | ||
2972 | { 0x00000000, 0x00600000, 0x13a }, | ||
2973 | { 0x00000000, 0x00400000, 0x236 }, | ||
2974 | { 0x95000000, 0x00204411, 0x000 }, | ||
2975 | { 0x00000000, 0x002f022f, 0x000 }, | ||
2976 | { 0x00000000, 0x0ce00000, 0x236 }, | ||
2977 | { 0x00000000, 0xc0404800, 0x233 }, | ||
2978 | { 0x92000000, 0x00204411, 0x000 }, | ||
2979 | { 0x00000000, 0xc0204800, 0x000 }, | ||
2980 | { 0x00002256, 0x00204411, 0x000 }, | ||
2981 | { 0x00000016, 0x00204811, 0x000 }, | ||
2982 | { 0x0000225c, 0x00204411, 0x000 }, | ||
2983 | { 0x00000003, 0x00204811, 0x000 }, | ||
2984 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
2985 | { 0x00000001, 0x00204811, 0x000 }, | ||
2986 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
2987 | { 0x00000000, 0x00600411, 0x2fb }, | ||
2988 | { 0x00000000, 0xc0400400, 0x001 }, | ||
2989 | { 0x00000000, 0x00600000, 0x631 }, | ||
2990 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
2991 | { 0x00000000, 0xc0204800, 0x000 }, | ||
2992 | { 0x00000000, 0xc0404800, 0x000 }, | ||
2993 | { 0x00000000, 0x00600000, 0x00b }, | ||
2994 | { 0x00000018, 0x40210a20, 0x000 }, | ||
2995 | { 0x00000003, 0x002f0222, 0x000 }, | ||
2996 | { 0x00000000, 0x0ae00000, 0x24c }, | ||
2997 | { 0x00000014, 0x0020222d, 0x000 }, | ||
2998 | { 0x00080101, 0x00292228, 0x000 }, | ||
2999 | { 0x00000014, 0x00203628, 0x000 }, | ||
3000 | { 0x0000a30c, 0x00204411, 0x000 }, | ||
3001 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3002 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3003 | { 0x00000000, 0xc0404800, 0x251 }, | ||
3004 | { 0x00000000, 0x00600000, 0x00b }, | ||
3005 | { 0x00000010, 0x00600411, 0x315 }, | ||
3006 | { 0x3f800000, 0x00200411, 0x000 }, | ||
3007 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
3008 | { 0x0000225c, 0x00204411, 0x000 }, | ||
3009 | { 0x00000003, 0x00204811, 0x000 }, | ||
3010 | { 0x00000000, 0x00600000, 0x27c }, | ||
3011 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
3012 | { 0x00000001, 0x00211e27, 0x000 }, | ||
3013 | { 0x00000000, 0x14e00000, 0x26a }, | ||
3014 | { 0x00000012, 0x00201e2d, 0x000 }, | ||
3015 | { 0x0000ffff, 0x00281e27, 0x000 }, | ||
3016 | { 0x00000000, 0x00341c27, 0x000 }, | ||
3017 | { 0x00000000, 0x12c00000, 0x25f }, | ||
3018 | { 0x00000000, 0x00201c11, 0x000 }, | ||
3019 | { 0x00000000, 0x002f00e5, 0x000 }, | ||
3020 | { 0x00000000, 0x08c00000, 0x262 }, | ||
3021 | { 0x00000000, 0x00201407, 0x000 }, | ||
3022 | { 0x00000012, 0x00201e2d, 0x000 }, | ||
3023 | { 0x00000010, 0x00211e27, 0x000 }, | ||
3024 | { 0x00000000, 0x00341c47, 0x000 }, | ||
3025 | { 0x00000000, 0x12c00000, 0x267 }, | ||
3026 | { 0x00000000, 0x00201c11, 0x000 }, | ||
3027 | { 0x00000000, 0x002f00e6, 0x000 }, | ||
3028 | { 0x00000000, 0x08c00000, 0x26a }, | ||
3029 | { 0x00000000, 0x00201807, 0x000 }, | ||
3030 | { 0x00000000, 0x00600000, 0x2c1 }, | ||
3031 | { 0x00002256, 0x00204411, 0x000 }, | ||
3032 | { 0x00000000, 0x00342023, 0x000 }, | ||
3033 | { 0x00000000, 0x12c00000, 0x272 }, | ||
3034 | { 0x00000000, 0x00342044, 0x000 }, | ||
3035 | { 0x00000000, 0x12c00000, 0x271 }, | ||
3036 | { 0x00000016, 0x00404811, 0x276 }, | ||
3037 | { 0x00000018, 0x00404811, 0x276 }, | ||
3038 | { 0x00000000, 0x00342044, 0x000 }, | ||
3039 | { 0x00000000, 0x12c00000, 0x275 }, | ||
3040 | { 0x00000017, 0x00404811, 0x276 }, | ||
3041 | { 0x00000019, 0x00204811, 0x000 }, | ||
3042 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
3043 | { 0x00000001, 0x00204811, 0x000 }, | ||
3044 | { 0x0001a1fd, 0x00604411, 0x2e9 }, | ||
3045 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
3046 | { 0x00000000, 0x0cc00000, 0x256 }, | ||
3047 | { 0x00000000, 0xc0400400, 0x001 }, | ||
3048 | { 0x00000010, 0x40210620, 0x000 }, | ||
3049 | { 0x0000ffff, 0xc0280a20, 0x000 }, | ||
3050 | { 0x00000010, 0x40210e20, 0x000 }, | ||
3051 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
3052 | { 0x00000010, 0x40211620, 0x000 }, | ||
3053 | { 0x0000ffff, 0xc0881a20, 0x000 }, | ||
3054 | { 0x81000000, 0x00204411, 0x000 }, | ||
3055 | { 0x00000001, 0x00204811, 0x000 }, | ||
3056 | { 0x00042004, 0x00604411, 0x68d }, | ||
3057 | { 0x00000000, 0x00600000, 0x631 }, | ||
3058 | { 0x00000000, 0xc0600000, 0x2a3 }, | ||
3059 | { 0x00000005, 0x00200a2d, 0x000 }, | ||
3060 | { 0x00000008, 0x00220a22, 0x000 }, | ||
3061 | { 0x0000002b, 0x00201a2d, 0x000 }, | ||
3062 | { 0x0000001c, 0x00201e2d, 0x000 }, | ||
3063 | { 0x00007000, 0x00281e27, 0x000 }, | ||
3064 | { 0x00000000, 0x00311ce6, 0x000 }, | ||
3065 | { 0x0000002a, 0x00201a2d, 0x000 }, | ||
3066 | { 0x0000000c, 0x00221a26, 0x000 }, | ||
3067 | { 0x00000000, 0x002f00e6, 0x000 }, | ||
3068 | { 0x00000000, 0x06e00000, 0x292 }, | ||
3069 | { 0x00000000, 0x00201c11, 0x000 }, | ||
3070 | { 0x00000000, 0x00200c11, 0x000 }, | ||
3071 | { 0x0000002b, 0x00203623, 0x000 }, | ||
3072 | { 0x00000010, 0x00201811, 0x000 }, | ||
3073 | { 0x00000000, 0x00691ce2, 0x12f }, | ||
3074 | { 0x93800000, 0x00204411, 0x000 }, | ||
3075 | { 0x00000000, 0x00204807, 0x000 }, | ||
3076 | { 0x95000000, 0x00204411, 0x000 }, | ||
3077 | { 0x00000000, 0x002f022f, 0x000 }, | ||
3078 | { 0x00000000, 0x0ce00000, 0x29d }, | ||
3079 | { 0x00000001, 0x00333e2f, 0x000 }, | ||
3080 | { 0x00000000, 0xd9004800, 0x000 }, | ||
3081 | { 0x92000000, 0x00204411, 0x000 }, | ||
3082 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3083 | { 0x0000001c, 0x00403627, 0x000 }, | ||
3084 | { 0x0000000c, 0xc0220a20, 0x000 }, | ||
3085 | { 0x00000029, 0x00203622, 0x000 }, | ||
3086 | { 0x00000028, 0xc0403620, 0x000 }, | ||
3087 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
3088 | { 0x00000009, 0x00204811, 0x000 }, | ||
3089 | { 0xa1000000, 0x00204411, 0x000 }, | ||
3090 | { 0x00000001, 0x00804811, 0x000 }, | ||
3091 | { 0x00000021, 0x00201e2d, 0x000 }, | ||
3092 | { 0x00000000, 0x002c1ce3, 0x000 }, | ||
3093 | { 0x00000021, 0x00203627, 0x000 }, | ||
3094 | { 0x00000022, 0x00201e2d, 0x000 }, | ||
3095 | { 0x00000000, 0x002c1ce4, 0x000 }, | ||
3096 | { 0x00000022, 0x00203627, 0x000 }, | ||
3097 | { 0x00000023, 0x00201e2d, 0x000 }, | ||
3098 | { 0x00000000, 0x003120a3, 0x000 }, | ||
3099 | { 0x00000000, 0x002d1d07, 0x000 }, | ||
3100 | { 0x00000023, 0x00203627, 0x000 }, | ||
3101 | { 0x00000024, 0x00201e2d, 0x000 }, | ||
3102 | { 0x00000000, 0x003120c4, 0x000 }, | ||
3103 | { 0x00000000, 0x002d1d07, 0x000 }, | ||
3104 | { 0x00000024, 0x00803627, 0x000 }, | ||
3105 | { 0x00000021, 0x00203623, 0x000 }, | ||
3106 | { 0x00000022, 0x00203624, 0x000 }, | ||
3107 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
3108 | { 0x00000023, 0x00203627, 0x000 }, | ||
3109 | { 0x00000000, 0x00311cc4, 0x000 }, | ||
3110 | { 0x00000024, 0x00803627, 0x000 }, | ||
3111 | { 0x0000001a, 0x00203627, 0x000 }, | ||
3112 | { 0x0000001b, 0x00203628, 0x000 }, | ||
3113 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
3114 | { 0x00000002, 0x00210227, 0x000 }, | ||
3115 | { 0x00000000, 0x14c00000, 0x2dc }, | ||
3116 | { 0x00000000, 0x00400000, 0x2d9 }, | ||
3117 | { 0x0000001a, 0x00203627, 0x000 }, | ||
3118 | { 0x0000001b, 0x00203628, 0x000 }, | ||
3119 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
3120 | { 0x00000002, 0x00210227, 0x000 }, | ||
3121 | { 0x00000000, 0x14e00000, 0x2d9 }, | ||
3122 | { 0x00000003, 0x00210227, 0x000 }, | ||
3123 | { 0x00000000, 0x14e00000, 0x2dc }, | ||
3124 | { 0x00000023, 0x00201e2d, 0x000 }, | ||
3125 | { 0x00000000, 0x002e00e1, 0x000 }, | ||
3126 | { 0x00000000, 0x02c00000, 0x2dc }, | ||
3127 | { 0x00000021, 0x00201e2d, 0x000 }, | ||
3128 | { 0x00000000, 0x003120a1, 0x000 }, | ||
3129 | { 0x00000000, 0x002e00e8, 0x000 }, | ||
3130 | { 0x00000000, 0x06c00000, 0x2dc }, | ||
3131 | { 0x00000024, 0x00201e2d, 0x000 }, | ||
3132 | { 0x00000000, 0x002e00e2, 0x000 }, | ||
3133 | { 0x00000000, 0x02c00000, 0x2dc }, | ||
3134 | { 0x00000022, 0x00201e2d, 0x000 }, | ||
3135 | { 0x00000000, 0x003120c2, 0x000 }, | ||
3136 | { 0x00000000, 0x002e00e8, 0x000 }, | ||
3137 | { 0x00000000, 0x06c00000, 0x2dc }, | ||
3138 | { 0x00000000, 0x00600000, 0x668 }, | ||
3139 | { 0x00000000, 0x00600000, 0x2b5 }, | ||
3140 | { 0x00000000, 0x00400000, 0x2de }, | ||
3141 | { 0x00000000, 0x00600000, 0x2b5 }, | ||
3142 | { 0x00000000, 0x00600000, 0x65f }, | ||
3143 | { 0x00000000, 0x00400000, 0x2de }, | ||
3144 | { 0x00000000, 0x00600000, 0x2a7 }, | ||
3145 | { 0x00000000, 0x00400000, 0x2de }, | ||
3146 | { 0x0000001a, 0x00201e2d, 0x000 }, | ||
3147 | { 0x0000001b, 0x0080222d, 0x000 }, | ||
3148 | { 0x00000010, 0x00221e23, 0x000 }, | ||
3149 | { 0x00000000, 0x00294887, 0x000 }, | ||
3150 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
3151 | { 0x00000010, 0x00221e27, 0x000 }, | ||
3152 | { 0x00000000, 0x00294887, 0x000 }, | ||
3153 | { 0x00000010, 0x00221e23, 0x000 }, | ||
3154 | { 0x00000000, 0x003120c4, 0x000 }, | ||
3155 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
3156 | { 0x00000000, 0x00894907, 0x000 }, | ||
3157 | { 0x00000010, 0x00221e23, 0x000 }, | ||
3158 | { 0x00000000, 0x00294887, 0x000 }, | ||
3159 | { 0x00000010, 0x00221e21, 0x000 }, | ||
3160 | { 0x00000000, 0x00294847, 0x000 }, | ||
3161 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
3162 | { 0x00000010, 0x00221e27, 0x000 }, | ||
3163 | { 0x00000000, 0x00294887, 0x000 }, | ||
3164 | { 0x00000000, 0x00311ca1, 0x000 }, | ||
3165 | { 0x00000010, 0x00221e27, 0x000 }, | ||
3166 | { 0x00000000, 0x00294847, 0x000 }, | ||
3167 | { 0x00000010, 0x00221e23, 0x000 }, | ||
3168 | { 0x00000000, 0x003120c4, 0x000 }, | ||
3169 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
3170 | { 0x00000000, 0x00294907, 0x000 }, | ||
3171 | { 0x00000010, 0x00221e21, 0x000 }, | ||
3172 | { 0x00000000, 0x003120c2, 0x000 }, | ||
3173 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
3174 | { 0x00000000, 0x00894907, 0x000 }, | ||
3175 | { 0x00000010, 0x00221e23, 0x000 }, | ||
3176 | { 0x00000000, 0x00294887, 0x000 }, | ||
3177 | { 0x00000001, 0x00220a21, 0x000 }, | ||
3178 | { 0x00000000, 0x003308a2, 0x000 }, | ||
3179 | { 0x00000010, 0x00221e22, 0x000 }, | ||
3180 | { 0x00000010, 0x00212222, 0x000 }, | ||
3181 | { 0x00000000, 0x00294907, 0x000 }, | ||
3182 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
3183 | { 0x00000010, 0x00221e27, 0x000 }, | ||
3184 | { 0x00000000, 0x00294887, 0x000 }, | ||
3185 | { 0x00000001, 0x00220a21, 0x000 }, | ||
3186 | { 0x00000000, 0x003008a2, 0x000 }, | ||
3187 | { 0x00000010, 0x00221e22, 0x000 }, | ||
3188 | { 0x00000010, 0x00212222, 0x000 }, | ||
3189 | { 0x00000000, 0x00294907, 0x000 }, | ||
3190 | { 0x00000010, 0x00221e23, 0x000 }, | ||
3191 | { 0x00000000, 0x003120c4, 0x000 }, | ||
3192 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
3193 | { 0x00000000, 0x00294907, 0x000 }, | ||
3194 | { 0x00000000, 0x003808c5, 0x000 }, | ||
3195 | { 0x00000000, 0x00300841, 0x000 }, | ||
3196 | { 0x00000001, 0x00220a22, 0x000 }, | ||
3197 | { 0x00000000, 0x003308a2, 0x000 }, | ||
3198 | { 0x00000010, 0x00221e22, 0x000 }, | ||
3199 | { 0x00000010, 0x00212222, 0x000 }, | ||
3200 | { 0x00000000, 0x00894907, 0x000 }, | ||
3201 | { 0x00000017, 0x0020222d, 0x000 }, | ||
3202 | { 0x00000000, 0x14c00000, 0x318 }, | ||
3203 | { 0xffffffef, 0x00280621, 0x000 }, | ||
3204 | { 0x00000014, 0x0020222d, 0x000 }, | ||
3205 | { 0x0000f8e0, 0x00204411, 0x000 }, | ||
3206 | { 0x00000000, 0x00294901, 0x000 }, | ||
3207 | { 0x00000000, 0x00894901, 0x000 }, | ||
3208 | { 0x00000000, 0x00204811, 0x000 }, | ||
3209 | { 0x00000000, 0x00204811, 0x000 }, | ||
3210 | { 0x060a0200, 0x00804811, 0x000 }, | ||
3211 | { 0x00000000, 0xc0200000, 0x000 }, | ||
3212 | { 0x97000000, 0xc0204411, 0x000 }, | ||
3213 | { 0x00000000, 0xc0204811, 0x000 }, | ||
3214 | { 0x8a000000, 0x00204411, 0x000 }, | ||
3215 | { 0x00000000, 0x00204811, 0x000 }, | ||
3216 | { 0x0000225c, 0x00204411, 0x000 }, | ||
3217 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3218 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
3219 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3220 | { 0x00000000, 0xc0200400, 0x000 }, | ||
3221 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
3222 | { 0x97000000, 0x00204411, 0x000 }, | ||
3223 | { 0x00000000, 0x00204811, 0x000 }, | ||
3224 | { 0x8a000000, 0x00204411, 0x000 }, | ||
3225 | { 0x00000000, 0x00204811, 0x000 }, | ||
3226 | { 0x0000225c, 0x00204411, 0x000 }, | ||
3227 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3228 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
3229 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3230 | { 0x00000000, 0xc0200400, 0x000 }, | ||
3231 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
3232 | { 0x97000000, 0x00204411, 0x000 }, | ||
3233 | { 0x00000000, 0x00204811, 0x000 }, | ||
3234 | { 0x8a000000, 0x00204411, 0x000 }, | ||
3235 | { 0x00000000, 0x00204811, 0x000 }, | ||
3236 | { 0x0000225c, 0x00204411, 0x000 }, | ||
3237 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3238 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
3239 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3240 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
3241 | { 0x00000000, 0xd9004800, 0x000 }, | ||
3242 | { 0x00000000, 0xc0200400, 0x000 }, | ||
3243 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
3244 | { 0x00002257, 0x00204411, 0x000 }, | ||
3245 | { 0x00000003, 0xc0484a20, 0x000 }, | ||
3246 | { 0x0000225d, 0x00204411, 0x000 }, | ||
3247 | { 0x00000000, 0xc0404800, 0x000 }, | ||
3248 | { 0x00000000, 0x00600000, 0x645 }, | ||
3249 | { 0x00000000, 0xc0200800, 0x000 }, | ||
3250 | { 0x0000225c, 0x00204411, 0x000 }, | ||
3251 | { 0x00000003, 0x00384a22, 0x000 }, | ||
3252 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
3253 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3254 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
3255 | { 0x00000000, 0x002f0222, 0x000 }, | ||
3256 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
3257 | { 0x00000000, 0x40204800, 0x000 }, | ||
3258 | { 0x00000001, 0x40304a20, 0x000 }, | ||
3259 | { 0x00000002, 0xc0304a20, 0x000 }, | ||
3260 | { 0x00000001, 0x00530a22, 0x34b }, | ||
3261 | { 0x0000003f, 0xc0280a20, 0x000 }, | ||
3262 | { 0x81000000, 0x00204411, 0x000 }, | ||
3263 | { 0x00000001, 0x00204811, 0x000 }, | ||
3264 | { 0x000021f8, 0x00204411, 0x000 }, | ||
3265 | { 0x00000018, 0x00204811, 0x000 }, | ||
3266 | { 0x000421f9, 0x00604411, 0x68d }, | ||
3267 | { 0x00000011, 0x00210230, 0x000 }, | ||
3268 | { 0x00000000, 0x14e00000, 0x354 }, | ||
3269 | { 0x00000014, 0x002f0222, 0x000 }, | ||
3270 | { 0x00000000, 0x0cc00000, 0x364 }, | ||
3271 | { 0x00002010, 0x00204411, 0x000 }, | ||
3272 | { 0x00008000, 0x00204811, 0x000 }, | ||
3273 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
3274 | { 0x00000000, 0x00604802, 0x36e }, | ||
3275 | { 0x00002100, 0x00204411, 0x000 }, | ||
3276 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3277 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3278 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3279 | { 0x00000000, 0xc0404800, 0x000 }, | ||
3280 | { 0x00000004, 0x002f0222, 0x000 }, | ||
3281 | { 0x00000000, 0x0cc00000, 0x36a }, | ||
3282 | { 0x00002010, 0x00204411, 0x000 }, | ||
3283 | { 0x00008000, 0x00204811, 0x000 }, | ||
3284 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
3285 | { 0x00000000, 0x00404802, 0x35f }, | ||
3286 | { 0x00000028, 0x002f0222, 0x000 }, | ||
3287 | { 0x00000000, 0x0cc00000, 0x5c0 }, | ||
3288 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
3289 | { 0x00000000, 0x00404802, 0x35f }, | ||
3290 | { 0x0000002c, 0x00203626, 0x000 }, | ||
3291 | { 0x00000049, 0x00201811, 0x000 }, | ||
3292 | { 0x0000003f, 0x00204811, 0x000 }, | ||
3293 | { 0x00000001, 0x00331a26, 0x000 }, | ||
3294 | { 0x00000000, 0x002f0226, 0x000 }, | ||
3295 | { 0x00000000, 0x0cc00000, 0x370 }, | ||
3296 | { 0x0000002c, 0x00801a2d, 0x000 }, | ||
3297 | { 0x0000003f, 0xc0280a20, 0x000 }, | ||
3298 | { 0x00000015, 0x002f0222, 0x000 }, | ||
3299 | { 0x00000000, 0x0ce00000, 0x386 }, | ||
3300 | { 0x00000006, 0x002f0222, 0x000 }, | ||
3301 | { 0x00000000, 0x0ce00000, 0x3b1 }, | ||
3302 | { 0x00000016, 0x002f0222, 0x000 }, | ||
3303 | { 0x00000000, 0x0ce00000, 0x3b5 }, | ||
3304 | { 0x00000020, 0x002f0222, 0x000 }, | ||
3305 | { 0x00000000, 0x0ce00000, 0x39c }, | ||
3306 | { 0x0000000f, 0x002f0222, 0x000 }, | ||
3307 | { 0x00000000, 0x0ce00000, 0x3a8 }, | ||
3308 | { 0x00000010, 0x002f0222, 0x000 }, | ||
3309 | { 0x00000000, 0x0ce00000, 0x3a8 }, | ||
3310 | { 0x0000001e, 0x002f0222, 0x000 }, | ||
3311 | { 0x00000000, 0x0ce00000, 0x390 }, | ||
3312 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
3313 | { 0x00000000, 0x00404802, 0x000 }, | ||
3314 | { 0x08000000, 0x00290a22, 0x000 }, | ||
3315 | { 0x00000003, 0x40210e20, 0x000 }, | ||
3316 | { 0x0000000c, 0xc0211220, 0x000 }, | ||
3317 | { 0x00080000, 0x00281224, 0x000 }, | ||
3318 | { 0x00000014, 0xc0221620, 0x000 }, | ||
3319 | { 0x00000000, 0x002914a4, 0x000 }, | ||
3320 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
3321 | { 0x00000000, 0x002948a2, 0x000 }, | ||
3322 | { 0x0000a1fe, 0x00204411, 0x000 }, | ||
3323 | { 0x00000000, 0x00404803, 0x000 }, | ||
3324 | { 0x81000000, 0x00204411, 0x000 }, | ||
3325 | { 0x00000001, 0x00204811, 0x000 }, | ||
3326 | { 0x000021f8, 0x00204411, 0x000 }, | ||
3327 | { 0x00000016, 0x00204811, 0x000 }, | ||
3328 | { 0x000421f9, 0x00604411, 0x68d }, | ||
3329 | { 0x00000015, 0x00210230, 0x000 }, | ||
3330 | { 0x00000000, 0x14e00000, 0x392 }, | ||
3331 | { 0x0000210e, 0x00204411, 0x000 }, | ||
3332 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3333 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3334 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
3335 | { 0x00000000, 0x00404802, 0x000 }, | ||
3336 | { 0x81000000, 0x00204411, 0x000 }, | ||
3337 | { 0x00000001, 0x00204811, 0x000 }, | ||
3338 | { 0x000021f8, 0x00204411, 0x000 }, | ||
3339 | { 0x00000017, 0x00204811, 0x000 }, | ||
3340 | { 0x000421f9, 0x00604411, 0x68d }, | ||
3341 | { 0x00000003, 0x00210230, 0x000 }, | ||
3342 | { 0x00000000, 0x14e00000, 0x39e }, | ||
3343 | { 0x00002108, 0x00204411, 0x000 }, | ||
3344 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3345 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3346 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
3347 | { 0x00000000, 0x00404802, 0x000 }, | ||
3348 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
3349 | { 0x00000000, 0x00204802, 0x000 }, | ||
3350 | { 0x80000000, 0x00204411, 0x000 }, | ||
3351 | { 0x00000000, 0x00204811, 0x000 }, | ||
3352 | { 0x81000000, 0x00204411, 0x000 }, | ||
3353 | { 0x00000010, 0x00204811, 0x000 }, | ||
3354 | { 0x00000000, 0x00200010, 0x000 }, | ||
3355 | { 0x00000000, 0x14c00000, 0x3ae }, | ||
3356 | { 0x00000000, 0x00400000, 0x000 }, | ||
3357 | { 0x00002010, 0x00204411, 0x000 }, | ||
3358 | { 0x00008000, 0x00204811, 0x000 }, | ||
3359 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
3360 | { 0x00000006, 0x00404811, 0x000 }, | ||
3361 | { 0x00002010, 0x00204411, 0x000 }, | ||
3362 | { 0x00008000, 0x00204811, 0x000 }, | ||
3363 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
3364 | { 0x00000016, 0x00604811, 0x36e }, | ||
3365 | { 0x00000000, 0x00400000, 0x000 }, | ||
3366 | { 0x00000000, 0xc0200800, 0x000 }, | ||
3367 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
3368 | { 0x0000001d, 0x00210223, 0x000 }, | ||
3369 | { 0x00000000, 0x14e00000, 0x3ce }, | ||
3370 | { 0x81000000, 0x00204411, 0x000 }, | ||
3371 | { 0x00000001, 0x00204811, 0x000 }, | ||
3372 | { 0x000021f8, 0x00204411, 0x000 }, | ||
3373 | { 0x00000018, 0x00204811, 0x000 }, | ||
3374 | { 0x000421f9, 0x00604411, 0x68d }, | ||
3375 | { 0x00000011, 0x00210230, 0x000 }, | ||
3376 | { 0x00000000, 0x14e00000, 0x3c0 }, | ||
3377 | { 0x00002100, 0x00204411, 0x000 }, | ||
3378 | { 0x00000000, 0x00204802, 0x000 }, | ||
3379 | { 0x00000000, 0x00204803, 0x000 }, | ||
3380 | { 0xbabecafe, 0x00204811, 0x000 }, | ||
3381 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
3382 | { 0x00002010, 0x00204411, 0x000 }, | ||
3383 | { 0x00008000, 0x00204811, 0x000 }, | ||
3384 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
3385 | { 0x00000004, 0x00404811, 0x000 }, | ||
3386 | { 0x00002170, 0x00204411, 0x000 }, | ||
3387 | { 0x00000000, 0x00204802, 0x000 }, | ||
3388 | { 0x00000000, 0x00204803, 0x000 }, | ||
3389 | { 0x81000000, 0x00204411, 0x000 }, | ||
3390 | { 0x0000000a, 0x00204811, 0x000 }, | ||
3391 | { 0x00000000, 0x00200010, 0x000 }, | ||
3392 | { 0x00000000, 0x14c00000, 0x3d3 }, | ||
3393 | { 0x8c000000, 0x00204411, 0x000 }, | ||
3394 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
3395 | { 0x81000000, 0x00204411, 0x000 }, | ||
3396 | { 0x00000001, 0x00204811, 0x000 }, | ||
3397 | { 0x00003fff, 0x40280a20, 0x000 }, | ||
3398 | { 0x80000000, 0x40280e20, 0x000 }, | ||
3399 | { 0x40000000, 0xc0281220, 0x000 }, | ||
3400 | { 0x00040000, 0x00694622, 0x68d }, | ||
3401 | { 0x00000000, 0x00201410, 0x000 }, | ||
3402 | { 0x00000000, 0x002f0223, 0x000 }, | ||
3403 | { 0x00000000, 0x0cc00000, 0x3e1 }, | ||
3404 | { 0x00000000, 0xc0401800, 0x3e4 }, | ||
3405 | { 0x00003fff, 0xc0281a20, 0x000 }, | ||
3406 | { 0x00040000, 0x00694626, 0x68d }, | ||
3407 | { 0x00000000, 0x00201810, 0x000 }, | ||
3408 | { 0x00000000, 0x002f0224, 0x000 }, | ||
3409 | { 0x00000000, 0x0cc00000, 0x3e7 }, | ||
3410 | { 0x00000000, 0xc0401c00, 0x3ea }, | ||
3411 | { 0x00003fff, 0xc0281e20, 0x000 }, | ||
3412 | { 0x00040000, 0x00694627, 0x68d }, | ||
3413 | { 0x00000000, 0x00201c10, 0x000 }, | ||
3414 | { 0x00000000, 0x00204402, 0x000 }, | ||
3415 | { 0x00000000, 0x002820c5, 0x000 }, | ||
3416 | { 0x00000000, 0x004948e8, 0x000 }, | ||
3417 | { 0xa5800000, 0x00200811, 0x000 }, | ||
3418 | { 0x00002000, 0x00200c11, 0x000 }, | ||
3419 | { 0x83000000, 0x00604411, 0x412 }, | ||
3420 | { 0x00000000, 0x00204402, 0x000 }, | ||
3421 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3422 | { 0x00000000, 0x40204800, 0x000 }, | ||
3423 | { 0x0000001f, 0xc0210220, 0x000 }, | ||
3424 | { 0x00000000, 0x14c00000, 0x3f7 }, | ||
3425 | { 0x00002010, 0x00204411, 0x000 }, | ||
3426 | { 0x00008000, 0x00204811, 0x000 }, | ||
3427 | { 0x0000ffff, 0xc0481220, 0x3ff }, | ||
3428 | { 0xa7800000, 0x00200811, 0x000 }, | ||
3429 | { 0x0000a000, 0x00200c11, 0x000 }, | ||
3430 | { 0x83000000, 0x00604411, 0x412 }, | ||
3431 | { 0x00000000, 0x00204402, 0x000 }, | ||
3432 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3433 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3434 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
3435 | { 0x83000000, 0x00204411, 0x000 }, | ||
3436 | { 0x00000000, 0x00304883, 0x000 }, | ||
3437 | { 0x84000000, 0x00204411, 0x000 }, | ||
3438 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3439 | { 0x00000000, 0x1d000000, 0x000 }, | ||
3440 | { 0x83000000, 0x00604411, 0x412 }, | ||
3441 | { 0x00000000, 0xc0400400, 0x001 }, | ||
3442 | { 0xa9800000, 0x00200811, 0x000 }, | ||
3443 | { 0x0000c000, 0x00400c11, 0x3fa }, | ||
3444 | { 0xab800000, 0x00200811, 0x000 }, | ||
3445 | { 0x0000f8e0, 0x00400c11, 0x3fa }, | ||
3446 | { 0xad800000, 0x00200811, 0x000 }, | ||
3447 | { 0x0000f880, 0x00400c11, 0x3fa }, | ||
3448 | { 0xb3800000, 0x00200811, 0x000 }, | ||
3449 | { 0x0000f3fc, 0x00400c11, 0x3fa }, | ||
3450 | { 0xaf800000, 0x00200811, 0x000 }, | ||
3451 | { 0x0000e000, 0x00400c11, 0x3fa }, | ||
3452 | { 0xb1800000, 0x00200811, 0x000 }, | ||
3453 | { 0x0000f000, 0x00400c11, 0x3fa }, | ||
3454 | { 0x83000000, 0x00204411, 0x000 }, | ||
3455 | { 0x00002148, 0x00204811, 0x000 }, | ||
3456 | { 0x84000000, 0x00204411, 0x000 }, | ||
3457 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3458 | { 0x00000000, 0x1d000000, 0x000 }, | ||
3459 | { 0x00000000, 0x00800000, 0x000 }, | ||
3460 | { 0x01182000, 0xc0304620, 0x000 }, | ||
3461 | { 0x00000000, 0xd9004800, 0x000 }, | ||
3462 | { 0x00000000, 0xc0200400, 0x000 }, | ||
3463 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
3464 | { 0x0218a000, 0xc0304620, 0x000 }, | ||
3465 | { 0x00000000, 0xd9004800, 0x000 }, | ||
3466 | { 0x00000000, 0xc0200400, 0x000 }, | ||
3467 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
3468 | { 0x0318c000, 0xc0304620, 0x000 }, | ||
3469 | { 0x00000000, 0xd9004800, 0x000 }, | ||
3470 | { 0x00000000, 0xc0200400, 0x000 }, | ||
3471 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
3472 | { 0x0418f8e0, 0xc0304620, 0x000 }, | ||
3473 | { 0x00000000, 0xd9004800, 0x000 }, | ||
3474 | { 0x00000000, 0xc0200400, 0x000 }, | ||
3475 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
3476 | { 0x0518f880, 0xc0304620, 0x000 }, | ||
3477 | { 0x00000000, 0xd9004800, 0x000 }, | ||
3478 | { 0x00000000, 0xc0200400, 0x000 }, | ||
3479 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
3480 | { 0x0618e000, 0xc0304620, 0x000 }, | ||
3481 | { 0x00000000, 0xd9004800, 0x000 }, | ||
3482 | { 0x00000000, 0xc0200400, 0x000 }, | ||
3483 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
3484 | { 0x0718f000, 0xc0304620, 0x000 }, | ||
3485 | { 0x00000000, 0xd9004800, 0x000 }, | ||
3486 | { 0x00000000, 0xc0200400, 0x000 }, | ||
3487 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
3488 | { 0x0818f3fc, 0xc0304620, 0x000 }, | ||
3489 | { 0x00000000, 0xd9004800, 0x000 }, | ||
3490 | { 0x00000000, 0xc0200400, 0x000 }, | ||
3491 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
3492 | { 0x00000030, 0x00200a2d, 0x000 }, | ||
3493 | { 0x00000000, 0xc0290c40, 0x000 }, | ||
3494 | { 0x00000030, 0x00203623, 0x000 }, | ||
3495 | { 0x00000000, 0xc0200400, 0x000 }, | ||
3496 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
3497 | { 0x86000000, 0x00204411, 0x000 }, | ||
3498 | { 0x00000000, 0x00404801, 0x000 }, | ||
3499 | { 0x85000000, 0xc0204411, 0x000 }, | ||
3500 | { 0x00000000, 0x00404801, 0x000 }, | ||
3501 | { 0x0000217c, 0x00204411, 0x000 }, | ||
3502 | { 0x00000018, 0x40210220, 0x000 }, | ||
3503 | { 0x00000000, 0x14c00000, 0x445 }, | ||
3504 | { 0x00800000, 0xc0494a20, 0x446 }, | ||
3505 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3506 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3507 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3508 | { 0x81000000, 0x00204411, 0x000 }, | ||
3509 | { 0x00000001, 0x00204811, 0x000 }, | ||
3510 | { 0x00000000, 0xc0200800, 0x000 }, | ||
3511 | { 0x00000000, 0x17000000, 0x000 }, | ||
3512 | { 0x0004217f, 0x00604411, 0x68d }, | ||
3513 | { 0x0000001f, 0x00210230, 0x000 }, | ||
3514 | { 0x00000000, 0x14c00000, 0x000 }, | ||
3515 | { 0x00000000, 0x00404c02, 0x44b }, | ||
3516 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
3517 | { 0x00000000, 0xc0201000, 0x000 }, | ||
3518 | { 0x00000000, 0xc0201400, 0x000 }, | ||
3519 | { 0x00000000, 0xc0201800, 0x000 }, | ||
3520 | { 0x00000000, 0xc0201c00, 0x000 }, | ||
3521 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
3522 | { 0x00004500, 0x002f0222, 0x000 }, | ||
3523 | { 0x00000000, 0x0ce00000, 0x459 }, | ||
3524 | { 0x00000000, 0xc0202000, 0x000 }, | ||
3525 | { 0x00000000, 0x17000000, 0x000 }, | ||
3526 | { 0x00000010, 0x00280a23, 0x000 }, | ||
3527 | { 0x00000010, 0x002f0222, 0x000 }, | ||
3528 | { 0x00000000, 0x0ce00000, 0x461 }, | ||
3529 | { 0x81000000, 0x00204411, 0x000 }, | ||
3530 | { 0x00000001, 0x00204811, 0x000 }, | ||
3531 | { 0x00040000, 0x00694624, 0x68d }, | ||
3532 | { 0x00000000, 0x00400000, 0x466 }, | ||
3533 | { 0x81000000, 0x00204411, 0x000 }, | ||
3534 | { 0x00000000, 0x00204811, 0x000 }, | ||
3535 | { 0x0000216d, 0x00204411, 0x000 }, | ||
3536 | { 0x00000000, 0x00204804, 0x000 }, | ||
3537 | { 0x00000000, 0x00604805, 0x692 }, | ||
3538 | { 0x00000000, 0x002824f0, 0x000 }, | ||
3539 | { 0x00000007, 0x00280a23, 0x000 }, | ||
3540 | { 0x00000001, 0x002f0222, 0x000 }, | ||
3541 | { 0x00000000, 0x0ae00000, 0x46d }, | ||
3542 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
3543 | { 0x00000000, 0x04e00000, 0x486 }, | ||
3544 | { 0x00000000, 0x00400000, 0x493 }, | ||
3545 | { 0x00000002, 0x002f0222, 0x000 }, | ||
3546 | { 0x00000000, 0x0ae00000, 0x472 }, | ||
3547 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
3548 | { 0x00000000, 0x02e00000, 0x486 }, | ||
3549 | { 0x00000000, 0x00400000, 0x493 }, | ||
3550 | { 0x00000003, 0x002f0222, 0x000 }, | ||
3551 | { 0x00000000, 0x0ae00000, 0x477 }, | ||
3552 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
3553 | { 0x00000000, 0x0ce00000, 0x486 }, | ||
3554 | { 0x00000000, 0x00400000, 0x493 }, | ||
3555 | { 0x00000004, 0x002f0222, 0x000 }, | ||
3556 | { 0x00000000, 0x0ae00000, 0x47c }, | ||
3557 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
3558 | { 0x00000000, 0x0ae00000, 0x486 }, | ||
3559 | { 0x00000000, 0x00400000, 0x493 }, | ||
3560 | { 0x00000005, 0x002f0222, 0x000 }, | ||
3561 | { 0x00000000, 0x0ae00000, 0x481 }, | ||
3562 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
3563 | { 0x00000000, 0x06e00000, 0x486 }, | ||
3564 | { 0x00000000, 0x00400000, 0x493 }, | ||
3565 | { 0x00000006, 0x002f0222, 0x000 }, | ||
3566 | { 0x00000000, 0x0ae00000, 0x486 }, | ||
3567 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
3568 | { 0x00000000, 0x08e00000, 0x486 }, | ||
3569 | { 0x00000000, 0x00400000, 0x493 }, | ||
3570 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
3571 | { 0x00004500, 0x002f0222, 0x000 }, | ||
3572 | { 0x00000000, 0x0ae00000, 0x000 }, | ||
3573 | { 0x00000008, 0x00210a23, 0x000 }, | ||
3574 | { 0x00000000, 0x14c00000, 0x490 }, | ||
3575 | { 0x00002169, 0x00204411, 0x000 }, | ||
3576 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3577 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3578 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3579 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
3580 | { 0x00000000, 0xc0204400, 0x000 }, | ||
3581 | { 0x00000000, 0xc0200000, 0x000 }, | ||
3582 | { 0x00000000, 0xc0404800, 0x000 }, | ||
3583 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
3584 | { 0x00004500, 0x002f0222, 0x000 }, | ||
3585 | { 0x00000000, 0x0ae00000, 0x499 }, | ||
3586 | { 0x00000000, 0xc0200000, 0x000 }, | ||
3587 | { 0x00000000, 0xc0200000, 0x000 }, | ||
3588 | { 0x00000000, 0xc0400000, 0x000 }, | ||
3589 | { 0x00000000, 0x00404c08, 0x459 }, | ||
3590 | { 0x00000000, 0xc0200800, 0x000 }, | ||
3591 | { 0x00000010, 0x40210e20, 0x000 }, | ||
3592 | { 0x00000011, 0x40211220, 0x000 }, | ||
3593 | { 0x00000012, 0x40211620, 0x000 }, | ||
3594 | { 0x00002169, 0x00204411, 0x000 }, | ||
3595 | { 0x00000000, 0x00204802, 0x000 }, | ||
3596 | { 0x00000000, 0x00210225, 0x000 }, | ||
3597 | { 0x00000000, 0x14e00000, 0x4a3 }, | ||
3598 | { 0x00040000, 0xc0494a20, 0x4a4 }, | ||
3599 | { 0xfffbffff, 0xc0284a20, 0x000 }, | ||
3600 | { 0x00000000, 0x00210223, 0x000 }, | ||
3601 | { 0x00000000, 0x14e00000, 0x4b0 }, | ||
3602 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3603 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3604 | { 0x00000000, 0x00210224, 0x000 }, | ||
3605 | { 0x00000000, 0x14c00000, 0x000 }, | ||
3606 | { 0x81000000, 0x00204411, 0x000 }, | ||
3607 | { 0x0000000c, 0x00204811, 0x000 }, | ||
3608 | { 0x00000000, 0x00200010, 0x000 }, | ||
3609 | { 0x00000000, 0x14c00000, 0x4ac }, | ||
3610 | { 0xa0000000, 0x00204411, 0x000 }, | ||
3611 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
3612 | { 0x81000000, 0x00204411, 0x000 }, | ||
3613 | { 0x00000004, 0x00204811, 0x000 }, | ||
3614 | { 0x0000216b, 0x00204411, 0x000 }, | ||
3615 | { 0x00000000, 0xc0204810, 0x000 }, | ||
3616 | { 0x81000000, 0x00204411, 0x000 }, | ||
3617 | { 0x00000005, 0x00204811, 0x000 }, | ||
3618 | { 0x0000216c, 0x00204411, 0x000 }, | ||
3619 | { 0x00000000, 0xc0204810, 0x000 }, | ||
3620 | { 0x00000000, 0x002f0224, 0x000 }, | ||
3621 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
3622 | { 0x00000000, 0x00400000, 0x4aa }, | ||
3623 | { 0x00000000, 0xc0210a20, 0x000 }, | ||
3624 | { 0x00000000, 0x14c00000, 0x4c3 }, | ||
3625 | { 0x81000000, 0x00204411, 0x000 }, | ||
3626 | { 0x00000000, 0x00204811, 0x000 }, | ||
3627 | { 0x0000216d, 0x00204411, 0x000 }, | ||
3628 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3629 | { 0x00000000, 0xc0604800, 0x692 }, | ||
3630 | { 0x00000000, 0x00400000, 0x4c7 }, | ||
3631 | { 0x81000000, 0x00204411, 0x000 }, | ||
3632 | { 0x00000001, 0x00204811, 0x000 }, | ||
3633 | { 0x00040000, 0xc0294620, 0x000 }, | ||
3634 | { 0x00000000, 0xc0600000, 0x68d }, | ||
3635 | { 0x00000001, 0x00210222, 0x000 }, | ||
3636 | { 0x00000000, 0x14c00000, 0x4ce }, | ||
3637 | { 0x00002169, 0x00204411, 0x000 }, | ||
3638 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3639 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3640 | { 0x00000000, 0x00204810, 0x000 }, | ||
3641 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
3642 | { 0x00000000, 0xc0204400, 0x000 }, | ||
3643 | { 0x00000000, 0xc0404810, 0x000 }, | ||
3644 | { 0x81000000, 0x00204411, 0x000 }, | ||
3645 | { 0x00000001, 0x00204811, 0x000 }, | ||
3646 | { 0x000021f8, 0x00204411, 0x000 }, | ||
3647 | { 0x0000000e, 0x00204811, 0x000 }, | ||
3648 | { 0x000421f9, 0x00604411, 0x68d }, | ||
3649 | { 0x00000000, 0x00210230, 0x000 }, | ||
3650 | { 0x00000000, 0x14c00000, 0x4d0 }, | ||
3651 | { 0x00002180, 0x00204411, 0x000 }, | ||
3652 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3653 | { 0x00000000, 0xc0200000, 0x000 }, | ||
3654 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3655 | { 0x00000000, 0xc0200000, 0x000 }, | ||
3656 | { 0x00000000, 0xc0404800, 0x000 }, | ||
3657 | { 0x00000003, 0x00333e2f, 0x000 }, | ||
3658 | { 0x00000001, 0x00210221, 0x000 }, | ||
3659 | { 0x00000000, 0x14e00000, 0x500 }, | ||
3660 | { 0x0000002c, 0x00200a2d, 0x000 }, | ||
3661 | { 0x00040000, 0x18e00c11, 0x4ef }, | ||
3662 | { 0x00000001, 0x00333e2f, 0x000 }, | ||
3663 | { 0x00002169, 0x00204411, 0x000 }, | ||
3664 | { 0x00000000, 0x00204802, 0x000 }, | ||
3665 | { 0x00000000, 0x00204803, 0x000 }, | ||
3666 | { 0x00000008, 0x00300a22, 0x000 }, | ||
3667 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3668 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3669 | { 0x00002169, 0x00204411, 0x000 }, | ||
3670 | { 0x00000000, 0x00204802, 0x000 }, | ||
3671 | { 0x00000000, 0x00204803, 0x000 }, | ||
3672 | { 0x00000008, 0x00300a22, 0x000 }, | ||
3673 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3674 | { 0x00000000, 0xd8c04800, 0x4e3 }, | ||
3675 | { 0x00002169, 0x00204411, 0x000 }, | ||
3676 | { 0x00000000, 0x00204802, 0x000 }, | ||
3677 | { 0x00000000, 0x00204803, 0x000 }, | ||
3678 | { 0x00000008, 0x00300a22, 0x000 }, | ||
3679 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3680 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3681 | { 0x0000002d, 0x0020122d, 0x000 }, | ||
3682 | { 0x00000000, 0x00290c83, 0x000 }, | ||
3683 | { 0x00002169, 0x00204411, 0x000 }, | ||
3684 | { 0x00000000, 0x00204802, 0x000 }, | ||
3685 | { 0x00000000, 0x00204803, 0x000 }, | ||
3686 | { 0x00000008, 0x00300a22, 0x000 }, | ||
3687 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3688 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3689 | { 0x00000011, 0x00210224, 0x000 }, | ||
3690 | { 0x00000000, 0x14c00000, 0x000 }, | ||
3691 | { 0x00000000, 0x00400000, 0x4aa }, | ||
3692 | { 0x0000002c, 0xc0203620, 0x000 }, | ||
3693 | { 0x0000002d, 0xc0403620, 0x000 }, | ||
3694 | { 0x0000000f, 0x00210221, 0x000 }, | ||
3695 | { 0x00000000, 0x14c00000, 0x505 }, | ||
3696 | { 0x00000000, 0x00600000, 0x00b }, | ||
3697 | { 0x00000000, 0xd9000000, 0x000 }, | ||
3698 | { 0x00000000, 0xc0400400, 0x001 }, | ||
3699 | { 0xb5000000, 0x00204411, 0x000 }, | ||
3700 | { 0x00002000, 0x00204811, 0x000 }, | ||
3701 | { 0xb6000000, 0x00204411, 0x000 }, | ||
3702 | { 0x0000a000, 0x00204811, 0x000 }, | ||
3703 | { 0xb7000000, 0x00204411, 0x000 }, | ||
3704 | { 0x0000c000, 0x00204811, 0x000 }, | ||
3705 | { 0xb8000000, 0x00204411, 0x000 }, | ||
3706 | { 0x0000f8e0, 0x00204811, 0x000 }, | ||
3707 | { 0xb9000000, 0x00204411, 0x000 }, | ||
3708 | { 0x0000f880, 0x00204811, 0x000 }, | ||
3709 | { 0xba000000, 0x00204411, 0x000 }, | ||
3710 | { 0x0000e000, 0x00204811, 0x000 }, | ||
3711 | { 0xbb000000, 0x00204411, 0x000 }, | ||
3712 | { 0x0000f000, 0x00204811, 0x000 }, | ||
3713 | { 0xbc000000, 0x00204411, 0x000 }, | ||
3714 | { 0x0000f3fc, 0x00204811, 0x000 }, | ||
3715 | { 0x81000000, 0x00204411, 0x000 }, | ||
3716 | { 0x00000002, 0x00204811, 0x000 }, | ||
3717 | { 0x000000ff, 0x00280e30, 0x000 }, | ||
3718 | { 0x00000000, 0x002f0223, 0x000 }, | ||
3719 | { 0x00000000, 0x0cc00000, 0x519 }, | ||
3720 | { 0x00000000, 0xc0200800, 0x000 }, | ||
3721 | { 0x00000000, 0x14c00000, 0x52e }, | ||
3722 | { 0x00000000, 0x00200c11, 0x000 }, | ||
3723 | { 0x0000001c, 0x00203623, 0x000 }, | ||
3724 | { 0x0000002b, 0x00203623, 0x000 }, | ||
3725 | { 0x00000029, 0x00203623, 0x000 }, | ||
3726 | { 0x00000028, 0x00203623, 0x000 }, | ||
3727 | { 0x00000017, 0x00203623, 0x000 }, | ||
3728 | { 0x00000025, 0x00203623, 0x000 }, | ||
3729 | { 0x00000026, 0x00203623, 0x000 }, | ||
3730 | { 0x00000015, 0x00203623, 0x000 }, | ||
3731 | { 0x00000016, 0x00203623, 0x000 }, | ||
3732 | { 0xffffe000, 0x00200c11, 0x000 }, | ||
3733 | { 0x00000021, 0x00203623, 0x000 }, | ||
3734 | { 0x00000022, 0x00203623, 0x000 }, | ||
3735 | { 0x00001fff, 0x00200c11, 0x000 }, | ||
3736 | { 0x00000023, 0x00203623, 0x000 }, | ||
3737 | { 0x00000024, 0x00203623, 0x000 }, | ||
3738 | { 0xf1ffffff, 0x00283a2e, 0x000 }, | ||
3739 | { 0x0000001a, 0xc0220e20, 0x000 }, | ||
3740 | { 0x00000000, 0x0029386e, 0x000 }, | ||
3741 | { 0x81000000, 0x00204411, 0x000 }, | ||
3742 | { 0x00000006, 0x00204811, 0x000 }, | ||
3743 | { 0x0000002a, 0x40203620, 0x000 }, | ||
3744 | { 0x87000000, 0x00204411, 0x000 }, | ||
3745 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3746 | { 0x0000a1f4, 0x00204411, 0x000 }, | ||
3747 | { 0x00000000, 0x00204810, 0x000 }, | ||
3748 | { 0x00000000, 0x00200c11, 0x000 }, | ||
3749 | { 0x00000030, 0x00203623, 0x000 }, | ||
3750 | { 0x9d000000, 0x00204411, 0x000 }, | ||
3751 | { 0x0000001f, 0x40214a20, 0x000 }, | ||
3752 | { 0x96000000, 0x00204411, 0x000 }, | ||
3753 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3754 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
3755 | { 0x00000000, 0xc0201000, 0x000 }, | ||
3756 | { 0x0000001f, 0x00211624, 0x000 }, | ||
3757 | { 0x00000000, 0x14c00000, 0x000 }, | ||
3758 | { 0x0000001d, 0x00203623, 0x000 }, | ||
3759 | { 0x00000003, 0x00281e23, 0x000 }, | ||
3760 | { 0x00000008, 0x00222223, 0x000 }, | ||
3761 | { 0xfffff000, 0x00282228, 0x000 }, | ||
3762 | { 0x00000000, 0x002920e8, 0x000 }, | ||
3763 | { 0x0000001f, 0x00203628, 0x000 }, | ||
3764 | { 0x00000018, 0x00211e23, 0x000 }, | ||
3765 | { 0x00000020, 0x00203627, 0x000 }, | ||
3766 | { 0x00000002, 0x00221624, 0x000 }, | ||
3767 | { 0x00000000, 0x003014a8, 0x000 }, | ||
3768 | { 0x0000001e, 0x00203625, 0x000 }, | ||
3769 | { 0x00000003, 0x00211a24, 0x000 }, | ||
3770 | { 0x10000000, 0x00281a26, 0x000 }, | ||
3771 | { 0xefffffff, 0x00283a2e, 0x000 }, | ||
3772 | { 0x00000000, 0x004938ce, 0x67b }, | ||
3773 | { 0x00000001, 0x40280a20, 0x000 }, | ||
3774 | { 0x00000006, 0x40280e20, 0x000 }, | ||
3775 | { 0x00000300, 0xc0281220, 0x000 }, | ||
3776 | { 0x00000008, 0x00211224, 0x000 }, | ||
3777 | { 0x00000000, 0xc0201620, 0x000 }, | ||
3778 | { 0x00000000, 0xc0201a20, 0x000 }, | ||
3779 | { 0x00000000, 0x00210222, 0x000 }, | ||
3780 | { 0x00000000, 0x14c00000, 0x566 }, | ||
3781 | { 0x81000000, 0x00204411, 0x000 }, | ||
3782 | { 0x00000001, 0x00204811, 0x000 }, | ||
3783 | { 0x00002258, 0x00300a24, 0x000 }, | ||
3784 | { 0x00040000, 0x00694622, 0x68d }, | ||
3785 | { 0x00002169, 0x00204411, 0x000 }, | ||
3786 | { 0x00000000, 0x00204805, 0x000 }, | ||
3787 | { 0x00020000, 0x00294a26, 0x000 }, | ||
3788 | { 0x00000000, 0x00204810, 0x000 }, | ||
3789 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
3790 | { 0x00000002, 0x002f0223, 0x000 }, | ||
3791 | { 0x00000000, 0x0cc00000, 0x56e }, | ||
3792 | { 0x00000000, 0xc0201c10, 0x000 }, | ||
3793 | { 0x00000000, 0xc0400000, 0x57c }, | ||
3794 | { 0x00000002, 0x002f0223, 0x000 }, | ||
3795 | { 0x00000000, 0x0cc00000, 0x56e }, | ||
3796 | { 0x81000000, 0x00204411, 0x000 }, | ||
3797 | { 0x00000001, 0x00204811, 0x000 }, | ||
3798 | { 0x00002258, 0x00300a24, 0x000 }, | ||
3799 | { 0x00040000, 0x00694622, 0x68d }, | ||
3800 | { 0x00000000, 0xc0201c10, 0x000 }, | ||
3801 | { 0x00000000, 0xc0400000, 0x57c }, | ||
3802 | { 0x00000000, 0x002f0223, 0x000 }, | ||
3803 | { 0x00000000, 0x0cc00000, 0x572 }, | ||
3804 | { 0x00000000, 0xc0201c00, 0x000 }, | ||
3805 | { 0x00000000, 0xc0400000, 0x57c }, | ||
3806 | { 0x00000004, 0x002f0223, 0x000 }, | ||
3807 | { 0x00000000, 0x0cc00000, 0x57a }, | ||
3808 | { 0x81000000, 0x00204411, 0x000 }, | ||
3809 | { 0x00000000, 0x00204811, 0x000 }, | ||
3810 | { 0x0000216d, 0x00204411, 0x000 }, | ||
3811 | { 0x00000000, 0xc0204800, 0x000 }, | ||
3812 | { 0x00000000, 0xc0604800, 0x692 }, | ||
3813 | { 0x00000000, 0x00401c10, 0x57c }, | ||
3814 | { 0x00000000, 0xc0200000, 0x000 }, | ||
3815 | { 0x00000000, 0xc0400000, 0x000 }, | ||
3816 | { 0x00000000, 0x0ee00000, 0x57e }, | ||
3817 | { 0x00000000, 0x00600000, 0x5c9 }, | ||
3818 | { 0x00000000, 0x002f0224, 0x000 }, | ||
3819 | { 0x00000000, 0x0cc00000, 0x58f }, | ||
3820 | { 0x0000a2b7, 0x00204411, 0x000 }, | ||
3821 | { 0x00000000, 0x00204807, 0x000 }, | ||
3822 | { 0x81000000, 0x00204411, 0x000 }, | ||
3823 | { 0x00000001, 0x00204811, 0x000 }, | ||
3824 | { 0x0004a2b6, 0x00604411, 0x68d }, | ||
3825 | { 0x0000001a, 0x00212230, 0x000 }, | ||
3826 | { 0x00000006, 0x00222630, 0x000 }, | ||
3827 | { 0x00042004, 0x00604411, 0x68d }, | ||
3828 | { 0x0000a2c4, 0x00204411, 0x000 }, | ||
3829 | { 0x00000000, 0x003048e9, 0x000 }, | ||
3830 | { 0x00000000, 0x00e00000, 0x58d }, | ||
3831 | { 0x0000a2d1, 0x00204411, 0x000 }, | ||
3832 | { 0x00000000, 0x00404808, 0x000 }, | ||
3833 | { 0x0000a2d1, 0x00204411, 0x000 }, | ||
3834 | { 0x00000001, 0x00504a28, 0x000 }, | ||
3835 | { 0x00000001, 0x002f0224, 0x000 }, | ||
3836 | { 0x00000000, 0x0cc00000, 0x5a0 }, | ||
3837 | { 0x0000a2bb, 0x00204411, 0x000 }, | ||
3838 | { 0x00000000, 0x00204807, 0x000 }, | ||
3839 | { 0x81000000, 0x00204411, 0x000 }, | ||
3840 | { 0x00000001, 0x00204811, 0x000 }, | ||
3841 | { 0x0004a2ba, 0x00604411, 0x68d }, | ||
3842 | { 0x0000001a, 0x00212230, 0x000 }, | ||
3843 | { 0x00000006, 0x00222630, 0x000 }, | ||
3844 | { 0x00042004, 0x00604411, 0x68d }, | ||
3845 | { 0x0000a2c5, 0x00204411, 0x000 }, | ||
3846 | { 0x00000000, 0x003048e9, 0x000 }, | ||
3847 | { 0x00000000, 0x00e00000, 0x59e }, | ||
3848 | { 0x0000a2d2, 0x00204411, 0x000 }, | ||
3849 | { 0x00000000, 0x00404808, 0x000 }, | ||
3850 | { 0x0000a2d2, 0x00204411, 0x000 }, | ||
3851 | { 0x00000001, 0x00504a28, 0x000 }, | ||
3852 | { 0x00000002, 0x002f0224, 0x000 }, | ||
3853 | { 0x00000000, 0x0cc00000, 0x5b1 }, | ||
3854 | { 0x0000a2bf, 0x00204411, 0x000 }, | ||
3855 | { 0x00000000, 0x00204807, 0x000 }, | ||
3856 | { 0x81000000, 0x00204411, 0x000 }, | ||
3857 | { 0x00000001, 0x00204811, 0x000 }, | ||
3858 | { 0x0004a2be, 0x00604411, 0x68d }, | ||
3859 | { 0x0000001a, 0x00212230, 0x000 }, | ||
3860 | { 0x00000006, 0x00222630, 0x000 }, | ||
3861 | { 0x00042004, 0x00604411, 0x68d }, | ||
3862 | { 0x0000a2c6, 0x00204411, 0x000 }, | ||
3863 | { 0x00000000, 0x003048e9, 0x000 }, | ||
3864 | { 0x00000000, 0x00e00000, 0x5af }, | ||
3865 | { 0x0000a2d3, 0x00204411, 0x000 }, | ||
3866 | { 0x00000000, 0x00404808, 0x000 }, | ||
3867 | { 0x0000a2d3, 0x00204411, 0x000 }, | ||
3868 | { 0x00000001, 0x00504a28, 0x000 }, | ||
3869 | { 0x0000a2c3, 0x00204411, 0x000 }, | ||
3870 | { 0x00000000, 0x00204807, 0x000 }, | ||
3871 | { 0x81000000, 0x00204411, 0x000 }, | ||
3872 | { 0x00000001, 0x00204811, 0x000 }, | ||
3873 | { 0x0004a2c2, 0x00604411, 0x68d }, | ||
3874 | { 0x0000001a, 0x00212230, 0x000 }, | ||
3875 | { 0x00000006, 0x00222630, 0x000 }, | ||
3876 | { 0x00042004, 0x00604411, 0x68d }, | ||
3877 | { 0x0000a2c7, 0x00204411, 0x000 }, | ||
3878 | { 0x00000000, 0x003048e9, 0x000 }, | ||
3879 | { 0x00000000, 0x00e00000, 0x5be }, | ||
3880 | { 0x0000a2d4, 0x00204411, 0x000 }, | ||
3881 | { 0x00000000, 0x00404808, 0x000 }, | ||
3882 | { 0x0000a2d4, 0x00204411, 0x000 }, | ||
3883 | { 0x00000001, 0x00504a28, 0x000 }, | ||
3884 | { 0x85000000, 0x00204411, 0x000 }, | ||
3885 | { 0x00000000, 0x00204801, 0x000 }, | ||
3886 | { 0x0000304a, 0x00204411, 0x000 }, | ||
3887 | { 0x01000000, 0x00204811, 0x000 }, | ||
3888 | { 0x00000000, 0x00400000, 0x5c4 }, | ||
3889 | { 0xa4000000, 0xc0204411, 0x000 }, | ||
3890 | { 0x00000000, 0xc0404800, 0x000 }, | ||
3891 | { 0x00000000, 0xc0600000, 0x5c9 }, | ||
3892 | { 0x00000000, 0xc0400400, 0x001 }, | ||
3893 | { 0x0000002c, 0x00203621, 0x000 }, | ||
3894 | { 0x81000000, 0x00204411, 0x000 }, | ||
3895 | { 0x00000006, 0x00204811, 0x000 }, | ||
3896 | { 0x00000000, 0x002f0230, 0x000 }, | ||
3897 | { 0x00000000, 0x0cc00000, 0x5d0 }, | ||
3898 | { 0x00000000, 0x00200411, 0x000 }, | ||
3899 | { 0x00000030, 0x00403621, 0x5e3 }, | ||
3900 | { 0x00000030, 0x0020062d, 0x000 }, | ||
3901 | { 0x00007e00, 0x00280621, 0x000 }, | ||
3902 | { 0x00000000, 0x002f0221, 0x000 }, | ||
3903 | { 0x00000000, 0x0ce00000, 0x5e3 }, | ||
3904 | { 0x81000000, 0x00204411, 0x000 }, | ||
3905 | { 0x00000001, 0x00204811, 0x000 }, | ||
3906 | { 0x0004a092, 0x00604411, 0x68d }, | ||
3907 | { 0x00000031, 0x00203630, 0x000 }, | ||
3908 | { 0x0004a093, 0x00604411, 0x68d }, | ||
3909 | { 0x00000032, 0x00203630, 0x000 }, | ||
3910 | { 0x0004a2b6, 0x00604411, 0x68d }, | ||
3911 | { 0x00000033, 0x00203630, 0x000 }, | ||
3912 | { 0x0004a2ba, 0x00604411, 0x68d }, | ||
3913 | { 0x00000034, 0x00203630, 0x000 }, | ||
3914 | { 0x0004a2be, 0x00604411, 0x68d }, | ||
3915 | { 0x00000035, 0x00203630, 0x000 }, | ||
3916 | { 0x0004a2c2, 0x00604411, 0x68d }, | ||
3917 | { 0x00000036, 0x00203630, 0x000 }, | ||
3918 | { 0x00042004, 0x00604411, 0x68d }, | ||
3919 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
3920 | { 0x0000003f, 0x00204811, 0x000 }, | ||
3921 | { 0x0000003f, 0x00204811, 0x000 }, | ||
3922 | { 0x0000003f, 0x00204811, 0x000 }, | ||
3923 | { 0x0000003f, 0x00204811, 0x000 }, | ||
3924 | { 0x00000005, 0x00204811, 0x000 }, | ||
3925 | { 0x0000a1f4, 0x00204411, 0x000 }, | ||
3926 | { 0x00000000, 0x00204811, 0x000 }, | ||
3927 | { 0x88000000, 0x00204411, 0x000 }, | ||
3928 | { 0x00000001, 0x00204811, 0x000 }, | ||
3929 | { 0x81000000, 0x00204411, 0x000 }, | ||
3930 | { 0x00000006, 0x00204811, 0x000 }, | ||
3931 | { 0x00000001, 0x002f0230, 0x000 }, | ||
3932 | { 0x00000000, 0x0ce00000, 0x62c }, | ||
3933 | { 0x00000030, 0x0020062d, 0x000 }, | ||
3934 | { 0x00000000, 0x002f0221, 0x000 }, | ||
3935 | { 0x00000000, 0x0ce00000, 0x62c }, | ||
3936 | { 0x81000000, 0x00204411, 0x000 }, | ||
3937 | { 0x00000001, 0x00204811, 0x000 }, | ||
3938 | { 0x00007e00, 0x00280621, 0x000 }, | ||
3939 | { 0x00000000, 0x002f0221, 0x000 }, | ||
3940 | { 0x00000000, 0x0ce00000, 0x605 }, | ||
3941 | { 0x0000a092, 0x00204411, 0x000 }, | ||
3942 | { 0x00000031, 0x00204a2d, 0x000 }, | ||
3943 | { 0x0000a093, 0x00204411, 0x000 }, | ||
3944 | { 0x00000032, 0x00204a2d, 0x000 }, | ||
3945 | { 0x0000a2b6, 0x00204411, 0x000 }, | ||
3946 | { 0x00000033, 0x00204a2d, 0x000 }, | ||
3947 | { 0x0000a2ba, 0x00204411, 0x000 }, | ||
3948 | { 0x00000034, 0x00204a2d, 0x000 }, | ||
3949 | { 0x0000a2be, 0x00204411, 0x000 }, | ||
3950 | { 0x00000035, 0x00204a2d, 0x000 }, | ||
3951 | { 0x0000a2c2, 0x00204411, 0x000 }, | ||
3952 | { 0x00000036, 0x00204a2d, 0x000 }, | ||
3953 | { 0x00000030, 0x0020062d, 0x000 }, | ||
3954 | { 0x000001ff, 0x00280621, 0x000 }, | ||
3955 | { 0x00000000, 0x002f0221, 0x000 }, | ||
3956 | { 0x00000000, 0x0ce00000, 0x62b }, | ||
3957 | { 0x00000000, 0x00210221, 0x000 }, | ||
3958 | { 0x00000000, 0x14c00000, 0x60e }, | ||
3959 | { 0x0004a003, 0x00604411, 0x68d }, | ||
3960 | { 0x0000a003, 0x00204411, 0x000 }, | ||
3961 | { 0x00000000, 0x00204810, 0x000 }, | ||
3962 | { 0x00000001, 0x00210621, 0x000 }, | ||
3963 | { 0x00000000, 0x14c00000, 0x613 }, | ||
3964 | { 0x0004a010, 0x00604411, 0x68d }, | ||
3965 | { 0x0000a010, 0x00204411, 0x000 }, | ||
3966 | { 0x00000000, 0x00204810, 0x000 }, | ||
3967 | { 0x00000001, 0x00210621, 0x000 }, | ||
3968 | { 0x00000000, 0x002f0221, 0x000 }, | ||
3969 | { 0x00000000, 0x0ce00000, 0x62b }, | ||
3970 | { 0x0004a011, 0x00604411, 0x68d }, | ||
3971 | { 0x0000a011, 0x00204411, 0x000 }, | ||
3972 | { 0x00000000, 0x00204810, 0x000 }, | ||
3973 | { 0x0004a012, 0x00604411, 0x68d }, | ||
3974 | { 0x0000a012, 0x00204411, 0x000 }, | ||
3975 | { 0x00000000, 0x00204810, 0x000 }, | ||
3976 | { 0x0004a013, 0x00604411, 0x68d }, | ||
3977 | { 0x0000a013, 0x00204411, 0x000 }, | ||
3978 | { 0x00000000, 0x00204810, 0x000 }, | ||
3979 | { 0x0004a014, 0x00604411, 0x68d }, | ||
3980 | { 0x0000a014, 0x00204411, 0x000 }, | ||
3981 | { 0x00000000, 0x00204810, 0x000 }, | ||
3982 | { 0x0004a015, 0x00604411, 0x68d }, | ||
3983 | { 0x0000a015, 0x00204411, 0x000 }, | ||
3984 | { 0x00000000, 0x00204810, 0x000 }, | ||
3985 | { 0x0004a016, 0x00604411, 0x68d }, | ||
3986 | { 0x0000a016, 0x00204411, 0x000 }, | ||
3987 | { 0x00000000, 0x00204810, 0x000 }, | ||
3988 | { 0x0004a017, 0x00604411, 0x68d }, | ||
3989 | { 0x0000a017, 0x00204411, 0x000 }, | ||
3990 | { 0x00000000, 0x00204810, 0x000 }, | ||
3991 | { 0x00042004, 0x00604411, 0x68d }, | ||
3992 | { 0x0000002c, 0x0080062d, 0x000 }, | ||
3993 | { 0xff000000, 0x00204411, 0x000 }, | ||
3994 | { 0x00000000, 0x00204811, 0x000 }, | ||
3995 | { 0x00000001, 0x00204811, 0x000 }, | ||
3996 | { 0x00000002, 0x00804811, 0x000 }, | ||
3997 | { 0x00000000, 0x0ee00000, 0x63d }, | ||
3998 | { 0x00000030, 0x0020062d, 0x000 }, | ||
3999 | { 0x00000002, 0x00280621, 0x000 }, | ||
4000 | { 0x00000000, 0x002f0221, 0x000 }, | ||
4001 | { 0x00000000, 0x0ce00000, 0x63b }, | ||
4002 | { 0x81000000, 0x00204411, 0x000 }, | ||
4003 | { 0x00000001, 0x00204811, 0x000 }, | ||
4004 | { 0x00042004, 0x00604411, 0x68d }, | ||
4005 | { 0x00001000, 0x00200811, 0x000 }, | ||
4006 | { 0x0000002b, 0x00203622, 0x000 }, | ||
4007 | { 0x00000000, 0x00600000, 0x641 }, | ||
4008 | { 0x00000000, 0x00600000, 0x5c9 }, | ||
4009 | { 0x98000000, 0x00204411, 0x000 }, | ||
4010 | { 0x00000000, 0x00804811, 0x000 }, | ||
4011 | { 0x00000000, 0xc0600000, 0x641 }, | ||
4012 | { 0x00000000, 0xc0400400, 0x001 }, | ||
4013 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
4014 | { 0x00000022, 0x00204811, 0x000 }, | ||
4015 | { 0x89000000, 0x00204411, 0x000 }, | ||
4016 | { 0x00000001, 0x00404811, 0x62d }, | ||
4017 | { 0x97000000, 0x00204411, 0x000 }, | ||
4018 | { 0x00000000, 0x00204811, 0x000 }, | ||
4019 | { 0x8a000000, 0x00204411, 0x000 }, | ||
4020 | { 0x00000000, 0x00404811, 0x62d }, | ||
4021 | { 0x00000000, 0x00600000, 0x65c }, | ||
4022 | { 0x00002010, 0x00204411, 0x000 }, | ||
4023 | { 0x00008000, 0x00204811, 0x000 }, | ||
4024 | { 0x0001a2a4, 0xc0204411, 0x000 }, | ||
4025 | { 0x00000016, 0x00604811, 0x36e }, | ||
4026 | { 0x00002010, 0x00204411, 0x000 }, | ||
4027 | { 0x00010000, 0x00204811, 0x000 }, | ||
4028 | { 0x81000000, 0x00204411, 0x000 }, | ||
4029 | { 0x00000001, 0x00204811, 0x000 }, | ||
4030 | { 0x0000217c, 0x00204411, 0x000 }, | ||
4031 | { 0x09800000, 0x00204811, 0x000 }, | ||
4032 | { 0xffffffff, 0x00204811, 0x000 }, | ||
4033 | { 0x00000000, 0x00204811, 0x000 }, | ||
4034 | { 0x00000000, 0x17000000, 0x000 }, | ||
4035 | { 0x0004217f, 0x00604411, 0x68d }, | ||
4036 | { 0x0000001f, 0x00210230, 0x000 }, | ||
4037 | { 0x00000000, 0x14c00000, 0x000 }, | ||
4038 | { 0x00000004, 0x00404c11, 0x656 }, | ||
4039 | { 0x00000000, 0x00400000, 0x000 }, | ||
4040 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
4041 | { 0x00000004, 0x00291e27, 0x000 }, | ||
4042 | { 0x00000017, 0x00803627, 0x000 }, | ||
4043 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
4044 | { 0xfffffffb, 0x00281e27, 0x000 }, | ||
4045 | { 0x00000017, 0x00803627, 0x000 }, | ||
4046 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
4047 | { 0x00000008, 0x00291e27, 0x000 }, | ||
4048 | { 0x00000017, 0x00803627, 0x000 }, | ||
4049 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
4050 | { 0xfffffff7, 0x00281e27, 0x000 }, | ||
4051 | { 0x00000017, 0x00803627, 0x000 }, | ||
4052 | { 0x00002010, 0x00204411, 0x000 }, | ||
4053 | { 0x00008000, 0x00204811, 0x000 }, | ||
4054 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
4055 | { 0x00000016, 0x00604811, 0x36e }, | ||
4056 | { 0x00002010, 0x00204411, 0x000 }, | ||
4057 | { 0x00010000, 0x00204811, 0x000 }, | ||
4058 | { 0x0000217c, 0x00204411, 0x000 }, | ||
4059 | { 0x01800000, 0x00204811, 0x000 }, | ||
4060 | { 0xffffffff, 0x00204811, 0x000 }, | ||
4061 | { 0x00000000, 0x00204811, 0x000 }, | ||
4062 | { 0x00000000, 0x17000000, 0x000 }, | ||
4063 | { 0x81000000, 0x00204411, 0x000 }, | ||
4064 | { 0x00000001, 0x00204811, 0x000 }, | ||
4065 | { 0x0004217f, 0x00604411, 0x68d }, | ||
4066 | { 0x0000001f, 0x00210230, 0x000 }, | ||
4067 | { 0x00000000, 0x14c00000, 0x68c }, | ||
4068 | { 0x00000010, 0x00404c11, 0x672 }, | ||
4069 | { 0x00000000, 0xc0200400, 0x000 }, | ||
4070 | { 0x00000000, 0x38c00000, 0x000 }, | ||
4071 | { 0x0000001d, 0x00200a2d, 0x000 }, | ||
4072 | { 0x0000001e, 0x00200e2d, 0x000 }, | ||
4073 | { 0x0000001f, 0x0020122d, 0x000 }, | ||
4074 | { 0x00000020, 0x0020162d, 0x000 }, | ||
4075 | { 0x00002169, 0x00204411, 0x000 }, | ||
4076 | { 0x00000000, 0x00204804, 0x000 }, | ||
4077 | { 0x00000000, 0x00204805, 0x000 }, | ||
4078 | { 0x00000000, 0x00204801, 0x000 }, | ||
4079 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
4080 | { 0x00000004, 0x00301224, 0x000 }, | ||
4081 | { 0x00000000, 0x002f0064, 0x000 }, | ||
4082 | { 0x00000000, 0x0cc00000, 0x68b }, | ||
4083 | { 0x00000003, 0x00281a22, 0x000 }, | ||
4084 | { 0x00000008, 0x00221222, 0x000 }, | ||
4085 | { 0xfffff000, 0x00281224, 0x000 }, | ||
4086 | { 0x00000000, 0x002910c4, 0x000 }, | ||
4087 | { 0x0000001f, 0x00403624, 0x000 }, | ||
4088 | { 0x00000000, 0x00800000, 0x000 }, | ||
4089 | { 0x00000000, 0x1ac00000, 0x68d }, | ||
4090 | { 0x9f000000, 0x00204411, 0x000 }, | ||
4091 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
4092 | { 0x00000000, 0x1ae00000, 0x690 }, | ||
4093 | { 0x00000000, 0x00800000, 0x000 }, | ||
4094 | { 0x00000000, 0x1ac00000, 0x692 }, | ||
4095 | { 0x9e000000, 0x00204411, 0x000 }, | ||
4096 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
4097 | { 0x00000000, 0x1ae00000, 0x695 }, | ||
4098 | { 0x00000000, 0x00800000, 0x000 }, | ||
4099 | { 0x00000000, 0x00600000, 0x00b }, | ||
4100 | { 0x00001000, 0x00600411, 0x315 }, | ||
4101 | { 0x00000000, 0x00200411, 0x000 }, | ||
4102 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
4103 | { 0x0000225c, 0x00204411, 0x000 }, | ||
4104 | { 0x00000003, 0x00204811, 0x000 }, | ||
4105 | { 0x00002256, 0x00204411, 0x000 }, | ||
4106 | { 0x0000001b, 0x00204811, 0x000 }, | ||
4107 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
4108 | { 0x00000001, 0x00204811, 0x000 }, | ||
4109 | { 0x0001a1fd, 0xc0204411, 0x000 }, | ||
4110 | { 0x00000021, 0x00201e2d, 0x000 }, | ||
4111 | { 0x00000010, 0x00221e27, 0x000 }, | ||
4112 | { 0x00000024, 0x0020222d, 0x000 }, | ||
4113 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
4114 | { 0x00000000, 0x00294907, 0x000 }, | ||
4115 | { 0x00000000, 0x00204811, 0x000 }, | ||
4116 | { 0x00000022, 0x0020222d, 0x000 }, | ||
4117 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
4118 | { 0x00000000, 0x00294907, 0x000 }, | ||
4119 | { 0x00000000, 0x00204811, 0x000 }, | ||
4120 | { 0x00000023, 0x00201e2d, 0x000 }, | ||
4121 | { 0x00000010, 0x00221e27, 0x000 }, | ||
4122 | { 0x00000000, 0x00294907, 0x000 }, | ||
4123 | { 0x00000000, 0x00404811, 0x000 }, | ||
4124 | { 0x00000000, 0x00000000, 0x000 }, | ||
4125 | { 0x00000000, 0x00000000, 0x000 }, | ||
4126 | { 0x00000000, 0x00000000, 0x000 }, | ||
4127 | { 0x00000000, 0x00000000, 0x000 }, | ||
4128 | { 0x00000000, 0x00000000, 0x000 }, | ||
4129 | { 0x00000000, 0x00000000, 0x000 }, | ||
4130 | { 0x00000000, 0x00000000, 0x000 }, | ||
4131 | { 0x00000000, 0x00000000, 0x000 }, | ||
4132 | { 0x00000000, 0x00000000, 0x000 }, | ||
4133 | { 0x00000000, 0x00000000, 0x000 }, | ||
4134 | { 0x00000000, 0x00000000, 0x000 }, | ||
4135 | { 0x00000000, 0x00000000, 0x000 }, | ||
4136 | { 0x00000000, 0x00000000, 0x000 }, | ||
4137 | { 0x00000000, 0x00000000, 0x000 }, | ||
4138 | { 0x00000000, 0x00000000, 0x000 }, | ||
4139 | { 0x00000000, 0x00000000, 0x000 }, | ||
4140 | { 0x00000000, 0x00000000, 0x000 }, | ||
4141 | { 0x00000000, 0x00000000, 0x000 }, | ||
4142 | { 0x00000000, 0x00000000, 0x000 }, | ||
4143 | { 0x00000000, 0x00000000, 0x000 }, | ||
4144 | { 0x00000000, 0x00000000, 0x000 }, | ||
4145 | { 0x00000000, 0x00000000, 0x000 }, | ||
4146 | { 0x00000000, 0x00000000, 0x000 }, | ||
4147 | { 0x00000000, 0x00000000, 0x000 }, | ||
4148 | { 0x00000000, 0x00000000, 0x000 }, | ||
4149 | { 0x00000000, 0x00000000, 0x000 }, | ||
4150 | { 0x00000000, 0x00000000, 0x000 }, | ||
4151 | { 0x00000000, 0x00000000, 0x000 }, | ||
4152 | { 0x00000000, 0x00000000, 0x000 }, | ||
4153 | { 0x00000000, 0x00000000, 0x000 }, | ||
4154 | { 0x00000000, 0x00000000, 0x000 }, | ||
4155 | { 0x00000000, 0x00000000, 0x000 }, | ||
4156 | { 0x00000000, 0x00000000, 0x000 }, | ||
4157 | { 0x00000000, 0x00000000, 0x000 }, | ||
4158 | { 0x00000000, 0x00000000, 0x000 }, | ||
4159 | { 0x00000000, 0x00000000, 0x000 }, | ||
4160 | { 0x00000000, 0x00000000, 0x000 }, | ||
4161 | { 0x00000000, 0x00000000, 0x000 }, | ||
4162 | { 0x00000000, 0x00000000, 0x000 }, | ||
4163 | { 0x00000000, 0x00000000, 0x000 }, | ||
4164 | { 0x00000000, 0x00000000, 0x000 }, | ||
4165 | { 0x00000000, 0x00000000, 0x000 }, | ||
4166 | { 0x00000000, 0x00000000, 0x000 }, | ||
4167 | { 0x00000000, 0x00000000, 0x000 }, | ||
4168 | { 0x00000000, 0x00000000, 0x000 }, | ||
4169 | { 0x00000000, 0x00000000, 0x000 }, | ||
4170 | { 0x00000000, 0x00000000, 0x000 }, | ||
4171 | { 0x00000000, 0x00000000, 0x000 }, | ||
4172 | { 0x00000000, 0x00000000, 0x000 }, | ||
4173 | { 0x00000000, 0x00000000, 0x000 }, | ||
4174 | { 0x00000000, 0x00000000, 0x000 }, | ||
4175 | { 0x00000000, 0x00000000, 0x000 }, | ||
4176 | { 0x01420502, 0x05c00250, 0x000 }, | ||
4177 | { 0x01c30168, 0x043f05c0, 0x000 }, | ||
4178 | { 0x02250209, 0x02500151, 0x000 }, | ||
4179 | { 0x02230245, 0x02a00241, 0x000 }, | ||
4180 | { 0x03d705c0, 0x05c005c0, 0x000 }, | ||
4181 | { 0x0649064a, 0x031f05c0, 0x000 }, | ||
4182 | { 0x05c005c5, 0x03200340, 0x000 }, | ||
4183 | { 0x032a0282, 0x03420334, 0x000 }, | ||
4184 | { 0x05c005c0, 0x05c005c0, 0x000 }, | ||
4185 | { 0x05c00551, 0x05c005c0, 0x000 }, | ||
4186 | { 0x03ba05c0, 0x04bb0344, 0x000 }, | ||
4187 | { 0x049a0450, 0x043d05c0, 0x000 }, | ||
4188 | { 0x04d005c0, 0x044104dd, 0x000 }, | ||
4189 | { 0x04500507, 0x03510375, 0x000 }, | ||
4190 | { 0x05c005c0, 0x05c005c0, 0x000 }, | ||
4191 | { 0x05c005c0, 0x05c005c0, 0x000 }, | ||
4192 | { 0x05c005c0, 0x063f05c7, 0x000 }, | ||
4193 | { 0x05c005c0, 0x000705c0, 0x000 }, | ||
4194 | { 0x05c005c0, 0x05c005c0, 0x000 }, | ||
4195 | { 0x05c005c0, 0x05c005c0, 0x000 }, | ||
4196 | { 0x03f803ed, 0x04080406, 0x000 }, | ||
4197 | { 0x040e040a, 0x040c0410, 0x000 }, | ||
4198 | { 0x041c0418, 0x04240420, 0x000 }, | ||
4199 | { 0x042c0428, 0x04340430, 0x000 }, | ||
4200 | { 0x05c005c0, 0x043805c0, 0x000 }, | ||
4201 | { 0x05c005c0, 0x05c005c0, 0x000 }, | ||
4202 | { 0x05c005c0, 0x05c005c0, 0x000 }, | ||
4203 | { 0x00020679, 0x06970006, 0x000 }, | ||
4204 | }; | ||
4205 | |||
4206 | static const u32 RV610_pfp_microcode[] = { | ||
4207 | 0xca0400, | ||
4208 | 0xa00000, | ||
4209 | 0x7e828b, | ||
4210 | 0x7c038b, | ||
4211 | 0x8001b8, | ||
4212 | 0x7c038b, | ||
4213 | 0xd4401e, | ||
4214 | 0xee001e, | ||
4215 | 0xca0400, | ||
4216 | 0xa00000, | ||
4217 | 0x7e828b, | ||
4218 | 0xc41838, | ||
4219 | 0xca2400, | ||
4220 | 0xca2800, | ||
4221 | 0x9581a8, | ||
4222 | 0xc41c3a, | ||
4223 | 0xc3c000, | ||
4224 | 0xca0800, | ||
4225 | 0xca0c00, | ||
4226 | 0x7c744b, | ||
4227 | 0xc20005, | ||
4228 | 0x99c000, | ||
4229 | 0xc41c3a, | ||
4230 | 0x7c744c, | ||
4231 | 0xc0fff0, | ||
4232 | 0x042c04, | ||
4233 | 0x309002, | ||
4234 | 0x7d2500, | ||
4235 | 0x351402, | ||
4236 | 0x7d350b, | ||
4237 | 0x255403, | ||
4238 | 0x7cd580, | ||
4239 | 0x259c03, | ||
4240 | 0x95c004, | ||
4241 | 0xd5001b, | ||
4242 | 0x7eddc1, | ||
4243 | 0x7d9d80, | ||
4244 | 0xd6801b, | ||
4245 | 0xd5801b, | ||
4246 | 0xd4401e, | ||
4247 | 0xd5401e, | ||
4248 | 0xd6401e, | ||
4249 | 0xd6801e, | ||
4250 | 0xd4801e, | ||
4251 | 0xd4c01e, | ||
4252 | 0x9783d3, | ||
4253 | 0xd5c01e, | ||
4254 | 0xca0800, | ||
4255 | 0x80001a, | ||
4256 | 0xca0c00, | ||
4257 | 0xe4011e, | ||
4258 | 0xd4001e, | ||
4259 | 0x80000c, | ||
4260 | 0xc41838, | ||
4261 | 0xe4013e, | ||
4262 | 0xd4001e, | ||
4263 | 0x80000c, | ||
4264 | 0xc41838, | ||
4265 | 0xd4401e, | ||
4266 | 0xee001e, | ||
4267 | 0xca0400, | ||
4268 | 0xa00000, | ||
4269 | 0x7e828b, | ||
4270 | 0xe4011e, | ||
4271 | 0xd4001e, | ||
4272 | 0xd4401e, | ||
4273 | 0xee001e, | ||
4274 | 0xca0400, | ||
4275 | 0xa00000, | ||
4276 | 0x7e828b, | ||
4277 | 0xe4013e, | ||
4278 | 0xd4001e, | ||
4279 | 0xd4401e, | ||
4280 | 0xee001e, | ||
4281 | 0xca0400, | ||
4282 | 0xa00000, | ||
4283 | 0x7e828b, | ||
4284 | 0xca1800, | ||
4285 | 0xd4401e, | ||
4286 | 0xd5801e, | ||
4287 | 0x800053, | ||
4288 | 0xd40075, | ||
4289 | 0xd4401e, | ||
4290 | 0xca0800, | ||
4291 | 0xca0c00, | ||
4292 | 0xca1000, | ||
4293 | 0xd48019, | ||
4294 | 0xd4c018, | ||
4295 | 0xd50017, | ||
4296 | 0xd4801e, | ||
4297 | 0xd4c01e, | ||
4298 | 0xd5001e, | ||
4299 | 0xe2001e, | ||
4300 | 0xca0400, | ||
4301 | 0xa00000, | ||
4302 | 0x7e828b, | ||
4303 | 0xca0800, | ||
4304 | 0xd48060, | ||
4305 | 0xd4401e, | ||
4306 | 0x800000, | ||
4307 | 0xd4801e, | ||
4308 | 0xca0800, | ||
4309 | 0xd48061, | ||
4310 | 0xd4401e, | ||
4311 | 0x800000, | ||
4312 | 0xd4801e, | ||
4313 | 0xca0800, | ||
4314 | 0xca0c00, | ||
4315 | 0xd4401e, | ||
4316 | 0xd48016, | ||
4317 | 0xd4c016, | ||
4318 | 0xd4801e, | ||
4319 | 0x8001b8, | ||
4320 | 0xd4c01e, | ||
4321 | 0xc60843, | ||
4322 | 0xca0c00, | ||
4323 | 0xca1000, | ||
4324 | 0x948004, | ||
4325 | 0xca1400, | ||
4326 | 0xe420f3, | ||
4327 | 0xd42013, | ||
4328 | 0xd56065, | ||
4329 | 0xd4e01c, | ||
4330 | 0xd5201c, | ||
4331 | 0xd5601c, | ||
4332 | 0x800000, | ||
4333 | 0x062001, | ||
4334 | 0xc60843, | ||
4335 | 0xca0c00, | ||
4336 | 0xca1000, | ||
4337 | 0x9483f7, | ||
4338 | 0xca1400, | ||
4339 | 0xe420f3, | ||
4340 | 0x800079, | ||
4341 | 0xd42013, | ||
4342 | 0xc60843, | ||
4343 | 0xca0c00, | ||
4344 | 0xca1000, | ||
4345 | 0x9883ef, | ||
4346 | 0xca1400, | ||
4347 | 0xd40064, | ||
4348 | 0x80008d, | ||
4349 | 0x000000, | ||
4350 | 0xc41432, | ||
4351 | 0xc61843, | ||
4352 | 0xc4082f, | ||
4353 | 0x954005, | ||
4354 | 0xc40c30, | ||
4355 | 0xd4401e, | ||
4356 | 0x800000, | ||
4357 | 0xee001e, | ||
4358 | 0x9583f5, | ||
4359 | 0xc41031, | ||
4360 | 0xd44033, | ||
4361 | 0xd52065, | ||
4362 | 0xd4a01c, | ||
4363 | 0xd4e01c, | ||
4364 | 0xd5201c, | ||
4365 | 0xe4015e, | ||
4366 | 0xd4001e, | ||
4367 | 0x800000, | ||
4368 | 0x062001, | ||
4369 | 0xca1800, | ||
4370 | 0x0a2001, | ||
4371 | 0xd60076, | ||
4372 | 0xc40836, | ||
4373 | 0x988007, | ||
4374 | 0xc61045, | ||
4375 | 0x950110, | ||
4376 | 0xd4001f, | ||
4377 | 0xd46062, | ||
4378 | 0x800000, | ||
4379 | 0xd42062, | ||
4380 | 0xcc3835, | ||
4381 | 0xcc1433, | ||
4382 | 0x8401bb, | ||
4383 | 0xd40072, | ||
4384 | 0xd5401e, | ||
4385 | 0x800000, | ||
4386 | 0xee001e, | ||
4387 | 0xe2001a, | ||
4388 | 0x8401bb, | ||
4389 | 0xe2001a, | ||
4390 | 0xcc104b, | ||
4391 | 0xcc0447, | ||
4392 | 0x2c9401, | ||
4393 | 0x7d098b, | ||
4394 | 0x984005, | ||
4395 | 0x7d15cb, | ||
4396 | 0xd4001a, | ||
4397 | 0x8001b8, | ||
4398 | 0xd4006d, | ||
4399 | 0x344401, | ||
4400 | 0xcc0c48, | ||
4401 | 0x98403a, | ||
4402 | 0xcc2c4a, | ||
4403 | 0x958004, | ||
4404 | 0xcc0449, | ||
4405 | 0x8001b8, | ||
4406 | 0xd4001a, | ||
4407 | 0xd4c01a, | ||
4408 | 0x282801, | ||
4409 | 0x8400f0, | ||
4410 | 0xcc1003, | ||
4411 | 0x98801b, | ||
4412 | 0x04380c, | ||
4413 | 0x8400f0, | ||
4414 | 0xcc1003, | ||
4415 | 0x988017, | ||
4416 | 0x043808, | ||
4417 | 0x8400f0, | ||
4418 | 0xcc1003, | ||
4419 | 0x988013, | ||
4420 | 0x043804, | ||
4421 | 0x8400f0, | ||
4422 | 0xcc1003, | ||
4423 | 0x988014, | ||
4424 | 0xcc104c, | ||
4425 | 0x9a8009, | ||
4426 | 0xcc144d, | ||
4427 | 0x9840dc, | ||
4428 | 0xd4006d, | ||
4429 | 0xcc1848, | ||
4430 | 0xd5001a, | ||
4431 | 0xd5401a, | ||
4432 | 0x8000c9, | ||
4433 | 0xd5801a, | ||
4434 | 0x96c0d5, | ||
4435 | 0xd4006d, | ||
4436 | 0x8001b8, | ||
4437 | 0xd4006e, | ||
4438 | 0x9ac003, | ||
4439 | 0xd4006d, | ||
4440 | 0xd4006e, | ||
4441 | 0x800000, | ||
4442 | 0xec007f, | ||
4443 | 0x9ac0cc, | ||
4444 | 0xd4006d, | ||
4445 | 0x8001b8, | ||
4446 | 0xd4006e, | ||
4447 | 0xcc1403, | ||
4448 | 0xcc1803, | ||
4449 | 0xcc1c03, | ||
4450 | 0x7d9103, | ||
4451 | 0x7dd583, | ||
4452 | 0x7d190c, | ||
4453 | 0x35cc1f, | ||
4454 | 0x35701f, | ||
4455 | 0x7cf0cb, | ||
4456 | 0x7cd08b, | ||
4457 | 0x880000, | ||
4458 | 0x7e8e8b, | ||
4459 | 0x95c004, | ||
4460 | 0xd4006e, | ||
4461 | 0x8001b8, | ||
4462 | 0xd4001a, | ||
4463 | 0xd4c01a, | ||
4464 | 0xcc0803, | ||
4465 | 0xcc0c03, | ||
4466 | 0xcc1003, | ||
4467 | 0xcc1403, | ||
4468 | 0xcc1803, | ||
4469 | 0xcc1c03, | ||
4470 | 0xcc2403, | ||
4471 | 0xcc2803, | ||
4472 | 0x35c41f, | ||
4473 | 0x36b01f, | ||
4474 | 0x7c704b, | ||
4475 | 0x34f01f, | ||
4476 | 0x7c704b, | ||
4477 | 0x35701f, | ||
4478 | 0x7c704b, | ||
4479 | 0x7d8881, | ||
4480 | 0x7dccc1, | ||
4481 | 0x7e5101, | ||
4482 | 0x7e9541, | ||
4483 | 0x7c9082, | ||
4484 | 0x7cd4c2, | ||
4485 | 0x7c848b, | ||
4486 | 0x9ac003, | ||
4487 | 0x7c8c8b, | ||
4488 | 0x2c8801, | ||
4489 | 0x98809e, | ||
4490 | 0xd4006d, | ||
4491 | 0x98409c, | ||
4492 | 0xd4006e, | ||
4493 | 0xcc084c, | ||
4494 | 0xcc0c4d, | ||
4495 | 0xcc1048, | ||
4496 | 0xd4801a, | ||
4497 | 0xd4c01a, | ||
4498 | 0x800101, | ||
4499 | 0xd5001a, | ||
4500 | 0xcc0832, | ||
4501 | 0xd40032, | ||
4502 | 0x9482d9, | ||
4503 | 0xca0c00, | ||
4504 | 0xd4401e, | ||
4505 | 0x800000, | ||
4506 | 0xd4001e, | ||
4507 | 0xe4011e, | ||
4508 | 0xd4001e, | ||
4509 | 0xca0800, | ||
4510 | 0xca0c00, | ||
4511 | 0xca1000, | ||
4512 | 0xd4401e, | ||
4513 | 0xca1400, | ||
4514 | 0xd4801e, | ||
4515 | 0xd4c01e, | ||
4516 | 0xd5001e, | ||
4517 | 0xd5401e, | ||
4518 | 0xd54034, | ||
4519 | 0x800000, | ||
4520 | 0xee001e, | ||
4521 | 0x280404, | ||
4522 | 0xe2001a, | ||
4523 | 0xe2001a, | ||
4524 | 0xd4401a, | ||
4525 | 0xca3800, | ||
4526 | 0xcc0803, | ||
4527 | 0xcc0c03, | ||
4528 | 0xcc0c03, | ||
4529 | 0xcc0c03, | ||
4530 | 0x9882bd, | ||
4531 | 0x000000, | ||
4532 | 0x8401bb, | ||
4533 | 0xd7a06f, | ||
4534 | 0x800000, | ||
4535 | 0xee001f, | ||
4536 | 0xca0400, | ||
4537 | 0xc2ff00, | ||
4538 | 0xcc0834, | ||
4539 | 0xc13fff, | ||
4540 | 0x7c74cb, | ||
4541 | 0x7cc90b, | ||
4542 | 0x7d010f, | ||
4543 | 0x9902b0, | ||
4544 | 0x7c738b, | ||
4545 | 0x8401bb, | ||
4546 | 0xd7a06f, | ||
4547 | 0x800000, | ||
4548 | 0xee001f, | ||
4549 | 0xca0800, | ||
4550 | 0x281900, | ||
4551 | 0x7d898b, | ||
4552 | 0x958014, | ||
4553 | 0x281404, | ||
4554 | 0xca0c00, | ||
4555 | 0xca1000, | ||
4556 | 0xca1c00, | ||
4557 | 0xca2400, | ||
4558 | 0xe2001f, | ||
4559 | 0xd4c01a, | ||
4560 | 0xd5001a, | ||
4561 | 0xd5401a, | ||
4562 | 0xcc1803, | ||
4563 | 0xcc2c03, | ||
4564 | 0xcc2c03, | ||
4565 | 0xcc2c03, | ||
4566 | 0x7da58b, | ||
4567 | 0x7d9c47, | ||
4568 | 0x984297, | ||
4569 | 0x000000, | ||
4570 | 0x800161, | ||
4571 | 0xd4c01a, | ||
4572 | 0xd4401e, | ||
4573 | 0xd4801e, | ||
4574 | 0x800000, | ||
4575 | 0xee001e, | ||
4576 | 0xe4011e, | ||
4577 | 0xd4001e, | ||
4578 | 0xd4401e, | ||
4579 | 0xee001e, | ||
4580 | 0xca0400, | ||
4581 | 0xa00000, | ||
4582 | 0x7e828b, | ||
4583 | 0xe4013e, | ||
4584 | 0xd4001e, | ||
4585 | 0xd4401e, | ||
4586 | 0xee001e, | ||
4587 | 0xca0400, | ||
4588 | 0xa00000, | ||
4589 | 0x7e828b, | ||
4590 | 0xca0800, | ||
4591 | 0x248c06, | ||
4592 | 0x0ccc06, | ||
4593 | 0x98c006, | ||
4594 | 0xcc104e, | ||
4595 | 0x990004, | ||
4596 | 0xd40073, | ||
4597 | 0xe4011e, | ||
4598 | 0xd4001e, | ||
4599 | 0xd4401e, | ||
4600 | 0xd4801e, | ||
4601 | 0x800000, | ||
4602 | 0xee001e, | ||
4603 | 0xca0800, | ||
4604 | 0xca0c00, | ||
4605 | 0x34d018, | ||
4606 | 0x251001, | ||
4607 | 0x950021, | ||
4608 | 0xc17fff, | ||
4609 | 0xca1000, | ||
4610 | 0xca1400, | ||
4611 | 0xca1800, | ||
4612 | 0xd4801d, | ||
4613 | 0xd4c01d, | ||
4614 | 0x7db18b, | ||
4615 | 0xc14202, | ||
4616 | 0xc2c001, | ||
4617 | 0xd5801d, | ||
4618 | 0x34dc0e, | ||
4619 | 0x7d5d4c, | ||
4620 | 0x7f734c, | ||
4621 | 0xd7401e, | ||
4622 | 0xd5001e, | ||
4623 | 0xd5401e, | ||
4624 | 0xc14200, | ||
4625 | 0xc2c000, | ||
4626 | 0x099c01, | ||
4627 | 0x31dc10, | ||
4628 | 0x7f5f4c, | ||
4629 | 0x7f734c, | ||
4630 | 0x042802, | ||
4631 | 0x7d8380, | ||
4632 | 0xd5a86f, | ||
4633 | 0xd58066, | ||
4634 | 0xd7401e, | ||
4635 | 0xec005e, | ||
4636 | 0xc82402, | ||
4637 | 0xc82402, | ||
4638 | 0x8001b8, | ||
4639 | 0xd60076, | ||
4640 | 0xd4401e, | ||
4641 | 0xd4801e, | ||
4642 | 0xd4c01e, | ||
4643 | 0x800000, | ||
4644 | 0xee001e, | ||
4645 | 0x800000, | ||
4646 | 0xee001f, | ||
4647 | 0xd4001f, | ||
4648 | 0x800000, | ||
4649 | 0xd4001f, | ||
4650 | 0xd4001f, | ||
4651 | 0x880000, | ||
4652 | 0xd4001f, | ||
4653 | 0x000000, | ||
4654 | 0x000000, | ||
4655 | 0x000000, | ||
4656 | 0x000000, | ||
4657 | 0x000000, | ||
4658 | 0x000000, | ||
4659 | 0x000000, | ||
4660 | 0x000000, | ||
4661 | 0x000000, | ||
4662 | 0x000000, | ||
4663 | 0x000000, | ||
4664 | 0x000000, | ||
4665 | 0x000000, | ||
4666 | 0x000000, | ||
4667 | 0x000000, | ||
4668 | 0x000000, | ||
4669 | 0x000000, | ||
4670 | 0x000000, | ||
4671 | 0x000000, | ||
4672 | 0x000000, | ||
4673 | 0x000000, | ||
4674 | 0x000000, | ||
4675 | 0x000000, | ||
4676 | 0x000000, | ||
4677 | 0x000000, | ||
4678 | 0x000000, | ||
4679 | 0x000000, | ||
4680 | 0x000000, | ||
4681 | 0x000000, | ||
4682 | 0x000000, | ||
4683 | 0x000000, | ||
4684 | 0x000000, | ||
4685 | 0x000000, | ||
4686 | 0x000000, | ||
4687 | 0x000000, | ||
4688 | 0x000000, | ||
4689 | 0x000000, | ||
4690 | 0x000000, | ||
4691 | 0x000000, | ||
4692 | 0x000000, | ||
4693 | 0x000000, | ||
4694 | 0x000000, | ||
4695 | 0x000000, | ||
4696 | 0x000000, | ||
4697 | 0x000000, | ||
4698 | 0x000000, | ||
4699 | 0x000000, | ||
4700 | 0x000000, | ||
4701 | 0x000000, | ||
4702 | 0x000000, | ||
4703 | 0x000000, | ||
4704 | 0x000000, | ||
4705 | 0x000000, | ||
4706 | 0x000000, | ||
4707 | 0x000000, | ||
4708 | 0x000000, | ||
4709 | 0x000000, | ||
4710 | 0x000000, | ||
4711 | 0x000000, | ||
4712 | 0x000000, | ||
4713 | 0x000000, | ||
4714 | 0x000000, | ||
4715 | 0x000000, | ||
4716 | 0x000000, | ||
4717 | 0x000000, | ||
4718 | 0x000000, | ||
4719 | 0x010171, | ||
4720 | 0x020178, | ||
4721 | 0x03008f, | ||
4722 | 0x04007f, | ||
4723 | 0x050003, | ||
4724 | 0x06003f, | ||
4725 | 0x070032, | ||
4726 | 0x08012c, | ||
4727 | 0x090046, | ||
4728 | 0x0a0036, | ||
4729 | 0x1001b6, | ||
4730 | 0x1700a2, | ||
4731 | 0x22013a, | ||
4732 | 0x230149, | ||
4733 | 0x2000b4, | ||
4734 | 0x240125, | ||
4735 | 0x27004d, | ||
4736 | 0x28006a, | ||
4737 | 0x2a0060, | ||
4738 | 0x2b0052, | ||
4739 | 0x2f0065, | ||
4740 | 0x320087, | ||
4741 | 0x34017f, | ||
4742 | 0x3c0156, | ||
4743 | 0x3f0072, | ||
4744 | 0x41018c, | ||
4745 | 0x44012e, | ||
4746 | 0x550173, | ||
4747 | 0x56017a, | ||
4748 | 0x60000b, | ||
4749 | 0x610034, | ||
4750 | 0x620038, | ||
4751 | 0x630038, | ||
4752 | 0x640038, | ||
4753 | 0x650038, | ||
4754 | 0x660038, | ||
4755 | 0x670038, | ||
4756 | 0x68003a, | ||
4757 | 0x690041, | ||
4758 | 0x6a0048, | ||
4759 | 0x6b0048, | ||
4760 | 0x6c0048, | ||
4761 | 0x6d0048, | ||
4762 | 0x6e0048, | ||
4763 | 0x6f0048, | ||
4764 | 0x000006, | ||
4765 | 0x000006, | ||
4766 | 0x000006, | ||
4767 | 0x000006, | ||
4768 | 0x000006, | ||
4769 | 0x000006, | ||
4770 | 0x000006, | ||
4771 | 0x000006, | ||
4772 | 0x000006, | ||
4773 | 0x000006, | ||
4774 | 0x000006, | ||
4775 | 0x000006, | ||
4776 | 0x000006, | ||
4777 | 0x000006, | ||
4778 | 0x000006, | ||
4779 | 0x000006, | ||
4780 | 0x000006, | ||
4781 | 0x000006, | ||
4782 | 0x000006, | ||
4783 | }; | ||
4784 | |||
4785 | static const u32 RV620_cp_microcode[][3] = { | ||
4786 | { 0x00000000, 0xc0200400, 0x000 }, | ||
4787 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
4788 | { 0x0000ffff, 0x00284621, 0x000 }, | ||
4789 | { 0x00000000, 0xd9004800, 0x000 }, | ||
4790 | { 0x00000000, 0xc0200400, 0x000 }, | ||
4791 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
4792 | { 0x00000000, 0x00e00000, 0x000 }, | ||
4793 | { 0x00010000, 0xc0294620, 0x000 }, | ||
4794 | { 0x00000000, 0xd9004800, 0x000 }, | ||
4795 | { 0x00000000, 0xc0200400, 0x000 }, | ||
4796 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
4797 | { 0x81000000, 0x00204411, 0x000 }, | ||
4798 | { 0x00000001, 0x00204811, 0x000 }, | ||
4799 | { 0x00042004, 0x00604411, 0x68d }, | ||
4800 | { 0x00000000, 0x00600000, 0x631 }, | ||
4801 | { 0x00000000, 0x00600000, 0x645 }, | ||
4802 | { 0x00000000, 0xc0200800, 0x000 }, | ||
4803 | { 0x00000f00, 0x00281622, 0x000 }, | ||
4804 | { 0x00000008, 0x00211625, 0x000 }, | ||
4805 | { 0x00000018, 0x00203625, 0x000 }, | ||
4806 | { 0x8d000000, 0x00204411, 0x000 }, | ||
4807 | { 0x00000004, 0x002f0225, 0x000 }, | ||
4808 | { 0x00000000, 0x0ce00000, 0x018 }, | ||
4809 | { 0x00412000, 0x00404811, 0x019 }, | ||
4810 | { 0x00422000, 0x00204811, 0x000 }, | ||
4811 | { 0x8e000000, 0x00204411, 0x000 }, | ||
4812 | { 0x00000028, 0x00204a2d, 0x000 }, | ||
4813 | { 0x90000000, 0x00204411, 0x000 }, | ||
4814 | { 0x00000000, 0x00204805, 0x000 }, | ||
4815 | { 0x0000000c, 0x00211622, 0x000 }, | ||
4816 | { 0x00000003, 0x00281625, 0x000 }, | ||
4817 | { 0x00000019, 0x00211a22, 0x000 }, | ||
4818 | { 0x00000004, 0x00281a26, 0x000 }, | ||
4819 | { 0x00000000, 0x002914c5, 0x000 }, | ||
4820 | { 0x00000019, 0x00203625, 0x000 }, | ||
4821 | { 0x00000000, 0x003a1402, 0x000 }, | ||
4822 | { 0x00000016, 0x00211625, 0x000 }, | ||
4823 | { 0x00000003, 0x00281625, 0x000 }, | ||
4824 | { 0x00000017, 0x00200e2d, 0x000 }, | ||
4825 | { 0xfffffffc, 0x00280e23, 0x000 }, | ||
4826 | { 0x00000000, 0x002914a3, 0x000 }, | ||
4827 | { 0x00000017, 0x00203625, 0x000 }, | ||
4828 | { 0x00008000, 0x00280e22, 0x000 }, | ||
4829 | { 0x00000007, 0x00220e23, 0x000 }, | ||
4830 | { 0x00000000, 0x0029386e, 0x000 }, | ||
4831 | { 0x20000000, 0x00280e22, 0x000 }, | ||
4832 | { 0x00000006, 0x00210e23, 0x000 }, | ||
4833 | { 0x00000000, 0x0029386e, 0x000 }, | ||
4834 | { 0x00000000, 0x00220222, 0x000 }, | ||
4835 | { 0x00000000, 0x14e00000, 0x038 }, | ||
4836 | { 0x00000000, 0x2ee00000, 0x035 }, | ||
4837 | { 0x00000000, 0x2ce00000, 0x037 }, | ||
4838 | { 0x00000000, 0x00400e2d, 0x039 }, | ||
4839 | { 0x00000008, 0x00200e2d, 0x000 }, | ||
4840 | { 0x00000009, 0x0040122d, 0x046 }, | ||
4841 | { 0x00000001, 0x00400e2d, 0x039 }, | ||
4842 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
4843 | { 0x003ffffc, 0x00281223, 0x000 }, | ||
4844 | { 0x00000002, 0x00221224, 0x000 }, | ||
4845 | { 0x0000001f, 0x00211e23, 0x000 }, | ||
4846 | { 0x00000000, 0x14e00000, 0x03e }, | ||
4847 | { 0x00000008, 0x00401c11, 0x041 }, | ||
4848 | { 0x0000000d, 0x00201e2d, 0x000 }, | ||
4849 | { 0x0000000f, 0x00281e27, 0x000 }, | ||
4850 | { 0x00000003, 0x00221e27, 0x000 }, | ||
4851 | { 0x7fc00000, 0x00281a23, 0x000 }, | ||
4852 | { 0x00000014, 0x00211a26, 0x000 }, | ||
4853 | { 0x00000001, 0x00331a26, 0x000 }, | ||
4854 | { 0x00000008, 0x00221a26, 0x000 }, | ||
4855 | { 0x00000000, 0x00290cc7, 0x000 }, | ||
4856 | { 0x00000027, 0x00203624, 0x000 }, | ||
4857 | { 0x00007f00, 0x00281221, 0x000 }, | ||
4858 | { 0x00001400, 0x002f0224, 0x000 }, | ||
4859 | { 0x00000000, 0x0ce00000, 0x04b }, | ||
4860 | { 0x00000001, 0x00290e23, 0x000 }, | ||
4861 | { 0x0000000e, 0x00203623, 0x000 }, | ||
4862 | { 0x0000e000, 0x00204411, 0x000 }, | ||
4863 | { 0xfff80000, 0x00294a23, 0x000 }, | ||
4864 | { 0x00000000, 0x003a2c02, 0x000 }, | ||
4865 | { 0x00000002, 0x00220e2b, 0x000 }, | ||
4866 | { 0xfc000000, 0x00280e23, 0x000 }, | ||
4867 | { 0x0000000f, 0x00203623, 0x000 }, | ||
4868 | { 0x00001fff, 0x00294a23, 0x000 }, | ||
4869 | { 0x00000027, 0x00204a2d, 0x000 }, | ||
4870 | { 0x00000000, 0x00204811, 0x000 }, | ||
4871 | { 0x00000029, 0x00200e2d, 0x000 }, | ||
4872 | { 0x060a0200, 0x00294a23, 0x000 }, | ||
4873 | { 0x00000000, 0x00204811, 0x000 }, | ||
4874 | { 0x00000000, 0x00204811, 0x000 }, | ||
4875 | { 0x00000001, 0x00210222, 0x000 }, | ||
4876 | { 0x00000000, 0x14e00000, 0x061 }, | ||
4877 | { 0x00000000, 0x2ee00000, 0x05f }, | ||
4878 | { 0x00000000, 0x2ce00000, 0x05e }, | ||
4879 | { 0x00000000, 0x00400e2d, 0x062 }, | ||
4880 | { 0x00000001, 0x00400e2d, 0x062 }, | ||
4881 | { 0x0000000a, 0x00200e2d, 0x000 }, | ||
4882 | { 0x0000000b, 0x0040122d, 0x06a }, | ||
4883 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
4884 | { 0x003ffffc, 0x00281223, 0x000 }, | ||
4885 | { 0x00000002, 0x00221224, 0x000 }, | ||
4886 | { 0x7fc00000, 0x00281623, 0x000 }, | ||
4887 | { 0x00000014, 0x00211625, 0x000 }, | ||
4888 | { 0x00000001, 0x00331625, 0x000 }, | ||
4889 | { 0x80000000, 0x00280e23, 0x000 }, | ||
4890 | { 0x00000000, 0x00290ca3, 0x000 }, | ||
4891 | { 0x3ffffc00, 0x00290e23, 0x000 }, | ||
4892 | { 0x0000001f, 0x00211e23, 0x000 }, | ||
4893 | { 0x00000000, 0x14e00000, 0x06d }, | ||
4894 | { 0x00000100, 0x00401c11, 0x070 }, | ||
4895 | { 0x0000000d, 0x00201e2d, 0x000 }, | ||
4896 | { 0x000000f0, 0x00281e27, 0x000 }, | ||
4897 | { 0x00000004, 0x00221e27, 0x000 }, | ||
4898 | { 0x81000000, 0x00204411, 0x000 }, | ||
4899 | { 0x0000000d, 0x00204811, 0x000 }, | ||
4900 | { 0xfffff0ff, 0x00281a30, 0x000 }, | ||
4901 | { 0x0000a028, 0x00204411, 0x000 }, | ||
4902 | { 0x00000000, 0x002948e6, 0x000 }, | ||
4903 | { 0x0000a018, 0x00204411, 0x000 }, | ||
4904 | { 0x3fffffff, 0x00284a23, 0x000 }, | ||
4905 | { 0x0000a010, 0x00204411, 0x000 }, | ||
4906 | { 0x00000000, 0x00204804, 0x000 }, | ||
4907 | { 0x00000030, 0x0020162d, 0x000 }, | ||
4908 | { 0x00000002, 0x00291625, 0x000 }, | ||
4909 | { 0x00000030, 0x00203625, 0x000 }, | ||
4910 | { 0x00000025, 0x0020162d, 0x000 }, | ||
4911 | { 0x00000000, 0x002f00a3, 0x000 }, | ||
4912 | { 0x00000000, 0x0cc00000, 0x083 }, | ||
4913 | { 0x00000026, 0x0020162d, 0x000 }, | ||
4914 | { 0x00000000, 0x002f00a4, 0x000 }, | ||
4915 | { 0x00000000, 0x0cc00000, 0x084 }, | ||
4916 | { 0x00000000, 0x00400000, 0x08a }, | ||
4917 | { 0x00000025, 0x00203623, 0x000 }, | ||
4918 | { 0x00000026, 0x00203624, 0x000 }, | ||
4919 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
4920 | { 0x00000002, 0x00210227, 0x000 }, | ||
4921 | { 0x00000000, 0x14e00000, 0x08a }, | ||
4922 | { 0x00000000, 0x00600000, 0x668 }, | ||
4923 | { 0x00000000, 0x00600000, 0x65c }, | ||
4924 | { 0x00000002, 0x00210e22, 0x000 }, | ||
4925 | { 0x00000000, 0x14c00000, 0x08d }, | ||
4926 | { 0x00000012, 0xc0403620, 0x093 }, | ||
4927 | { 0x00000000, 0x2ee00000, 0x091 }, | ||
4928 | { 0x00000000, 0x2ce00000, 0x090 }, | ||
4929 | { 0x00000002, 0x00400e2d, 0x092 }, | ||
4930 | { 0x00000003, 0x00400e2d, 0x092 }, | ||
4931 | { 0x0000000c, 0x00200e2d, 0x000 }, | ||
4932 | { 0x00000012, 0x00203623, 0x000 }, | ||
4933 | { 0x00000003, 0x00210e22, 0x000 }, | ||
4934 | { 0x00000000, 0x14c00000, 0x098 }, | ||
4935 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
4936 | { 0x00000000, 0xc0204800, 0x000 }, | ||
4937 | { 0x00000000, 0xc0404800, 0x0a0 }, | ||
4938 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
4939 | { 0x00000000, 0x00204811, 0x000 }, | ||
4940 | { 0x00000000, 0x2ee00000, 0x09e }, | ||
4941 | { 0x00000000, 0x2ce00000, 0x09d }, | ||
4942 | { 0x00000002, 0x00400e2d, 0x09f }, | ||
4943 | { 0x00000003, 0x00400e2d, 0x09f }, | ||
4944 | { 0x0000000c, 0x00200e2d, 0x000 }, | ||
4945 | { 0x00000000, 0x00204803, 0x000 }, | ||
4946 | { 0x00000000, 0x003a0c02, 0x000 }, | ||
4947 | { 0x003f0000, 0x00280e23, 0x000 }, | ||
4948 | { 0x00000010, 0x00210e23, 0x000 }, | ||
4949 | { 0x00000011, 0x00203623, 0x000 }, | ||
4950 | { 0x0000001e, 0x0021022b, 0x000 }, | ||
4951 | { 0x00000000, 0x14c00000, 0x0a7 }, | ||
4952 | { 0x00000016, 0xc0203620, 0x000 }, | ||
4953 | { 0x0000001f, 0x0021022b, 0x000 }, | ||
4954 | { 0x00000000, 0x14c00000, 0x0aa }, | ||
4955 | { 0x00000015, 0xc0203620, 0x000 }, | ||
4956 | { 0x00000008, 0x00210e2b, 0x000 }, | ||
4957 | { 0x0000007f, 0x00280e23, 0x000 }, | ||
4958 | { 0x00000000, 0x002f0223, 0x000 }, | ||
4959 | { 0x00000000, 0x0ce00000, 0x0e1 }, | ||
4960 | { 0x00000000, 0x27000000, 0x000 }, | ||
4961 | { 0x00000000, 0x00600000, 0x2a3 }, | ||
4962 | { 0x00000001, 0x002f0223, 0x000 }, | ||
4963 | { 0x00000000, 0x0ae00000, 0x0b3 }, | ||
4964 | { 0x00000000, 0x00600000, 0x13a }, | ||
4965 | { 0x81000000, 0x00204411, 0x000 }, | ||
4966 | { 0x00000006, 0x00204811, 0x000 }, | ||
4967 | { 0x0000000c, 0x00221e30, 0x000 }, | ||
4968 | { 0x99800000, 0x00204411, 0x000 }, | ||
4969 | { 0x00000004, 0x0020122d, 0x000 }, | ||
4970 | { 0x00000008, 0x00221224, 0x000 }, | ||
4971 | { 0x00000010, 0x00201811, 0x000 }, | ||
4972 | { 0x00000000, 0x00291ce4, 0x000 }, | ||
4973 | { 0x00000000, 0x00604807, 0x12f }, | ||
4974 | { 0x9b000000, 0x00204411, 0x000 }, | ||
4975 | { 0x00000000, 0x00204802, 0x000 }, | ||
4976 | { 0x9c000000, 0x00204411, 0x000 }, | ||
4977 | { 0x00000000, 0x0033146f, 0x000 }, | ||
4978 | { 0x00000001, 0x00333e23, 0x000 }, | ||
4979 | { 0x00000000, 0xd9004800, 0x000 }, | ||
4980 | { 0x00000000, 0x00203c05, 0x000 }, | ||
4981 | { 0x81000000, 0x00204411, 0x000 }, | ||
4982 | { 0x0000000e, 0x00204811, 0x000 }, | ||
4983 | { 0x00000000, 0x00201010, 0x000 }, | ||
4984 | { 0x0000e007, 0x00204411, 0x000 }, | ||
4985 | { 0x0000000f, 0x0021022b, 0x000 }, | ||
4986 | { 0x00000000, 0x14c00000, 0x0cb }, | ||
4987 | { 0x00f8ff08, 0x00204811, 0x000 }, | ||
4988 | { 0x98000000, 0x00404811, 0x0dc }, | ||
4989 | { 0x000000f0, 0x00280e22, 0x000 }, | ||
4990 | { 0x000000a0, 0x002f0223, 0x000 }, | ||
4991 | { 0x00000000, 0x0cc00000, 0x0da }, | ||
4992 | { 0x00000011, 0x00200e2d, 0x000 }, | ||
4993 | { 0x00000001, 0x002f0223, 0x000 }, | ||
4994 | { 0x00000000, 0x0ce00000, 0x0d5 }, | ||
4995 | { 0x00000002, 0x002f0223, 0x000 }, | ||
4996 | { 0x00000000, 0x0ce00000, 0x0d4 }, | ||
4997 | { 0x00003f00, 0x00400c11, 0x0d6 }, | ||
4998 | { 0x00001f00, 0x00400c11, 0x0d6 }, | ||
4999 | { 0x00000f00, 0x00200c11, 0x000 }, | ||
5000 | { 0x00380009, 0x00294a23, 0x000 }, | ||
5001 | { 0x3f000000, 0x00280e2b, 0x000 }, | ||
5002 | { 0x00000002, 0x00220e23, 0x000 }, | ||
5003 | { 0x00000007, 0x00494a23, 0x0dc }, | ||
5004 | { 0x00380f09, 0x00204811, 0x000 }, | ||
5005 | { 0x68000007, 0x00204811, 0x000 }, | ||
5006 | { 0x00000008, 0x00214a27, 0x000 }, | ||
5007 | { 0x00000000, 0x00204811, 0x000 }, | ||
5008 | { 0x060a0200, 0x00294a24, 0x000 }, | ||
5009 | { 0x00000000, 0x00204811, 0x000 }, | ||
5010 | { 0x00000000, 0x00204811, 0x000 }, | ||
5011 | { 0x0000a202, 0x00204411, 0x000 }, | ||
5012 | { 0x00ff0000, 0x00280e22, 0x000 }, | ||
5013 | { 0x00000080, 0x00294a23, 0x000 }, | ||
5014 | { 0x00000027, 0x00200e2d, 0x000 }, | ||
5015 | { 0x00000026, 0x0020122d, 0x000 }, | ||
5016 | { 0x00000000, 0x002f0083, 0x000 }, | ||
5017 | { 0x00000000, 0x0ce00000, 0x0ea }, | ||
5018 | { 0x00000000, 0x00600000, 0x662 }, | ||
5019 | { 0x00000000, 0x00400000, 0x0eb }, | ||
5020 | { 0x00000000, 0x00600000, 0x665 }, | ||
5021 | { 0x00000007, 0x0020222d, 0x000 }, | ||
5022 | { 0x00000005, 0x00220e22, 0x000 }, | ||
5023 | { 0x00100000, 0x00280e23, 0x000 }, | ||
5024 | { 0x00000000, 0x00292068, 0x000 }, | ||
5025 | { 0x00000000, 0x003a0c02, 0x000 }, | ||
5026 | { 0x000000ef, 0x00280e23, 0x000 }, | ||
5027 | { 0x00000000, 0x00292068, 0x000 }, | ||
5028 | { 0x00000017, 0x00200e2d, 0x000 }, | ||
5029 | { 0x00000003, 0x00210223, 0x000 }, | ||
5030 | { 0x00000000, 0x14e00000, 0x0f8 }, | ||
5031 | { 0x0000000b, 0x00210228, 0x000 }, | ||
5032 | { 0x00000000, 0x14c00000, 0x0f8 }, | ||
5033 | { 0x00000400, 0x00292228, 0x000 }, | ||
5034 | { 0x00000014, 0x00203628, 0x000 }, | ||
5035 | { 0x0000001c, 0x00210e22, 0x000 }, | ||
5036 | { 0x00000000, 0x14c00000, 0x0fd }, | ||
5037 | { 0x0000a30c, 0x00204411, 0x000 }, | ||
5038 | { 0x00000000, 0x00204811, 0x000 }, | ||
5039 | { 0x0000001e, 0x00210e22, 0x000 }, | ||
5040 | { 0x00000000, 0x14c00000, 0x10b }, | ||
5041 | { 0x0000a30f, 0x00204411, 0x000 }, | ||
5042 | { 0x00000011, 0x00200e2d, 0x000 }, | ||
5043 | { 0x00000001, 0x002f0223, 0x000 }, | ||
5044 | { 0x00000000, 0x0cc00000, 0x104 }, | ||
5045 | { 0xffffffff, 0x00404811, 0x10b }, | ||
5046 | { 0x00000002, 0x002f0223, 0x000 }, | ||
5047 | { 0x00000000, 0x0cc00000, 0x107 }, | ||
5048 | { 0x0000ffff, 0x00404811, 0x10b }, | ||
5049 | { 0x00000004, 0x002f0223, 0x000 }, | ||
5050 | { 0x00000000, 0x0cc00000, 0x10a }, | ||
5051 | { 0x000000ff, 0x00404811, 0x10b }, | ||
5052 | { 0x00000001, 0x00204811, 0x000 }, | ||
5053 | { 0x0002c400, 0x00204411, 0x000 }, | ||
5054 | { 0x0000001f, 0x00210e22, 0x000 }, | ||
5055 | { 0x00000000, 0x14c00000, 0x112 }, | ||
5056 | { 0x00000010, 0x40210e20, 0x000 }, | ||
5057 | { 0x00000013, 0x00203623, 0x000 }, | ||
5058 | { 0x00000018, 0x40224a20, 0x000 }, | ||
5059 | { 0x00000010, 0xc0424a20, 0x114 }, | ||
5060 | { 0x00000000, 0x00200c11, 0x000 }, | ||
5061 | { 0x00000013, 0x00203623, 0x000 }, | ||
5062 | { 0x00000000, 0x00204811, 0x000 }, | ||
5063 | { 0x00000000, 0x00204811, 0x000 }, | ||
5064 | { 0x0000000a, 0x00201011, 0x000 }, | ||
5065 | { 0x00000000, 0x002f0224, 0x000 }, | ||
5066 | { 0x00000000, 0x0ce00000, 0x11b }, | ||
5067 | { 0x00000000, 0x00204811, 0x000 }, | ||
5068 | { 0x00000001, 0x00531224, 0x117 }, | ||
5069 | { 0xffbfffff, 0x00283a2e, 0x000 }, | ||
5070 | { 0x0000001b, 0x00210222, 0x000 }, | ||
5071 | { 0x00000000, 0x14c00000, 0x12e }, | ||
5072 | { 0x81000000, 0x00204411, 0x000 }, | ||
5073 | { 0x0000000d, 0x00204811, 0x000 }, | ||
5074 | { 0x00000018, 0x00220e30, 0x000 }, | ||
5075 | { 0xfc000000, 0x00280e23, 0x000 }, | ||
5076 | { 0x81000000, 0x00204411, 0x000 }, | ||
5077 | { 0x0000000e, 0x00204811, 0x000 }, | ||
5078 | { 0x00000000, 0x00201010, 0x000 }, | ||
5079 | { 0x0000e00e, 0x00204411, 0x000 }, | ||
5080 | { 0x07f8ff08, 0x00204811, 0x000 }, | ||
5081 | { 0x00000000, 0x00294a23, 0x000 }, | ||
5082 | { 0x0000001c, 0x00201e2d, 0x000 }, | ||
5083 | { 0x00000008, 0x00214a27, 0x000 }, | ||
5084 | { 0x00000000, 0x00204811, 0x000 }, | ||
5085 | { 0x060a0200, 0x00294a24, 0x000 }, | ||
5086 | { 0x00000000, 0x00204811, 0x000 }, | ||
5087 | { 0x00000000, 0x00204811, 0x000 }, | ||
5088 | { 0x00000000, 0x00800000, 0x000 }, | ||
5089 | { 0x81000000, 0x00204411, 0x000 }, | ||
5090 | { 0x00000001, 0x00204811, 0x000 }, | ||
5091 | { 0x0000217c, 0x00204411, 0x000 }, | ||
5092 | { 0x00800000, 0x00204811, 0x000 }, | ||
5093 | { 0x00000000, 0x00204806, 0x000 }, | ||
5094 | { 0x00000008, 0x00214a27, 0x000 }, | ||
5095 | { 0x00000000, 0x17000000, 0x000 }, | ||
5096 | { 0x0004217f, 0x00604411, 0x68d }, | ||
5097 | { 0x0000001f, 0x00210230, 0x000 }, | ||
5098 | { 0x00000000, 0x14c00000, 0x68c }, | ||
5099 | { 0x00000004, 0x00404c11, 0x135 }, | ||
5100 | { 0x81000000, 0x00204411, 0x000 }, | ||
5101 | { 0x00000001, 0x00204811, 0x000 }, | ||
5102 | { 0x000021f8, 0x00204411, 0x000 }, | ||
5103 | { 0x0000001c, 0x00204811, 0x000 }, | ||
5104 | { 0x000421f9, 0x00604411, 0x68d }, | ||
5105 | { 0x00000011, 0x00210230, 0x000 }, | ||
5106 | { 0x00000000, 0x14e00000, 0x13c }, | ||
5107 | { 0x00000000, 0x00800000, 0x000 }, | ||
5108 | { 0x00000000, 0x00600000, 0x00b }, | ||
5109 | { 0x00000000, 0x00600411, 0x315 }, | ||
5110 | { 0x00000000, 0x00200411, 0x000 }, | ||
5111 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
5112 | { 0x00000000, 0x00600000, 0x160 }, | ||
5113 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
5114 | { 0x00000010, 0xc0211220, 0x000 }, | ||
5115 | { 0x0000ffff, 0x40280620, 0x000 }, | ||
5116 | { 0x00000010, 0xc0210a20, 0x000 }, | ||
5117 | { 0x00000000, 0x00341461, 0x000 }, | ||
5118 | { 0x00000000, 0x00741882, 0x2bb }, | ||
5119 | { 0x0001a1fd, 0x00604411, 0x2e0 }, | ||
5120 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
5121 | { 0x00000000, 0x0cc00000, 0x147 }, | ||
5122 | { 0x00000000, 0xc0400400, 0x001 }, | ||
5123 | { 0x00000000, 0x00600000, 0x00b }, | ||
5124 | { 0x00000000, 0x00600411, 0x315 }, | ||
5125 | { 0x00000000, 0x00200411, 0x000 }, | ||
5126 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
5127 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
5128 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
5129 | { 0x00000000, 0x00600000, 0x160 }, | ||
5130 | { 0x00000010, 0x40210e20, 0x000 }, | ||
5131 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
5132 | { 0x00000010, 0x40211620, 0x000 }, | ||
5133 | { 0x0000ffff, 0xc0681a20, 0x2bb }, | ||
5134 | { 0x0001a1fd, 0x00604411, 0x2e0 }, | ||
5135 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
5136 | { 0x00000000, 0x0cc00000, 0x158 }, | ||
5137 | { 0x00000000, 0xc0400400, 0x001 }, | ||
5138 | { 0x0000225c, 0x00204411, 0x000 }, | ||
5139 | { 0x00000001, 0x00300a2f, 0x000 }, | ||
5140 | { 0x00000001, 0x00210a22, 0x000 }, | ||
5141 | { 0x00000003, 0x00384a22, 0x000 }, | ||
5142 | { 0x00002256, 0x00204411, 0x000 }, | ||
5143 | { 0x0000001a, 0x00204811, 0x000 }, | ||
5144 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
5145 | { 0x00000001, 0x00804811, 0x000 }, | ||
5146 | { 0x00000000, 0x00600000, 0x00b }, | ||
5147 | { 0x00000000, 0x00600000, 0x18f }, | ||
5148 | { 0x00000000, 0x00600000, 0x1a0 }, | ||
5149 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
5150 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
5151 | { 0x00000000, 0x00202c08, 0x000 }, | ||
5152 | { 0x00000000, 0x00202411, 0x000 }, | ||
5153 | { 0x00000000, 0x00202811, 0x000 }, | ||
5154 | { 0x00002256, 0x00204411, 0x000 }, | ||
5155 | { 0x00000016, 0x00204811, 0x000 }, | ||
5156 | { 0x0000225c, 0x00204411, 0x000 }, | ||
5157 | { 0x00000003, 0x00204811, 0x000 }, | ||
5158 | { 0x93800000, 0x00204411, 0x000 }, | ||
5159 | { 0x00000002, 0x00221e29, 0x000 }, | ||
5160 | { 0x00000000, 0x007048eb, 0x19c }, | ||
5161 | { 0x00000000, 0x00600000, 0x2bb }, | ||
5162 | { 0x00000001, 0x40330620, 0x000 }, | ||
5163 | { 0x00000000, 0xc0302409, 0x000 }, | ||
5164 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
5165 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
5166 | { 0x00000000, 0x00600000, 0x2a3 }, | ||
5167 | { 0x00000000, 0x002f0221, 0x000 }, | ||
5168 | { 0x00000000, 0x0ae00000, 0x181 }, | ||
5169 | { 0x00000000, 0x00600000, 0x13a }, | ||
5170 | { 0x00000000, 0x00400000, 0x186 }, | ||
5171 | { 0x95000000, 0x00204411, 0x000 }, | ||
5172 | { 0x00000000, 0x002f0221, 0x000 }, | ||
5173 | { 0x00000000, 0x0ce00000, 0x186 }, | ||
5174 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5175 | { 0x00000001, 0x00530621, 0x182 }, | ||
5176 | { 0x92000000, 0x00204411, 0x000 }, | ||
5177 | { 0x00000000, 0xc0604800, 0x197 }, | ||
5178 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
5179 | { 0x00000011, 0x0020062d, 0x000 }, | ||
5180 | { 0x00000000, 0x0078042a, 0x2fb }, | ||
5181 | { 0x00000000, 0x00202809, 0x000 }, | ||
5182 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
5183 | { 0x00000000, 0x0cc00000, 0x174 }, | ||
5184 | { 0x00000000, 0xc0400400, 0x001 }, | ||
5185 | { 0x00000210, 0x00600411, 0x315 }, | ||
5186 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
5187 | { 0x00000000, 0x0ce00000, 0x194 }, | ||
5188 | { 0x00000015, 0xc0203620, 0x000 }, | ||
5189 | { 0x00000016, 0xc0203620, 0x000 }, | ||
5190 | { 0x3f800000, 0x00200411, 0x000 }, | ||
5191 | { 0x46000000, 0x00600811, 0x1b2 }, | ||
5192 | { 0x00000000, 0x00800000, 0x000 }, | ||
5193 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
5194 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
5195 | { 0x00000000, 0x0cc00000, 0x19b }, | ||
5196 | { 0x00000001, 0x00804811, 0x000 }, | ||
5197 | { 0x00000021, 0x00804811, 0x000 }, | ||
5198 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
5199 | { 0x00000010, 0xc0211220, 0x000 }, | ||
5200 | { 0x0000ffff, 0x40281620, 0x000 }, | ||
5201 | { 0x00000010, 0xc0811a20, 0x000 }, | ||
5202 | { 0x81000000, 0x00204411, 0x000 }, | ||
5203 | { 0x00000006, 0x00204811, 0x000 }, | ||
5204 | { 0x00000008, 0x00221e30, 0x000 }, | ||
5205 | { 0x00000029, 0x00201a2d, 0x000 }, | ||
5206 | { 0x0000e000, 0x00204411, 0x000 }, | ||
5207 | { 0xfffbff09, 0x00204811, 0x000 }, | ||
5208 | { 0x0000000f, 0x0020222d, 0x000 }, | ||
5209 | { 0x00001fff, 0x00294a28, 0x000 }, | ||
5210 | { 0x00000006, 0x0020222d, 0x000 }, | ||
5211 | { 0x00000000, 0x002920e8, 0x000 }, | ||
5212 | { 0x00000000, 0x00204808, 0x000 }, | ||
5213 | { 0x00000000, 0x00204811, 0x000 }, | ||
5214 | { 0x060a0200, 0x00294a26, 0x000 }, | ||
5215 | { 0x00000000, 0x00204811, 0x000 }, | ||
5216 | { 0x00000000, 0x00204811, 0x000 }, | ||
5217 | { 0x00000100, 0x00201811, 0x000 }, | ||
5218 | { 0x00000008, 0x00621e28, 0x12f }, | ||
5219 | { 0x00000008, 0x00822228, 0x000 }, | ||
5220 | { 0x0002c000, 0x00204411, 0x000 }, | ||
5221 | { 0x00000015, 0x00600e2d, 0x1bd }, | ||
5222 | { 0x00000016, 0x00600e2d, 0x1bd }, | ||
5223 | { 0x0000c008, 0x00204411, 0x000 }, | ||
5224 | { 0x00000017, 0x00200e2d, 0x000 }, | ||
5225 | { 0x00000000, 0x14c00000, 0x1b9 }, | ||
5226 | { 0x00000000, 0x00200411, 0x000 }, | ||
5227 | { 0x00000000, 0x00204801, 0x000 }, | ||
5228 | { 0x39000000, 0x00204811, 0x000 }, | ||
5229 | { 0x00000000, 0x00204811, 0x000 }, | ||
5230 | { 0x00000000, 0x00804802, 0x000 }, | ||
5231 | { 0x00000018, 0x00202e2d, 0x000 }, | ||
5232 | { 0x00000000, 0x003b0d63, 0x000 }, | ||
5233 | { 0x00000008, 0x00224a23, 0x000 }, | ||
5234 | { 0x00000010, 0x00224a23, 0x000 }, | ||
5235 | { 0x00000018, 0x00224a23, 0x000 }, | ||
5236 | { 0x00000000, 0x00804803, 0x000 }, | ||
5237 | { 0x00000000, 0x00600000, 0x00b }, | ||
5238 | { 0x00001000, 0x00600411, 0x315 }, | ||
5239 | { 0x00000000, 0x00200411, 0x000 }, | ||
5240 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
5241 | { 0x00000007, 0x0021062f, 0x000 }, | ||
5242 | { 0x00000013, 0x00200a2d, 0x000 }, | ||
5243 | { 0x00000001, 0x00202c11, 0x000 }, | ||
5244 | { 0x0000ffff, 0x40282220, 0x000 }, | ||
5245 | { 0x0000000f, 0x00262228, 0x000 }, | ||
5246 | { 0x00000010, 0x40212620, 0x000 }, | ||
5247 | { 0x0000000f, 0x00262629, 0x000 }, | ||
5248 | { 0x00000000, 0x00202802, 0x000 }, | ||
5249 | { 0x00002256, 0x00204411, 0x000 }, | ||
5250 | { 0x0000001b, 0x00204811, 0x000 }, | ||
5251 | { 0x00000000, 0x002f0221, 0x000 }, | ||
5252 | { 0x00000000, 0x0ce00000, 0x1e0 }, | ||
5253 | { 0x0000225c, 0x00204411, 0x000 }, | ||
5254 | { 0x00000081, 0x00204811, 0x000 }, | ||
5255 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
5256 | { 0x00000001, 0x00204811, 0x000 }, | ||
5257 | { 0x00000080, 0x00201c11, 0x000 }, | ||
5258 | { 0x00000000, 0x002f0227, 0x000 }, | ||
5259 | { 0x00000000, 0x0ce00000, 0x1dc }, | ||
5260 | { 0x00000000, 0x00600000, 0x1e9 }, | ||
5261 | { 0x00000001, 0x00531e27, 0x1d8 }, | ||
5262 | { 0x00000001, 0x00202c11, 0x000 }, | ||
5263 | { 0x0000001f, 0x00280a22, 0x000 }, | ||
5264 | { 0x0000001f, 0x00282a2a, 0x000 }, | ||
5265 | { 0x00000001, 0x00530621, 0x1d1 }, | ||
5266 | { 0x0000225c, 0x00204411, 0x000 }, | ||
5267 | { 0x00000002, 0x00304a2f, 0x000 }, | ||
5268 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
5269 | { 0x00000001, 0x00204811, 0x000 }, | ||
5270 | { 0x00000001, 0x00301e2f, 0x000 }, | ||
5271 | { 0x00000000, 0x002f0227, 0x000 }, | ||
5272 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
5273 | { 0x00000000, 0x00600000, 0x1e9 }, | ||
5274 | { 0x00000001, 0x00531e27, 0x1e5 }, | ||
5275 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
5276 | { 0x0000000f, 0x00260e23, 0x000 }, | ||
5277 | { 0x00000010, 0xc0211220, 0x000 }, | ||
5278 | { 0x0000000f, 0x00261224, 0x000 }, | ||
5279 | { 0x00000000, 0x00201411, 0x000 }, | ||
5280 | { 0x00000000, 0x00601811, 0x2bb }, | ||
5281 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
5282 | { 0x00000000, 0x002f022b, 0x000 }, | ||
5283 | { 0x00000000, 0x0ce00000, 0x1f8 }, | ||
5284 | { 0x00000010, 0x00221628, 0x000 }, | ||
5285 | { 0xffff0000, 0x00281625, 0x000 }, | ||
5286 | { 0x0000ffff, 0x00281a29, 0x000 }, | ||
5287 | { 0x00000000, 0x002948c5, 0x000 }, | ||
5288 | { 0x00000000, 0x0020480a, 0x000 }, | ||
5289 | { 0x00000000, 0x00202c11, 0x000 }, | ||
5290 | { 0x00000010, 0x00221623, 0x000 }, | ||
5291 | { 0xffff0000, 0x00281625, 0x000 }, | ||
5292 | { 0x0000ffff, 0x00281a24, 0x000 }, | ||
5293 | { 0x00000000, 0x002948c5, 0x000 }, | ||
5294 | { 0x00000000, 0x00731503, 0x205 }, | ||
5295 | { 0x00000000, 0x00201805, 0x000 }, | ||
5296 | { 0x00000000, 0x00731524, 0x205 }, | ||
5297 | { 0x00000000, 0x002d14c5, 0x000 }, | ||
5298 | { 0x00000000, 0x003008a2, 0x000 }, | ||
5299 | { 0x00000000, 0x00204802, 0x000 }, | ||
5300 | { 0x00000000, 0x00202802, 0x000 }, | ||
5301 | { 0x00000000, 0x00202003, 0x000 }, | ||
5302 | { 0x00000000, 0x00802404, 0x000 }, | ||
5303 | { 0x0000000f, 0x00210225, 0x000 }, | ||
5304 | { 0x00000000, 0x14c00000, 0x68c }, | ||
5305 | { 0x00000000, 0x002b1405, 0x000 }, | ||
5306 | { 0x00000001, 0x00901625, 0x000 }, | ||
5307 | { 0x00000000, 0x00600000, 0x00b }, | ||
5308 | { 0x00000000, 0x00600411, 0x315 }, | ||
5309 | { 0x00000000, 0x00200411, 0x000 }, | ||
5310 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
5311 | { 0x00002256, 0x00204411, 0x000 }, | ||
5312 | { 0x0000001a, 0x00294a22, 0x000 }, | ||
5313 | { 0x00000000, 0xc0200000, 0x000 }, | ||
5314 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
5315 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
5316 | { 0x00000000, 0xc0200400, 0x000 }, | ||
5317 | { 0x0000225c, 0x00204411, 0x000 }, | ||
5318 | { 0x00000003, 0x00384a21, 0x000 }, | ||
5319 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
5320 | { 0x00000001, 0x00204811, 0x000 }, | ||
5321 | { 0x0000ffff, 0x40281220, 0x000 }, | ||
5322 | { 0x00000010, 0xc0211a20, 0x000 }, | ||
5323 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
5324 | { 0x00000010, 0xc0211620, 0x000 }, | ||
5325 | { 0x00000000, 0x00741465, 0x2bb }, | ||
5326 | { 0x0001a1fd, 0x00604411, 0x2e0 }, | ||
5327 | { 0x00000001, 0x00330621, 0x000 }, | ||
5328 | { 0x00000000, 0x002f0221, 0x000 }, | ||
5329 | { 0x00000000, 0x0cc00000, 0x219 }, | ||
5330 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
5331 | { 0x00000000, 0x0cc00000, 0x212 }, | ||
5332 | { 0x00000000, 0xc0400400, 0x001 }, | ||
5333 | { 0x00000000, 0x00600000, 0x645 }, | ||
5334 | { 0x00000000, 0x0040040f, 0x213 }, | ||
5335 | { 0x00000000, 0x00600000, 0x631 }, | ||
5336 | { 0x00000000, 0x00600000, 0x645 }, | ||
5337 | { 0x00000210, 0x00600411, 0x315 }, | ||
5338 | { 0x00000000, 0x00600000, 0x1a0 }, | ||
5339 | { 0x00000000, 0x00600000, 0x19c }, | ||
5340 | { 0x00000000, 0x00600000, 0x2bb }, | ||
5341 | { 0x00000000, 0x00600000, 0x2a3 }, | ||
5342 | { 0x93800000, 0x00204411, 0x000 }, | ||
5343 | { 0x00000000, 0x00204808, 0x000 }, | ||
5344 | { 0x00000000, 0x002f022f, 0x000 }, | ||
5345 | { 0x00000000, 0x0ae00000, 0x232 }, | ||
5346 | { 0x00000000, 0x00600000, 0x13a }, | ||
5347 | { 0x00000000, 0x00400000, 0x236 }, | ||
5348 | { 0x95000000, 0x00204411, 0x000 }, | ||
5349 | { 0x00000000, 0x002f022f, 0x000 }, | ||
5350 | { 0x00000000, 0x0ce00000, 0x236 }, | ||
5351 | { 0x00000000, 0xc0404800, 0x233 }, | ||
5352 | { 0x92000000, 0x00204411, 0x000 }, | ||
5353 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5354 | { 0x00002256, 0x00204411, 0x000 }, | ||
5355 | { 0x00000016, 0x00204811, 0x000 }, | ||
5356 | { 0x0000225c, 0x00204411, 0x000 }, | ||
5357 | { 0x00000003, 0x00204811, 0x000 }, | ||
5358 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
5359 | { 0x00000001, 0x00204811, 0x000 }, | ||
5360 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
5361 | { 0x00000000, 0x00600411, 0x2fb }, | ||
5362 | { 0x00000000, 0xc0400400, 0x001 }, | ||
5363 | { 0x00000000, 0x00600000, 0x631 }, | ||
5364 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
5365 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5366 | { 0x00000000, 0xc0404800, 0x000 }, | ||
5367 | { 0x00000000, 0x00600000, 0x00b }, | ||
5368 | { 0x00000018, 0x40210a20, 0x000 }, | ||
5369 | { 0x00000003, 0x002f0222, 0x000 }, | ||
5370 | { 0x00000000, 0x0ae00000, 0x24c }, | ||
5371 | { 0x00000014, 0x0020222d, 0x000 }, | ||
5372 | { 0x00080101, 0x00292228, 0x000 }, | ||
5373 | { 0x00000014, 0x00203628, 0x000 }, | ||
5374 | { 0x0000a30c, 0x00204411, 0x000 }, | ||
5375 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5376 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5377 | { 0x00000000, 0xc0404800, 0x251 }, | ||
5378 | { 0x00000000, 0x00600000, 0x00b }, | ||
5379 | { 0x00000010, 0x00600411, 0x315 }, | ||
5380 | { 0x3f800000, 0x00200411, 0x000 }, | ||
5381 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
5382 | { 0x0000225c, 0x00204411, 0x000 }, | ||
5383 | { 0x00000003, 0x00204811, 0x000 }, | ||
5384 | { 0x00000000, 0x00600000, 0x27c }, | ||
5385 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
5386 | { 0x00000001, 0x00211e27, 0x000 }, | ||
5387 | { 0x00000000, 0x14e00000, 0x26a }, | ||
5388 | { 0x00000012, 0x00201e2d, 0x000 }, | ||
5389 | { 0x0000ffff, 0x00281e27, 0x000 }, | ||
5390 | { 0x00000000, 0x00341c27, 0x000 }, | ||
5391 | { 0x00000000, 0x12c00000, 0x25f }, | ||
5392 | { 0x00000000, 0x00201c11, 0x000 }, | ||
5393 | { 0x00000000, 0x002f00e5, 0x000 }, | ||
5394 | { 0x00000000, 0x08c00000, 0x262 }, | ||
5395 | { 0x00000000, 0x00201407, 0x000 }, | ||
5396 | { 0x00000012, 0x00201e2d, 0x000 }, | ||
5397 | { 0x00000010, 0x00211e27, 0x000 }, | ||
5398 | { 0x00000000, 0x00341c47, 0x000 }, | ||
5399 | { 0x00000000, 0x12c00000, 0x267 }, | ||
5400 | { 0x00000000, 0x00201c11, 0x000 }, | ||
5401 | { 0x00000000, 0x002f00e6, 0x000 }, | ||
5402 | { 0x00000000, 0x08c00000, 0x26a }, | ||
5403 | { 0x00000000, 0x00201807, 0x000 }, | ||
5404 | { 0x00000000, 0x00600000, 0x2c1 }, | ||
5405 | { 0x00002256, 0x00204411, 0x000 }, | ||
5406 | { 0x00000000, 0x00342023, 0x000 }, | ||
5407 | { 0x00000000, 0x12c00000, 0x272 }, | ||
5408 | { 0x00000000, 0x00342044, 0x000 }, | ||
5409 | { 0x00000000, 0x12c00000, 0x271 }, | ||
5410 | { 0x00000016, 0x00404811, 0x276 }, | ||
5411 | { 0x00000018, 0x00404811, 0x276 }, | ||
5412 | { 0x00000000, 0x00342044, 0x000 }, | ||
5413 | { 0x00000000, 0x12c00000, 0x275 }, | ||
5414 | { 0x00000017, 0x00404811, 0x276 }, | ||
5415 | { 0x00000019, 0x00204811, 0x000 }, | ||
5416 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
5417 | { 0x00000001, 0x00204811, 0x000 }, | ||
5418 | { 0x0001a1fd, 0x00604411, 0x2e9 }, | ||
5419 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
5420 | { 0x00000000, 0x0cc00000, 0x256 }, | ||
5421 | { 0x00000000, 0xc0400400, 0x001 }, | ||
5422 | { 0x00000010, 0x40210620, 0x000 }, | ||
5423 | { 0x0000ffff, 0xc0280a20, 0x000 }, | ||
5424 | { 0x00000010, 0x40210e20, 0x000 }, | ||
5425 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
5426 | { 0x00000010, 0x40211620, 0x000 }, | ||
5427 | { 0x0000ffff, 0xc0881a20, 0x000 }, | ||
5428 | { 0x81000000, 0x00204411, 0x000 }, | ||
5429 | { 0x00000001, 0x00204811, 0x000 }, | ||
5430 | { 0x00042004, 0x00604411, 0x68d }, | ||
5431 | { 0x00000000, 0x00600000, 0x631 }, | ||
5432 | { 0x00000000, 0xc0600000, 0x2a3 }, | ||
5433 | { 0x00000005, 0x00200a2d, 0x000 }, | ||
5434 | { 0x00000008, 0x00220a22, 0x000 }, | ||
5435 | { 0x0000002b, 0x00201a2d, 0x000 }, | ||
5436 | { 0x0000001c, 0x00201e2d, 0x000 }, | ||
5437 | { 0x00007000, 0x00281e27, 0x000 }, | ||
5438 | { 0x00000000, 0x00311ce6, 0x000 }, | ||
5439 | { 0x0000002a, 0x00201a2d, 0x000 }, | ||
5440 | { 0x0000000c, 0x00221a26, 0x000 }, | ||
5441 | { 0x00000000, 0x002f00e6, 0x000 }, | ||
5442 | { 0x00000000, 0x06e00000, 0x292 }, | ||
5443 | { 0x00000000, 0x00201c11, 0x000 }, | ||
5444 | { 0x00000000, 0x00200c11, 0x000 }, | ||
5445 | { 0x0000002b, 0x00203623, 0x000 }, | ||
5446 | { 0x00000010, 0x00201811, 0x000 }, | ||
5447 | { 0x00000000, 0x00691ce2, 0x12f }, | ||
5448 | { 0x93800000, 0x00204411, 0x000 }, | ||
5449 | { 0x00000000, 0x00204807, 0x000 }, | ||
5450 | { 0x95000000, 0x00204411, 0x000 }, | ||
5451 | { 0x00000000, 0x002f022f, 0x000 }, | ||
5452 | { 0x00000000, 0x0ce00000, 0x29d }, | ||
5453 | { 0x00000001, 0x00333e2f, 0x000 }, | ||
5454 | { 0x00000000, 0xd9004800, 0x000 }, | ||
5455 | { 0x92000000, 0x00204411, 0x000 }, | ||
5456 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5457 | { 0x0000001c, 0x00403627, 0x000 }, | ||
5458 | { 0x0000000c, 0xc0220a20, 0x000 }, | ||
5459 | { 0x00000029, 0x00203622, 0x000 }, | ||
5460 | { 0x00000028, 0xc0403620, 0x000 }, | ||
5461 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
5462 | { 0x00000009, 0x00204811, 0x000 }, | ||
5463 | { 0xa1000000, 0x00204411, 0x000 }, | ||
5464 | { 0x00000001, 0x00804811, 0x000 }, | ||
5465 | { 0x00000021, 0x00201e2d, 0x000 }, | ||
5466 | { 0x00000000, 0x002c1ce3, 0x000 }, | ||
5467 | { 0x00000021, 0x00203627, 0x000 }, | ||
5468 | { 0x00000022, 0x00201e2d, 0x000 }, | ||
5469 | { 0x00000000, 0x002c1ce4, 0x000 }, | ||
5470 | { 0x00000022, 0x00203627, 0x000 }, | ||
5471 | { 0x00000023, 0x00201e2d, 0x000 }, | ||
5472 | { 0x00000000, 0x003120a3, 0x000 }, | ||
5473 | { 0x00000000, 0x002d1d07, 0x000 }, | ||
5474 | { 0x00000023, 0x00203627, 0x000 }, | ||
5475 | { 0x00000024, 0x00201e2d, 0x000 }, | ||
5476 | { 0x00000000, 0x003120c4, 0x000 }, | ||
5477 | { 0x00000000, 0x002d1d07, 0x000 }, | ||
5478 | { 0x00000024, 0x00803627, 0x000 }, | ||
5479 | { 0x00000021, 0x00203623, 0x000 }, | ||
5480 | { 0x00000022, 0x00203624, 0x000 }, | ||
5481 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
5482 | { 0x00000023, 0x00203627, 0x000 }, | ||
5483 | { 0x00000000, 0x00311cc4, 0x000 }, | ||
5484 | { 0x00000024, 0x00803627, 0x000 }, | ||
5485 | { 0x0000001a, 0x00203627, 0x000 }, | ||
5486 | { 0x0000001b, 0x00203628, 0x000 }, | ||
5487 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
5488 | { 0x00000002, 0x00210227, 0x000 }, | ||
5489 | { 0x00000000, 0x14c00000, 0x2dc }, | ||
5490 | { 0x00000000, 0x00400000, 0x2d9 }, | ||
5491 | { 0x0000001a, 0x00203627, 0x000 }, | ||
5492 | { 0x0000001b, 0x00203628, 0x000 }, | ||
5493 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
5494 | { 0x00000002, 0x00210227, 0x000 }, | ||
5495 | { 0x00000000, 0x14e00000, 0x2d9 }, | ||
5496 | { 0x00000003, 0x00210227, 0x000 }, | ||
5497 | { 0x00000000, 0x14e00000, 0x2dc }, | ||
5498 | { 0x00000023, 0x00201e2d, 0x000 }, | ||
5499 | { 0x00000000, 0x002e00e1, 0x000 }, | ||
5500 | { 0x00000000, 0x02c00000, 0x2dc }, | ||
5501 | { 0x00000021, 0x00201e2d, 0x000 }, | ||
5502 | { 0x00000000, 0x003120a1, 0x000 }, | ||
5503 | { 0x00000000, 0x002e00e8, 0x000 }, | ||
5504 | { 0x00000000, 0x06c00000, 0x2dc }, | ||
5505 | { 0x00000024, 0x00201e2d, 0x000 }, | ||
5506 | { 0x00000000, 0x002e00e2, 0x000 }, | ||
5507 | { 0x00000000, 0x02c00000, 0x2dc }, | ||
5508 | { 0x00000022, 0x00201e2d, 0x000 }, | ||
5509 | { 0x00000000, 0x003120c2, 0x000 }, | ||
5510 | { 0x00000000, 0x002e00e8, 0x000 }, | ||
5511 | { 0x00000000, 0x06c00000, 0x2dc }, | ||
5512 | { 0x00000000, 0x00600000, 0x668 }, | ||
5513 | { 0x00000000, 0x00600000, 0x2b5 }, | ||
5514 | { 0x00000000, 0x00400000, 0x2de }, | ||
5515 | { 0x00000000, 0x00600000, 0x2b5 }, | ||
5516 | { 0x00000000, 0x00600000, 0x65f }, | ||
5517 | { 0x00000000, 0x00400000, 0x2de }, | ||
5518 | { 0x00000000, 0x00600000, 0x2a7 }, | ||
5519 | { 0x00000000, 0x00400000, 0x2de }, | ||
5520 | { 0x0000001a, 0x00201e2d, 0x000 }, | ||
5521 | { 0x0000001b, 0x0080222d, 0x000 }, | ||
5522 | { 0x00000010, 0x00221e23, 0x000 }, | ||
5523 | { 0x00000000, 0x00294887, 0x000 }, | ||
5524 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
5525 | { 0x00000010, 0x00221e27, 0x000 }, | ||
5526 | { 0x00000000, 0x00294887, 0x000 }, | ||
5527 | { 0x00000010, 0x00221e23, 0x000 }, | ||
5528 | { 0x00000000, 0x003120c4, 0x000 }, | ||
5529 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
5530 | { 0x00000000, 0x00894907, 0x000 }, | ||
5531 | { 0x00000010, 0x00221e23, 0x000 }, | ||
5532 | { 0x00000000, 0x00294887, 0x000 }, | ||
5533 | { 0x00000010, 0x00221e21, 0x000 }, | ||
5534 | { 0x00000000, 0x00294847, 0x000 }, | ||
5535 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
5536 | { 0x00000010, 0x00221e27, 0x000 }, | ||
5537 | { 0x00000000, 0x00294887, 0x000 }, | ||
5538 | { 0x00000000, 0x00311ca1, 0x000 }, | ||
5539 | { 0x00000010, 0x00221e27, 0x000 }, | ||
5540 | { 0x00000000, 0x00294847, 0x000 }, | ||
5541 | { 0x00000010, 0x00221e23, 0x000 }, | ||
5542 | { 0x00000000, 0x003120c4, 0x000 }, | ||
5543 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
5544 | { 0x00000000, 0x00294907, 0x000 }, | ||
5545 | { 0x00000010, 0x00221e21, 0x000 }, | ||
5546 | { 0x00000000, 0x003120c2, 0x000 }, | ||
5547 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
5548 | { 0x00000000, 0x00894907, 0x000 }, | ||
5549 | { 0x00000010, 0x00221e23, 0x000 }, | ||
5550 | { 0x00000000, 0x00294887, 0x000 }, | ||
5551 | { 0x00000001, 0x00220a21, 0x000 }, | ||
5552 | { 0x00000000, 0x003308a2, 0x000 }, | ||
5553 | { 0x00000010, 0x00221e22, 0x000 }, | ||
5554 | { 0x00000010, 0x00212222, 0x000 }, | ||
5555 | { 0x00000000, 0x00294907, 0x000 }, | ||
5556 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
5557 | { 0x00000010, 0x00221e27, 0x000 }, | ||
5558 | { 0x00000000, 0x00294887, 0x000 }, | ||
5559 | { 0x00000001, 0x00220a21, 0x000 }, | ||
5560 | { 0x00000000, 0x003008a2, 0x000 }, | ||
5561 | { 0x00000010, 0x00221e22, 0x000 }, | ||
5562 | { 0x00000010, 0x00212222, 0x000 }, | ||
5563 | { 0x00000000, 0x00294907, 0x000 }, | ||
5564 | { 0x00000010, 0x00221e23, 0x000 }, | ||
5565 | { 0x00000000, 0x003120c4, 0x000 }, | ||
5566 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
5567 | { 0x00000000, 0x00294907, 0x000 }, | ||
5568 | { 0x00000000, 0x003808c5, 0x000 }, | ||
5569 | { 0x00000000, 0x00300841, 0x000 }, | ||
5570 | { 0x00000001, 0x00220a22, 0x000 }, | ||
5571 | { 0x00000000, 0x003308a2, 0x000 }, | ||
5572 | { 0x00000010, 0x00221e22, 0x000 }, | ||
5573 | { 0x00000010, 0x00212222, 0x000 }, | ||
5574 | { 0x00000000, 0x00894907, 0x000 }, | ||
5575 | { 0x00000017, 0x0020222d, 0x000 }, | ||
5576 | { 0x00000000, 0x14c00000, 0x318 }, | ||
5577 | { 0xffffffef, 0x00280621, 0x000 }, | ||
5578 | { 0x00000014, 0x0020222d, 0x000 }, | ||
5579 | { 0x0000f8e0, 0x00204411, 0x000 }, | ||
5580 | { 0x00000000, 0x00294901, 0x000 }, | ||
5581 | { 0x00000000, 0x00894901, 0x000 }, | ||
5582 | { 0x00000000, 0x00204811, 0x000 }, | ||
5583 | { 0x00000000, 0x00204811, 0x000 }, | ||
5584 | { 0x060a0200, 0x00804811, 0x000 }, | ||
5585 | { 0x00000000, 0xc0200000, 0x000 }, | ||
5586 | { 0x97000000, 0xc0204411, 0x000 }, | ||
5587 | { 0x00000000, 0xc0204811, 0x000 }, | ||
5588 | { 0x8a000000, 0x00204411, 0x000 }, | ||
5589 | { 0x00000000, 0x00204811, 0x000 }, | ||
5590 | { 0x0000225c, 0x00204411, 0x000 }, | ||
5591 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5592 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
5593 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5594 | { 0x00000000, 0xc0200400, 0x000 }, | ||
5595 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
5596 | { 0x97000000, 0x00204411, 0x000 }, | ||
5597 | { 0x00000000, 0x00204811, 0x000 }, | ||
5598 | { 0x8a000000, 0x00204411, 0x000 }, | ||
5599 | { 0x00000000, 0x00204811, 0x000 }, | ||
5600 | { 0x0000225c, 0x00204411, 0x000 }, | ||
5601 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5602 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
5603 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5604 | { 0x00000000, 0xc0200400, 0x000 }, | ||
5605 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
5606 | { 0x97000000, 0x00204411, 0x000 }, | ||
5607 | { 0x00000000, 0x00204811, 0x000 }, | ||
5608 | { 0x8a000000, 0x00204411, 0x000 }, | ||
5609 | { 0x00000000, 0x00204811, 0x000 }, | ||
5610 | { 0x0000225c, 0x00204411, 0x000 }, | ||
5611 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5612 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
5613 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5614 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
5615 | { 0x00000000, 0xd9004800, 0x000 }, | ||
5616 | { 0x00000000, 0xc0200400, 0x000 }, | ||
5617 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
5618 | { 0x00002257, 0x00204411, 0x000 }, | ||
5619 | { 0x00000003, 0xc0484a20, 0x000 }, | ||
5620 | { 0x0000225d, 0x00204411, 0x000 }, | ||
5621 | { 0x00000000, 0xc0404800, 0x000 }, | ||
5622 | { 0x00000000, 0x00600000, 0x645 }, | ||
5623 | { 0x00000000, 0xc0200800, 0x000 }, | ||
5624 | { 0x0000225c, 0x00204411, 0x000 }, | ||
5625 | { 0x00000003, 0x00384a22, 0x000 }, | ||
5626 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
5627 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5628 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
5629 | { 0x00000000, 0x002f0222, 0x000 }, | ||
5630 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
5631 | { 0x00000000, 0x40204800, 0x000 }, | ||
5632 | { 0x00000001, 0x40304a20, 0x000 }, | ||
5633 | { 0x00000002, 0xc0304a20, 0x000 }, | ||
5634 | { 0x00000001, 0x00530a22, 0x34b }, | ||
5635 | { 0x0000003f, 0xc0280a20, 0x000 }, | ||
5636 | { 0x81000000, 0x00204411, 0x000 }, | ||
5637 | { 0x00000001, 0x00204811, 0x000 }, | ||
5638 | { 0x000021f8, 0x00204411, 0x000 }, | ||
5639 | { 0x00000018, 0x00204811, 0x000 }, | ||
5640 | { 0x000421f9, 0x00604411, 0x68d }, | ||
5641 | { 0x00000011, 0x00210230, 0x000 }, | ||
5642 | { 0x00000000, 0x14e00000, 0x354 }, | ||
5643 | { 0x00000014, 0x002f0222, 0x000 }, | ||
5644 | { 0x00000000, 0x0cc00000, 0x364 }, | ||
5645 | { 0x00002010, 0x00204411, 0x000 }, | ||
5646 | { 0x00008000, 0x00204811, 0x000 }, | ||
5647 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
5648 | { 0x00000000, 0x00604802, 0x36e }, | ||
5649 | { 0x00002100, 0x00204411, 0x000 }, | ||
5650 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5651 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5652 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5653 | { 0x00000000, 0xc0404800, 0x000 }, | ||
5654 | { 0x00000004, 0x002f0222, 0x000 }, | ||
5655 | { 0x00000000, 0x0cc00000, 0x36a }, | ||
5656 | { 0x00002010, 0x00204411, 0x000 }, | ||
5657 | { 0x00008000, 0x00204811, 0x000 }, | ||
5658 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
5659 | { 0x00000000, 0x00404802, 0x35f }, | ||
5660 | { 0x00000028, 0x002f0222, 0x000 }, | ||
5661 | { 0x00000000, 0x0cc00000, 0x5c0 }, | ||
5662 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
5663 | { 0x00000000, 0x00404802, 0x35f }, | ||
5664 | { 0x0000002c, 0x00203626, 0x000 }, | ||
5665 | { 0x00000049, 0x00201811, 0x000 }, | ||
5666 | { 0x0000003f, 0x00204811, 0x000 }, | ||
5667 | { 0x00000001, 0x00331a26, 0x000 }, | ||
5668 | { 0x00000000, 0x002f0226, 0x000 }, | ||
5669 | { 0x00000000, 0x0cc00000, 0x370 }, | ||
5670 | { 0x0000002c, 0x00801a2d, 0x000 }, | ||
5671 | { 0x0000003f, 0xc0280a20, 0x000 }, | ||
5672 | { 0x00000015, 0x002f0222, 0x000 }, | ||
5673 | { 0x00000000, 0x0ce00000, 0x386 }, | ||
5674 | { 0x00000006, 0x002f0222, 0x000 }, | ||
5675 | { 0x00000000, 0x0ce00000, 0x3b1 }, | ||
5676 | { 0x00000016, 0x002f0222, 0x000 }, | ||
5677 | { 0x00000000, 0x0ce00000, 0x3b5 }, | ||
5678 | { 0x00000020, 0x002f0222, 0x000 }, | ||
5679 | { 0x00000000, 0x0ce00000, 0x39c }, | ||
5680 | { 0x0000000f, 0x002f0222, 0x000 }, | ||
5681 | { 0x00000000, 0x0ce00000, 0x3a8 }, | ||
5682 | { 0x00000010, 0x002f0222, 0x000 }, | ||
5683 | { 0x00000000, 0x0ce00000, 0x3a8 }, | ||
5684 | { 0x0000001e, 0x002f0222, 0x000 }, | ||
5685 | { 0x00000000, 0x0ce00000, 0x390 }, | ||
5686 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
5687 | { 0x00000000, 0x00404802, 0x000 }, | ||
5688 | { 0x08000000, 0x00290a22, 0x000 }, | ||
5689 | { 0x00000003, 0x40210e20, 0x000 }, | ||
5690 | { 0x0000000c, 0xc0211220, 0x000 }, | ||
5691 | { 0x00080000, 0x00281224, 0x000 }, | ||
5692 | { 0x00000014, 0xc0221620, 0x000 }, | ||
5693 | { 0x00000000, 0x002914a4, 0x000 }, | ||
5694 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
5695 | { 0x00000000, 0x002948a2, 0x000 }, | ||
5696 | { 0x0000a1fe, 0x00204411, 0x000 }, | ||
5697 | { 0x00000000, 0x00404803, 0x000 }, | ||
5698 | { 0x81000000, 0x00204411, 0x000 }, | ||
5699 | { 0x00000001, 0x00204811, 0x000 }, | ||
5700 | { 0x000021f8, 0x00204411, 0x000 }, | ||
5701 | { 0x00000016, 0x00204811, 0x000 }, | ||
5702 | { 0x000421f9, 0x00604411, 0x68d }, | ||
5703 | { 0x00000015, 0x00210230, 0x000 }, | ||
5704 | { 0x00000000, 0x14e00000, 0x392 }, | ||
5705 | { 0x0000210e, 0x00204411, 0x000 }, | ||
5706 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5707 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5708 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
5709 | { 0x00000000, 0x00404802, 0x000 }, | ||
5710 | { 0x81000000, 0x00204411, 0x000 }, | ||
5711 | { 0x00000001, 0x00204811, 0x000 }, | ||
5712 | { 0x000021f8, 0x00204411, 0x000 }, | ||
5713 | { 0x00000017, 0x00204811, 0x000 }, | ||
5714 | { 0x000421f9, 0x00604411, 0x68d }, | ||
5715 | { 0x00000003, 0x00210230, 0x000 }, | ||
5716 | { 0x00000000, 0x14e00000, 0x39e }, | ||
5717 | { 0x00002108, 0x00204411, 0x000 }, | ||
5718 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5719 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5720 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
5721 | { 0x00000000, 0x00404802, 0x000 }, | ||
5722 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
5723 | { 0x00000000, 0x00204802, 0x000 }, | ||
5724 | { 0x80000000, 0x00204411, 0x000 }, | ||
5725 | { 0x00000000, 0x00204811, 0x000 }, | ||
5726 | { 0x81000000, 0x00204411, 0x000 }, | ||
5727 | { 0x00000010, 0x00204811, 0x000 }, | ||
5728 | { 0x00000000, 0x00200010, 0x000 }, | ||
5729 | { 0x00000000, 0x14c00000, 0x3ae }, | ||
5730 | { 0x00000000, 0x00400000, 0x000 }, | ||
5731 | { 0x00002010, 0x00204411, 0x000 }, | ||
5732 | { 0x00008000, 0x00204811, 0x000 }, | ||
5733 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
5734 | { 0x00000006, 0x00404811, 0x000 }, | ||
5735 | { 0x00002010, 0x00204411, 0x000 }, | ||
5736 | { 0x00008000, 0x00204811, 0x000 }, | ||
5737 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
5738 | { 0x00000016, 0x00604811, 0x36e }, | ||
5739 | { 0x00000000, 0x00400000, 0x000 }, | ||
5740 | { 0x00000000, 0xc0200800, 0x000 }, | ||
5741 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
5742 | { 0x0000001d, 0x00210223, 0x000 }, | ||
5743 | { 0x00000000, 0x14e00000, 0x3ce }, | ||
5744 | { 0x81000000, 0x00204411, 0x000 }, | ||
5745 | { 0x00000001, 0x00204811, 0x000 }, | ||
5746 | { 0x000021f8, 0x00204411, 0x000 }, | ||
5747 | { 0x00000018, 0x00204811, 0x000 }, | ||
5748 | { 0x000421f9, 0x00604411, 0x68d }, | ||
5749 | { 0x00000011, 0x00210230, 0x000 }, | ||
5750 | { 0x00000000, 0x14e00000, 0x3c0 }, | ||
5751 | { 0x00002100, 0x00204411, 0x000 }, | ||
5752 | { 0x00000000, 0x00204802, 0x000 }, | ||
5753 | { 0x00000000, 0x00204803, 0x000 }, | ||
5754 | { 0xbabecafe, 0x00204811, 0x000 }, | ||
5755 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
5756 | { 0x00002010, 0x00204411, 0x000 }, | ||
5757 | { 0x00008000, 0x00204811, 0x000 }, | ||
5758 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
5759 | { 0x00000004, 0x00404811, 0x000 }, | ||
5760 | { 0x00002170, 0x00204411, 0x000 }, | ||
5761 | { 0x00000000, 0x00204802, 0x000 }, | ||
5762 | { 0x00000000, 0x00204803, 0x000 }, | ||
5763 | { 0x81000000, 0x00204411, 0x000 }, | ||
5764 | { 0x0000000a, 0x00204811, 0x000 }, | ||
5765 | { 0x00000000, 0x00200010, 0x000 }, | ||
5766 | { 0x00000000, 0x14c00000, 0x3d3 }, | ||
5767 | { 0x8c000000, 0x00204411, 0x000 }, | ||
5768 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
5769 | { 0x81000000, 0x00204411, 0x000 }, | ||
5770 | { 0x00000001, 0x00204811, 0x000 }, | ||
5771 | { 0x00003fff, 0x40280a20, 0x000 }, | ||
5772 | { 0x80000000, 0x40280e20, 0x000 }, | ||
5773 | { 0x40000000, 0xc0281220, 0x000 }, | ||
5774 | { 0x00040000, 0x00694622, 0x68d }, | ||
5775 | { 0x00000000, 0x00201410, 0x000 }, | ||
5776 | { 0x00000000, 0x002f0223, 0x000 }, | ||
5777 | { 0x00000000, 0x0cc00000, 0x3e1 }, | ||
5778 | { 0x00000000, 0xc0401800, 0x3e4 }, | ||
5779 | { 0x00003fff, 0xc0281a20, 0x000 }, | ||
5780 | { 0x00040000, 0x00694626, 0x68d }, | ||
5781 | { 0x00000000, 0x00201810, 0x000 }, | ||
5782 | { 0x00000000, 0x002f0224, 0x000 }, | ||
5783 | { 0x00000000, 0x0cc00000, 0x3e7 }, | ||
5784 | { 0x00000000, 0xc0401c00, 0x3ea }, | ||
5785 | { 0x00003fff, 0xc0281e20, 0x000 }, | ||
5786 | { 0x00040000, 0x00694627, 0x68d }, | ||
5787 | { 0x00000000, 0x00201c10, 0x000 }, | ||
5788 | { 0x00000000, 0x00204402, 0x000 }, | ||
5789 | { 0x00000000, 0x002820c5, 0x000 }, | ||
5790 | { 0x00000000, 0x004948e8, 0x000 }, | ||
5791 | { 0xa5800000, 0x00200811, 0x000 }, | ||
5792 | { 0x00002000, 0x00200c11, 0x000 }, | ||
5793 | { 0x83000000, 0x00604411, 0x412 }, | ||
5794 | { 0x00000000, 0x00204402, 0x000 }, | ||
5795 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5796 | { 0x00000000, 0x40204800, 0x000 }, | ||
5797 | { 0x0000001f, 0xc0210220, 0x000 }, | ||
5798 | { 0x00000000, 0x14c00000, 0x3f7 }, | ||
5799 | { 0x00002010, 0x00204411, 0x000 }, | ||
5800 | { 0x00008000, 0x00204811, 0x000 }, | ||
5801 | { 0x0000ffff, 0xc0481220, 0x3ff }, | ||
5802 | { 0xa7800000, 0x00200811, 0x000 }, | ||
5803 | { 0x0000a000, 0x00200c11, 0x000 }, | ||
5804 | { 0x83000000, 0x00604411, 0x412 }, | ||
5805 | { 0x00000000, 0x00204402, 0x000 }, | ||
5806 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5807 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5808 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
5809 | { 0x83000000, 0x00204411, 0x000 }, | ||
5810 | { 0x00000000, 0x00304883, 0x000 }, | ||
5811 | { 0x84000000, 0x00204411, 0x000 }, | ||
5812 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5813 | { 0x00000000, 0x1d000000, 0x000 }, | ||
5814 | { 0x83000000, 0x00604411, 0x412 }, | ||
5815 | { 0x00000000, 0xc0400400, 0x001 }, | ||
5816 | { 0xa9800000, 0x00200811, 0x000 }, | ||
5817 | { 0x0000c000, 0x00400c11, 0x3fa }, | ||
5818 | { 0xab800000, 0x00200811, 0x000 }, | ||
5819 | { 0x0000f8e0, 0x00400c11, 0x3fa }, | ||
5820 | { 0xad800000, 0x00200811, 0x000 }, | ||
5821 | { 0x0000f880, 0x00400c11, 0x3fa }, | ||
5822 | { 0xb3800000, 0x00200811, 0x000 }, | ||
5823 | { 0x0000f3fc, 0x00400c11, 0x3fa }, | ||
5824 | { 0xaf800000, 0x00200811, 0x000 }, | ||
5825 | { 0x0000e000, 0x00400c11, 0x3fa }, | ||
5826 | { 0xb1800000, 0x00200811, 0x000 }, | ||
5827 | { 0x0000f000, 0x00400c11, 0x3fa }, | ||
5828 | { 0x83000000, 0x00204411, 0x000 }, | ||
5829 | { 0x00002148, 0x00204811, 0x000 }, | ||
5830 | { 0x84000000, 0x00204411, 0x000 }, | ||
5831 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5832 | { 0x00000000, 0x1d000000, 0x000 }, | ||
5833 | { 0x00000000, 0x00800000, 0x000 }, | ||
5834 | { 0x01182000, 0xc0304620, 0x000 }, | ||
5835 | { 0x00000000, 0xd9004800, 0x000 }, | ||
5836 | { 0x00000000, 0xc0200400, 0x000 }, | ||
5837 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
5838 | { 0x0218a000, 0xc0304620, 0x000 }, | ||
5839 | { 0x00000000, 0xd9004800, 0x000 }, | ||
5840 | { 0x00000000, 0xc0200400, 0x000 }, | ||
5841 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
5842 | { 0x0318c000, 0xc0304620, 0x000 }, | ||
5843 | { 0x00000000, 0xd9004800, 0x000 }, | ||
5844 | { 0x00000000, 0xc0200400, 0x000 }, | ||
5845 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
5846 | { 0x0418f8e0, 0xc0304620, 0x000 }, | ||
5847 | { 0x00000000, 0xd9004800, 0x000 }, | ||
5848 | { 0x00000000, 0xc0200400, 0x000 }, | ||
5849 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
5850 | { 0x0518f880, 0xc0304620, 0x000 }, | ||
5851 | { 0x00000000, 0xd9004800, 0x000 }, | ||
5852 | { 0x00000000, 0xc0200400, 0x000 }, | ||
5853 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
5854 | { 0x0618e000, 0xc0304620, 0x000 }, | ||
5855 | { 0x00000000, 0xd9004800, 0x000 }, | ||
5856 | { 0x00000000, 0xc0200400, 0x000 }, | ||
5857 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
5858 | { 0x0718f000, 0xc0304620, 0x000 }, | ||
5859 | { 0x00000000, 0xd9004800, 0x000 }, | ||
5860 | { 0x00000000, 0xc0200400, 0x000 }, | ||
5861 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
5862 | { 0x0818f3fc, 0xc0304620, 0x000 }, | ||
5863 | { 0x00000000, 0xd9004800, 0x000 }, | ||
5864 | { 0x00000000, 0xc0200400, 0x000 }, | ||
5865 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
5866 | { 0x00000030, 0x00200a2d, 0x000 }, | ||
5867 | { 0x00000000, 0xc0290c40, 0x000 }, | ||
5868 | { 0x00000030, 0x00203623, 0x000 }, | ||
5869 | { 0x00000000, 0xc0200400, 0x000 }, | ||
5870 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
5871 | { 0x86000000, 0x00204411, 0x000 }, | ||
5872 | { 0x00000000, 0x00404801, 0x000 }, | ||
5873 | { 0x85000000, 0xc0204411, 0x000 }, | ||
5874 | { 0x00000000, 0x00404801, 0x000 }, | ||
5875 | { 0x0000217c, 0x00204411, 0x000 }, | ||
5876 | { 0x00000018, 0x40210220, 0x000 }, | ||
5877 | { 0x00000000, 0x14c00000, 0x445 }, | ||
5878 | { 0x00800000, 0xc0494a20, 0x446 }, | ||
5879 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5880 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5881 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5882 | { 0x81000000, 0x00204411, 0x000 }, | ||
5883 | { 0x00000001, 0x00204811, 0x000 }, | ||
5884 | { 0x00000000, 0xc0200800, 0x000 }, | ||
5885 | { 0x00000000, 0x17000000, 0x000 }, | ||
5886 | { 0x0004217f, 0x00604411, 0x68d }, | ||
5887 | { 0x0000001f, 0x00210230, 0x000 }, | ||
5888 | { 0x00000000, 0x14c00000, 0x000 }, | ||
5889 | { 0x00000000, 0x00404c02, 0x44b }, | ||
5890 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
5891 | { 0x00000000, 0xc0201000, 0x000 }, | ||
5892 | { 0x00000000, 0xc0201400, 0x000 }, | ||
5893 | { 0x00000000, 0xc0201800, 0x000 }, | ||
5894 | { 0x00000000, 0xc0201c00, 0x000 }, | ||
5895 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
5896 | { 0x00004500, 0x002f0222, 0x000 }, | ||
5897 | { 0x00000000, 0x0ce00000, 0x459 }, | ||
5898 | { 0x00000000, 0xc0202000, 0x000 }, | ||
5899 | { 0x00000000, 0x17000000, 0x000 }, | ||
5900 | { 0x00000010, 0x00280a23, 0x000 }, | ||
5901 | { 0x00000010, 0x002f0222, 0x000 }, | ||
5902 | { 0x00000000, 0x0ce00000, 0x461 }, | ||
5903 | { 0x81000000, 0x00204411, 0x000 }, | ||
5904 | { 0x00000001, 0x00204811, 0x000 }, | ||
5905 | { 0x00040000, 0x00694624, 0x68d }, | ||
5906 | { 0x00000000, 0x00400000, 0x466 }, | ||
5907 | { 0x81000000, 0x00204411, 0x000 }, | ||
5908 | { 0x00000000, 0x00204811, 0x000 }, | ||
5909 | { 0x0000216d, 0x00204411, 0x000 }, | ||
5910 | { 0x00000000, 0x00204804, 0x000 }, | ||
5911 | { 0x00000000, 0x00604805, 0x692 }, | ||
5912 | { 0x00000000, 0x002824f0, 0x000 }, | ||
5913 | { 0x00000007, 0x00280a23, 0x000 }, | ||
5914 | { 0x00000001, 0x002f0222, 0x000 }, | ||
5915 | { 0x00000000, 0x0ae00000, 0x46d }, | ||
5916 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
5917 | { 0x00000000, 0x04e00000, 0x486 }, | ||
5918 | { 0x00000000, 0x00400000, 0x493 }, | ||
5919 | { 0x00000002, 0x002f0222, 0x000 }, | ||
5920 | { 0x00000000, 0x0ae00000, 0x472 }, | ||
5921 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
5922 | { 0x00000000, 0x02e00000, 0x486 }, | ||
5923 | { 0x00000000, 0x00400000, 0x493 }, | ||
5924 | { 0x00000003, 0x002f0222, 0x000 }, | ||
5925 | { 0x00000000, 0x0ae00000, 0x477 }, | ||
5926 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
5927 | { 0x00000000, 0x0ce00000, 0x486 }, | ||
5928 | { 0x00000000, 0x00400000, 0x493 }, | ||
5929 | { 0x00000004, 0x002f0222, 0x000 }, | ||
5930 | { 0x00000000, 0x0ae00000, 0x47c }, | ||
5931 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
5932 | { 0x00000000, 0x0ae00000, 0x486 }, | ||
5933 | { 0x00000000, 0x00400000, 0x493 }, | ||
5934 | { 0x00000005, 0x002f0222, 0x000 }, | ||
5935 | { 0x00000000, 0x0ae00000, 0x481 }, | ||
5936 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
5937 | { 0x00000000, 0x06e00000, 0x486 }, | ||
5938 | { 0x00000000, 0x00400000, 0x493 }, | ||
5939 | { 0x00000006, 0x002f0222, 0x000 }, | ||
5940 | { 0x00000000, 0x0ae00000, 0x486 }, | ||
5941 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
5942 | { 0x00000000, 0x08e00000, 0x486 }, | ||
5943 | { 0x00000000, 0x00400000, 0x493 }, | ||
5944 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
5945 | { 0x00004500, 0x002f0222, 0x000 }, | ||
5946 | { 0x00000000, 0x0ae00000, 0x000 }, | ||
5947 | { 0x00000008, 0x00210a23, 0x000 }, | ||
5948 | { 0x00000000, 0x14c00000, 0x490 }, | ||
5949 | { 0x00002169, 0x00204411, 0x000 }, | ||
5950 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5951 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5952 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5953 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
5954 | { 0x00000000, 0xc0204400, 0x000 }, | ||
5955 | { 0x00000000, 0xc0200000, 0x000 }, | ||
5956 | { 0x00000000, 0xc0404800, 0x000 }, | ||
5957 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
5958 | { 0x00004500, 0x002f0222, 0x000 }, | ||
5959 | { 0x00000000, 0x0ae00000, 0x499 }, | ||
5960 | { 0x00000000, 0xc0200000, 0x000 }, | ||
5961 | { 0x00000000, 0xc0200000, 0x000 }, | ||
5962 | { 0x00000000, 0xc0400000, 0x000 }, | ||
5963 | { 0x00000000, 0x00404c08, 0x459 }, | ||
5964 | { 0x00000000, 0xc0200800, 0x000 }, | ||
5965 | { 0x00000010, 0x40210e20, 0x000 }, | ||
5966 | { 0x00000011, 0x40211220, 0x000 }, | ||
5967 | { 0x00000012, 0x40211620, 0x000 }, | ||
5968 | { 0x00002169, 0x00204411, 0x000 }, | ||
5969 | { 0x00000000, 0x00204802, 0x000 }, | ||
5970 | { 0x00000000, 0x00210225, 0x000 }, | ||
5971 | { 0x00000000, 0x14e00000, 0x4a3 }, | ||
5972 | { 0x00040000, 0xc0494a20, 0x4a4 }, | ||
5973 | { 0xfffbffff, 0xc0284a20, 0x000 }, | ||
5974 | { 0x00000000, 0x00210223, 0x000 }, | ||
5975 | { 0x00000000, 0x14e00000, 0x4b0 }, | ||
5976 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5977 | { 0x00000000, 0xc0204800, 0x000 }, | ||
5978 | { 0x00000000, 0x00210224, 0x000 }, | ||
5979 | { 0x00000000, 0x14c00000, 0x000 }, | ||
5980 | { 0x81000000, 0x00204411, 0x000 }, | ||
5981 | { 0x0000000c, 0x00204811, 0x000 }, | ||
5982 | { 0x00000000, 0x00200010, 0x000 }, | ||
5983 | { 0x00000000, 0x14c00000, 0x4ac }, | ||
5984 | { 0xa0000000, 0x00204411, 0x000 }, | ||
5985 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
5986 | { 0x81000000, 0x00204411, 0x000 }, | ||
5987 | { 0x00000004, 0x00204811, 0x000 }, | ||
5988 | { 0x0000216b, 0x00204411, 0x000 }, | ||
5989 | { 0x00000000, 0xc0204810, 0x000 }, | ||
5990 | { 0x81000000, 0x00204411, 0x000 }, | ||
5991 | { 0x00000005, 0x00204811, 0x000 }, | ||
5992 | { 0x0000216c, 0x00204411, 0x000 }, | ||
5993 | { 0x00000000, 0xc0204810, 0x000 }, | ||
5994 | { 0x00000000, 0x002f0224, 0x000 }, | ||
5995 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
5996 | { 0x00000000, 0x00400000, 0x4aa }, | ||
5997 | { 0x00000000, 0xc0210a20, 0x000 }, | ||
5998 | { 0x00000000, 0x14c00000, 0x4c3 }, | ||
5999 | { 0x81000000, 0x00204411, 0x000 }, | ||
6000 | { 0x00000000, 0x00204811, 0x000 }, | ||
6001 | { 0x0000216d, 0x00204411, 0x000 }, | ||
6002 | { 0x00000000, 0xc0204800, 0x000 }, | ||
6003 | { 0x00000000, 0xc0604800, 0x692 }, | ||
6004 | { 0x00000000, 0x00400000, 0x4c7 }, | ||
6005 | { 0x81000000, 0x00204411, 0x000 }, | ||
6006 | { 0x00000001, 0x00204811, 0x000 }, | ||
6007 | { 0x00040000, 0xc0294620, 0x000 }, | ||
6008 | { 0x00000000, 0xc0600000, 0x68d }, | ||
6009 | { 0x00000001, 0x00210222, 0x000 }, | ||
6010 | { 0x00000000, 0x14c00000, 0x4ce }, | ||
6011 | { 0x00002169, 0x00204411, 0x000 }, | ||
6012 | { 0x00000000, 0xc0204800, 0x000 }, | ||
6013 | { 0x00000000, 0xc0204800, 0x000 }, | ||
6014 | { 0x00000000, 0x00204810, 0x000 }, | ||
6015 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
6016 | { 0x00000000, 0xc0204400, 0x000 }, | ||
6017 | { 0x00000000, 0xc0404810, 0x000 }, | ||
6018 | { 0x81000000, 0x00204411, 0x000 }, | ||
6019 | { 0x00000001, 0x00204811, 0x000 }, | ||
6020 | { 0x000021f8, 0x00204411, 0x000 }, | ||
6021 | { 0x0000000e, 0x00204811, 0x000 }, | ||
6022 | { 0x000421f9, 0x00604411, 0x68d }, | ||
6023 | { 0x00000000, 0x00210230, 0x000 }, | ||
6024 | { 0x00000000, 0x14c00000, 0x4d0 }, | ||
6025 | { 0x00002180, 0x00204411, 0x000 }, | ||
6026 | { 0x00000000, 0xc0204800, 0x000 }, | ||
6027 | { 0x00000000, 0xc0200000, 0x000 }, | ||
6028 | { 0x00000000, 0xc0204800, 0x000 }, | ||
6029 | { 0x00000000, 0xc0200000, 0x000 }, | ||
6030 | { 0x00000000, 0xc0404800, 0x000 }, | ||
6031 | { 0x00000003, 0x00333e2f, 0x000 }, | ||
6032 | { 0x00000001, 0x00210221, 0x000 }, | ||
6033 | { 0x00000000, 0x14e00000, 0x500 }, | ||
6034 | { 0x0000002c, 0x00200a2d, 0x000 }, | ||
6035 | { 0x00040000, 0x18e00c11, 0x4ef }, | ||
6036 | { 0x00000001, 0x00333e2f, 0x000 }, | ||
6037 | { 0x00002169, 0x00204411, 0x000 }, | ||
6038 | { 0x00000000, 0x00204802, 0x000 }, | ||
6039 | { 0x00000000, 0x00204803, 0x000 }, | ||
6040 | { 0x00000008, 0x00300a22, 0x000 }, | ||
6041 | { 0x00000000, 0xc0204800, 0x000 }, | ||
6042 | { 0x00000000, 0xc0204800, 0x000 }, | ||
6043 | { 0x00002169, 0x00204411, 0x000 }, | ||
6044 | { 0x00000000, 0x00204802, 0x000 }, | ||
6045 | { 0x00000000, 0x00204803, 0x000 }, | ||
6046 | { 0x00000008, 0x00300a22, 0x000 }, | ||
6047 | { 0x00000000, 0xc0204800, 0x000 }, | ||
6048 | { 0x00000000, 0xd8c04800, 0x4e3 }, | ||
6049 | { 0x00002169, 0x00204411, 0x000 }, | ||
6050 | { 0x00000000, 0x00204802, 0x000 }, | ||
6051 | { 0x00000000, 0x00204803, 0x000 }, | ||
6052 | { 0x00000008, 0x00300a22, 0x000 }, | ||
6053 | { 0x00000000, 0xc0204800, 0x000 }, | ||
6054 | { 0x00000000, 0xc0204800, 0x000 }, | ||
6055 | { 0x0000002d, 0x0020122d, 0x000 }, | ||
6056 | { 0x00000000, 0x00290c83, 0x000 }, | ||
6057 | { 0x00002169, 0x00204411, 0x000 }, | ||
6058 | { 0x00000000, 0x00204802, 0x000 }, | ||
6059 | { 0x00000000, 0x00204803, 0x000 }, | ||
6060 | { 0x00000008, 0x00300a22, 0x000 }, | ||
6061 | { 0x00000000, 0xc0204800, 0x000 }, | ||
6062 | { 0x00000000, 0xc0204800, 0x000 }, | ||
6063 | { 0x00000011, 0x00210224, 0x000 }, | ||
6064 | { 0x00000000, 0x14c00000, 0x000 }, | ||
6065 | { 0x00000000, 0x00400000, 0x4aa }, | ||
6066 | { 0x0000002c, 0xc0203620, 0x000 }, | ||
6067 | { 0x0000002d, 0xc0403620, 0x000 }, | ||
6068 | { 0x0000000f, 0x00210221, 0x000 }, | ||
6069 | { 0x00000000, 0x14c00000, 0x505 }, | ||
6070 | { 0x00000000, 0x00600000, 0x00b }, | ||
6071 | { 0x00000000, 0xd9000000, 0x000 }, | ||
6072 | { 0x00000000, 0xc0400400, 0x001 }, | ||
6073 | { 0xb5000000, 0x00204411, 0x000 }, | ||
6074 | { 0x00002000, 0x00204811, 0x000 }, | ||
6075 | { 0xb6000000, 0x00204411, 0x000 }, | ||
6076 | { 0x0000a000, 0x00204811, 0x000 }, | ||
6077 | { 0xb7000000, 0x00204411, 0x000 }, | ||
6078 | { 0x0000c000, 0x00204811, 0x000 }, | ||
6079 | { 0xb8000000, 0x00204411, 0x000 }, | ||
6080 | { 0x0000f8e0, 0x00204811, 0x000 }, | ||
6081 | { 0xb9000000, 0x00204411, 0x000 }, | ||
6082 | { 0x0000f880, 0x00204811, 0x000 }, | ||
6083 | { 0xba000000, 0x00204411, 0x000 }, | ||
6084 | { 0x0000e000, 0x00204811, 0x000 }, | ||
6085 | { 0xbb000000, 0x00204411, 0x000 }, | ||
6086 | { 0x0000f000, 0x00204811, 0x000 }, | ||
6087 | { 0xbc000000, 0x00204411, 0x000 }, | ||
6088 | { 0x0000f3fc, 0x00204811, 0x000 }, | ||
6089 | { 0x81000000, 0x00204411, 0x000 }, | ||
6090 | { 0x00000002, 0x00204811, 0x000 }, | ||
6091 | { 0x000000ff, 0x00280e30, 0x000 }, | ||
6092 | { 0x00000000, 0x002f0223, 0x000 }, | ||
6093 | { 0x00000000, 0x0cc00000, 0x519 }, | ||
6094 | { 0x00000000, 0xc0200800, 0x000 }, | ||
6095 | { 0x00000000, 0x14c00000, 0x52e }, | ||
6096 | { 0x00000000, 0x00200c11, 0x000 }, | ||
6097 | { 0x0000001c, 0x00203623, 0x000 }, | ||
6098 | { 0x0000002b, 0x00203623, 0x000 }, | ||
6099 | { 0x00000029, 0x00203623, 0x000 }, | ||
6100 | { 0x00000028, 0x00203623, 0x000 }, | ||
6101 | { 0x00000017, 0x00203623, 0x000 }, | ||
6102 | { 0x00000025, 0x00203623, 0x000 }, | ||
6103 | { 0x00000026, 0x00203623, 0x000 }, | ||
6104 | { 0x00000015, 0x00203623, 0x000 }, | ||
6105 | { 0x00000016, 0x00203623, 0x000 }, | ||
6106 | { 0xffffe000, 0x00200c11, 0x000 }, | ||
6107 | { 0x00000021, 0x00203623, 0x000 }, | ||
6108 | { 0x00000022, 0x00203623, 0x000 }, | ||
6109 | { 0x00001fff, 0x00200c11, 0x000 }, | ||
6110 | { 0x00000023, 0x00203623, 0x000 }, | ||
6111 | { 0x00000024, 0x00203623, 0x000 }, | ||
6112 | { 0xf1ffffff, 0x00283a2e, 0x000 }, | ||
6113 | { 0x0000001a, 0xc0220e20, 0x000 }, | ||
6114 | { 0x00000000, 0x0029386e, 0x000 }, | ||
6115 | { 0x81000000, 0x00204411, 0x000 }, | ||
6116 | { 0x00000006, 0x00204811, 0x000 }, | ||
6117 | { 0x0000002a, 0x40203620, 0x000 }, | ||
6118 | { 0x87000000, 0x00204411, 0x000 }, | ||
6119 | { 0x00000000, 0xc0204800, 0x000 }, | ||
6120 | { 0x0000a1f4, 0x00204411, 0x000 }, | ||
6121 | { 0x00000000, 0x00204810, 0x000 }, | ||
6122 | { 0x00000000, 0x00200c11, 0x000 }, | ||
6123 | { 0x00000030, 0x00203623, 0x000 }, | ||
6124 | { 0x9d000000, 0x00204411, 0x000 }, | ||
6125 | { 0x0000001f, 0x40214a20, 0x000 }, | ||
6126 | { 0x96000000, 0x00204411, 0x000 }, | ||
6127 | { 0x00000000, 0xc0204800, 0x000 }, | ||
6128 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
6129 | { 0x00000000, 0xc0201000, 0x000 }, | ||
6130 | { 0x0000001f, 0x00211624, 0x000 }, | ||
6131 | { 0x00000000, 0x14c00000, 0x000 }, | ||
6132 | { 0x0000001d, 0x00203623, 0x000 }, | ||
6133 | { 0x00000003, 0x00281e23, 0x000 }, | ||
6134 | { 0x00000008, 0x00222223, 0x000 }, | ||
6135 | { 0xfffff000, 0x00282228, 0x000 }, | ||
6136 | { 0x00000000, 0x002920e8, 0x000 }, | ||
6137 | { 0x0000001f, 0x00203628, 0x000 }, | ||
6138 | { 0x00000018, 0x00211e23, 0x000 }, | ||
6139 | { 0x00000020, 0x00203627, 0x000 }, | ||
6140 | { 0x00000002, 0x00221624, 0x000 }, | ||
6141 | { 0x00000000, 0x003014a8, 0x000 }, | ||
6142 | { 0x0000001e, 0x00203625, 0x000 }, | ||
6143 | { 0x00000003, 0x00211a24, 0x000 }, | ||
6144 | { 0x10000000, 0x00281a26, 0x000 }, | ||
6145 | { 0xefffffff, 0x00283a2e, 0x000 }, | ||
6146 | { 0x00000000, 0x004938ce, 0x67b }, | ||
6147 | { 0x00000001, 0x40280a20, 0x000 }, | ||
6148 | { 0x00000006, 0x40280e20, 0x000 }, | ||
6149 | { 0x00000300, 0xc0281220, 0x000 }, | ||
6150 | { 0x00000008, 0x00211224, 0x000 }, | ||
6151 | { 0x00000000, 0xc0201620, 0x000 }, | ||
6152 | { 0x00000000, 0xc0201a20, 0x000 }, | ||
6153 | { 0x00000000, 0x00210222, 0x000 }, | ||
6154 | { 0x00000000, 0x14c00000, 0x566 }, | ||
6155 | { 0x81000000, 0x00204411, 0x000 }, | ||
6156 | { 0x00000001, 0x00204811, 0x000 }, | ||
6157 | { 0x00002258, 0x00300a24, 0x000 }, | ||
6158 | { 0x00040000, 0x00694622, 0x68d }, | ||
6159 | { 0x00002169, 0x00204411, 0x000 }, | ||
6160 | { 0x00000000, 0x00204805, 0x000 }, | ||
6161 | { 0x00020000, 0x00294a26, 0x000 }, | ||
6162 | { 0x00000000, 0x00204810, 0x000 }, | ||
6163 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
6164 | { 0x00000002, 0x002f0223, 0x000 }, | ||
6165 | { 0x00000000, 0x0cc00000, 0x56e }, | ||
6166 | { 0x00000000, 0xc0201c10, 0x000 }, | ||
6167 | { 0x00000000, 0xc0400000, 0x57c }, | ||
6168 | { 0x00000002, 0x002f0223, 0x000 }, | ||
6169 | { 0x00000000, 0x0cc00000, 0x56e }, | ||
6170 | { 0x81000000, 0x00204411, 0x000 }, | ||
6171 | { 0x00000001, 0x00204811, 0x000 }, | ||
6172 | { 0x00002258, 0x00300a24, 0x000 }, | ||
6173 | { 0x00040000, 0x00694622, 0x68d }, | ||
6174 | { 0x00000000, 0xc0201c10, 0x000 }, | ||
6175 | { 0x00000000, 0xc0400000, 0x57c }, | ||
6176 | { 0x00000000, 0x002f0223, 0x000 }, | ||
6177 | { 0x00000000, 0x0cc00000, 0x572 }, | ||
6178 | { 0x00000000, 0xc0201c00, 0x000 }, | ||
6179 | { 0x00000000, 0xc0400000, 0x57c }, | ||
6180 | { 0x00000004, 0x002f0223, 0x000 }, | ||
6181 | { 0x00000000, 0x0cc00000, 0x57a }, | ||
6182 | { 0x81000000, 0x00204411, 0x000 }, | ||
6183 | { 0x00000000, 0x00204811, 0x000 }, | ||
6184 | { 0x0000216d, 0x00204411, 0x000 }, | ||
6185 | { 0x00000000, 0xc0204800, 0x000 }, | ||
6186 | { 0x00000000, 0xc0604800, 0x692 }, | ||
6187 | { 0x00000000, 0x00401c10, 0x57c }, | ||
6188 | { 0x00000000, 0xc0200000, 0x000 }, | ||
6189 | { 0x00000000, 0xc0400000, 0x000 }, | ||
6190 | { 0x00000000, 0x0ee00000, 0x57e }, | ||
6191 | { 0x00000000, 0x00600000, 0x5c9 }, | ||
6192 | { 0x00000000, 0x002f0224, 0x000 }, | ||
6193 | { 0x00000000, 0x0cc00000, 0x58f }, | ||
6194 | { 0x0000a2b7, 0x00204411, 0x000 }, | ||
6195 | { 0x00000000, 0x00204807, 0x000 }, | ||
6196 | { 0x81000000, 0x00204411, 0x000 }, | ||
6197 | { 0x00000001, 0x00204811, 0x000 }, | ||
6198 | { 0x0004a2b6, 0x00604411, 0x68d }, | ||
6199 | { 0x0000001a, 0x00212230, 0x000 }, | ||
6200 | { 0x00000006, 0x00222630, 0x000 }, | ||
6201 | { 0x00042004, 0x00604411, 0x68d }, | ||
6202 | { 0x0000a2c4, 0x00204411, 0x000 }, | ||
6203 | { 0x00000000, 0x003048e9, 0x000 }, | ||
6204 | { 0x00000000, 0x00e00000, 0x58d }, | ||
6205 | { 0x0000a2d1, 0x00204411, 0x000 }, | ||
6206 | { 0x00000000, 0x00404808, 0x000 }, | ||
6207 | { 0x0000a2d1, 0x00204411, 0x000 }, | ||
6208 | { 0x00000001, 0x00504a28, 0x000 }, | ||
6209 | { 0x00000001, 0x002f0224, 0x000 }, | ||
6210 | { 0x00000000, 0x0cc00000, 0x5a0 }, | ||
6211 | { 0x0000a2bb, 0x00204411, 0x000 }, | ||
6212 | { 0x00000000, 0x00204807, 0x000 }, | ||
6213 | { 0x81000000, 0x00204411, 0x000 }, | ||
6214 | { 0x00000001, 0x00204811, 0x000 }, | ||
6215 | { 0x0004a2ba, 0x00604411, 0x68d }, | ||
6216 | { 0x0000001a, 0x00212230, 0x000 }, | ||
6217 | { 0x00000006, 0x00222630, 0x000 }, | ||
6218 | { 0x00042004, 0x00604411, 0x68d }, | ||
6219 | { 0x0000a2c5, 0x00204411, 0x000 }, | ||
6220 | { 0x00000000, 0x003048e9, 0x000 }, | ||
6221 | { 0x00000000, 0x00e00000, 0x59e }, | ||
6222 | { 0x0000a2d2, 0x00204411, 0x000 }, | ||
6223 | { 0x00000000, 0x00404808, 0x000 }, | ||
6224 | { 0x0000a2d2, 0x00204411, 0x000 }, | ||
6225 | { 0x00000001, 0x00504a28, 0x000 }, | ||
6226 | { 0x00000002, 0x002f0224, 0x000 }, | ||
6227 | { 0x00000000, 0x0cc00000, 0x5b1 }, | ||
6228 | { 0x0000a2bf, 0x00204411, 0x000 }, | ||
6229 | { 0x00000000, 0x00204807, 0x000 }, | ||
6230 | { 0x81000000, 0x00204411, 0x000 }, | ||
6231 | { 0x00000001, 0x00204811, 0x000 }, | ||
6232 | { 0x0004a2be, 0x00604411, 0x68d }, | ||
6233 | { 0x0000001a, 0x00212230, 0x000 }, | ||
6234 | { 0x00000006, 0x00222630, 0x000 }, | ||
6235 | { 0x00042004, 0x00604411, 0x68d }, | ||
6236 | { 0x0000a2c6, 0x00204411, 0x000 }, | ||
6237 | { 0x00000000, 0x003048e9, 0x000 }, | ||
6238 | { 0x00000000, 0x00e00000, 0x5af }, | ||
6239 | { 0x0000a2d3, 0x00204411, 0x000 }, | ||
6240 | { 0x00000000, 0x00404808, 0x000 }, | ||
6241 | { 0x0000a2d3, 0x00204411, 0x000 }, | ||
6242 | { 0x00000001, 0x00504a28, 0x000 }, | ||
6243 | { 0x0000a2c3, 0x00204411, 0x000 }, | ||
6244 | { 0x00000000, 0x00204807, 0x000 }, | ||
6245 | { 0x81000000, 0x00204411, 0x000 }, | ||
6246 | { 0x00000001, 0x00204811, 0x000 }, | ||
6247 | { 0x0004a2c2, 0x00604411, 0x68d }, | ||
6248 | { 0x0000001a, 0x00212230, 0x000 }, | ||
6249 | { 0x00000006, 0x00222630, 0x000 }, | ||
6250 | { 0x00042004, 0x00604411, 0x68d }, | ||
6251 | { 0x0000a2c7, 0x00204411, 0x000 }, | ||
6252 | { 0x00000000, 0x003048e9, 0x000 }, | ||
6253 | { 0x00000000, 0x00e00000, 0x5be }, | ||
6254 | { 0x0000a2d4, 0x00204411, 0x000 }, | ||
6255 | { 0x00000000, 0x00404808, 0x000 }, | ||
6256 | { 0x0000a2d4, 0x00204411, 0x000 }, | ||
6257 | { 0x00000001, 0x00504a28, 0x000 }, | ||
6258 | { 0x85000000, 0x00204411, 0x000 }, | ||
6259 | { 0x00000000, 0x00204801, 0x000 }, | ||
6260 | { 0x0000304a, 0x00204411, 0x000 }, | ||
6261 | { 0x01000000, 0x00204811, 0x000 }, | ||
6262 | { 0x00000000, 0x00400000, 0x5c4 }, | ||
6263 | { 0xa4000000, 0xc0204411, 0x000 }, | ||
6264 | { 0x00000000, 0xc0404800, 0x000 }, | ||
6265 | { 0x00000000, 0xc0600000, 0x5c9 }, | ||
6266 | { 0x00000000, 0xc0400400, 0x001 }, | ||
6267 | { 0x0000002c, 0x00203621, 0x000 }, | ||
6268 | { 0x81000000, 0x00204411, 0x000 }, | ||
6269 | { 0x00000006, 0x00204811, 0x000 }, | ||
6270 | { 0x00000000, 0x002f0230, 0x000 }, | ||
6271 | { 0x00000000, 0x0cc00000, 0x5d0 }, | ||
6272 | { 0x00000000, 0x00200411, 0x000 }, | ||
6273 | { 0x00000030, 0x00403621, 0x5e3 }, | ||
6274 | { 0x00000030, 0x0020062d, 0x000 }, | ||
6275 | { 0x00007e00, 0x00280621, 0x000 }, | ||
6276 | { 0x00000000, 0x002f0221, 0x000 }, | ||
6277 | { 0x00000000, 0x0ce00000, 0x5e3 }, | ||
6278 | { 0x81000000, 0x00204411, 0x000 }, | ||
6279 | { 0x00000001, 0x00204811, 0x000 }, | ||
6280 | { 0x0004a092, 0x00604411, 0x68d }, | ||
6281 | { 0x00000031, 0x00203630, 0x000 }, | ||
6282 | { 0x0004a093, 0x00604411, 0x68d }, | ||
6283 | { 0x00000032, 0x00203630, 0x000 }, | ||
6284 | { 0x0004a2b6, 0x00604411, 0x68d }, | ||
6285 | { 0x00000033, 0x00203630, 0x000 }, | ||
6286 | { 0x0004a2ba, 0x00604411, 0x68d }, | ||
6287 | { 0x00000034, 0x00203630, 0x000 }, | ||
6288 | { 0x0004a2be, 0x00604411, 0x68d }, | ||
6289 | { 0x00000035, 0x00203630, 0x000 }, | ||
6290 | { 0x0004a2c2, 0x00604411, 0x68d }, | ||
6291 | { 0x00000036, 0x00203630, 0x000 }, | ||
6292 | { 0x00042004, 0x00604411, 0x68d }, | ||
6293 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
6294 | { 0x0000003f, 0x00204811, 0x000 }, | ||
6295 | { 0x0000003f, 0x00204811, 0x000 }, | ||
6296 | { 0x0000003f, 0x00204811, 0x000 }, | ||
6297 | { 0x0000003f, 0x00204811, 0x000 }, | ||
6298 | { 0x00000005, 0x00204811, 0x000 }, | ||
6299 | { 0x0000a1f4, 0x00204411, 0x000 }, | ||
6300 | { 0x00000000, 0x00204811, 0x000 }, | ||
6301 | { 0x88000000, 0x00204411, 0x000 }, | ||
6302 | { 0x00000001, 0x00204811, 0x000 }, | ||
6303 | { 0x81000000, 0x00204411, 0x000 }, | ||
6304 | { 0x00000006, 0x00204811, 0x000 }, | ||
6305 | { 0x00000001, 0x002f0230, 0x000 }, | ||
6306 | { 0x00000000, 0x0ce00000, 0x62c }, | ||
6307 | { 0x00000030, 0x0020062d, 0x000 }, | ||
6308 | { 0x00000000, 0x002f0221, 0x000 }, | ||
6309 | { 0x00000000, 0x0ce00000, 0x62c }, | ||
6310 | { 0x81000000, 0x00204411, 0x000 }, | ||
6311 | { 0x00000001, 0x00204811, 0x000 }, | ||
6312 | { 0x00007e00, 0x00280621, 0x000 }, | ||
6313 | { 0x00000000, 0x002f0221, 0x000 }, | ||
6314 | { 0x00000000, 0x0ce00000, 0x605 }, | ||
6315 | { 0x0000a092, 0x00204411, 0x000 }, | ||
6316 | { 0x00000031, 0x00204a2d, 0x000 }, | ||
6317 | { 0x0000a093, 0x00204411, 0x000 }, | ||
6318 | { 0x00000032, 0x00204a2d, 0x000 }, | ||
6319 | { 0x0000a2b6, 0x00204411, 0x000 }, | ||
6320 | { 0x00000033, 0x00204a2d, 0x000 }, | ||
6321 | { 0x0000a2ba, 0x00204411, 0x000 }, | ||
6322 | { 0x00000034, 0x00204a2d, 0x000 }, | ||
6323 | { 0x0000a2be, 0x00204411, 0x000 }, | ||
6324 | { 0x00000035, 0x00204a2d, 0x000 }, | ||
6325 | { 0x0000a2c2, 0x00204411, 0x000 }, | ||
6326 | { 0x00000036, 0x00204a2d, 0x000 }, | ||
6327 | { 0x00000030, 0x0020062d, 0x000 }, | ||
6328 | { 0x000001ff, 0x00280621, 0x000 }, | ||
6329 | { 0x00000000, 0x002f0221, 0x000 }, | ||
6330 | { 0x00000000, 0x0ce00000, 0x62b }, | ||
6331 | { 0x00000000, 0x00210221, 0x000 }, | ||
6332 | { 0x00000000, 0x14c00000, 0x60e }, | ||
6333 | { 0x0004a003, 0x00604411, 0x68d }, | ||
6334 | { 0x0000a003, 0x00204411, 0x000 }, | ||
6335 | { 0x00000000, 0x00204810, 0x000 }, | ||
6336 | { 0x00000001, 0x00210621, 0x000 }, | ||
6337 | { 0x00000000, 0x14c00000, 0x613 }, | ||
6338 | { 0x0004a010, 0x00604411, 0x68d }, | ||
6339 | { 0x0000a010, 0x00204411, 0x000 }, | ||
6340 | { 0x00000000, 0x00204810, 0x000 }, | ||
6341 | { 0x00000001, 0x00210621, 0x000 }, | ||
6342 | { 0x00000000, 0x002f0221, 0x000 }, | ||
6343 | { 0x00000000, 0x0ce00000, 0x62b }, | ||
6344 | { 0x0004a011, 0x00604411, 0x68d }, | ||
6345 | { 0x0000a011, 0x00204411, 0x000 }, | ||
6346 | { 0x00000000, 0x00204810, 0x000 }, | ||
6347 | { 0x0004a012, 0x00604411, 0x68d }, | ||
6348 | { 0x0000a012, 0x00204411, 0x000 }, | ||
6349 | { 0x00000000, 0x00204810, 0x000 }, | ||
6350 | { 0x0004a013, 0x00604411, 0x68d }, | ||
6351 | { 0x0000a013, 0x00204411, 0x000 }, | ||
6352 | { 0x00000000, 0x00204810, 0x000 }, | ||
6353 | { 0x0004a014, 0x00604411, 0x68d }, | ||
6354 | { 0x0000a014, 0x00204411, 0x000 }, | ||
6355 | { 0x00000000, 0x00204810, 0x000 }, | ||
6356 | { 0x0004a015, 0x00604411, 0x68d }, | ||
6357 | { 0x0000a015, 0x00204411, 0x000 }, | ||
6358 | { 0x00000000, 0x00204810, 0x000 }, | ||
6359 | { 0x0004a016, 0x00604411, 0x68d }, | ||
6360 | { 0x0000a016, 0x00204411, 0x000 }, | ||
6361 | { 0x00000000, 0x00204810, 0x000 }, | ||
6362 | { 0x0004a017, 0x00604411, 0x68d }, | ||
6363 | { 0x0000a017, 0x00204411, 0x000 }, | ||
6364 | { 0x00000000, 0x00204810, 0x000 }, | ||
6365 | { 0x00042004, 0x00604411, 0x68d }, | ||
6366 | { 0x0000002c, 0x0080062d, 0x000 }, | ||
6367 | { 0xff000000, 0x00204411, 0x000 }, | ||
6368 | { 0x00000000, 0x00204811, 0x000 }, | ||
6369 | { 0x00000001, 0x00204811, 0x000 }, | ||
6370 | { 0x00000002, 0x00804811, 0x000 }, | ||
6371 | { 0x00000000, 0x0ee00000, 0x63d }, | ||
6372 | { 0x00000030, 0x0020062d, 0x000 }, | ||
6373 | { 0x00000002, 0x00280621, 0x000 }, | ||
6374 | { 0x00000000, 0x002f0221, 0x000 }, | ||
6375 | { 0x00000000, 0x0ce00000, 0x63b }, | ||
6376 | { 0x81000000, 0x00204411, 0x000 }, | ||
6377 | { 0x00000001, 0x00204811, 0x000 }, | ||
6378 | { 0x00042004, 0x00604411, 0x68d }, | ||
6379 | { 0x00001000, 0x00200811, 0x000 }, | ||
6380 | { 0x0000002b, 0x00203622, 0x000 }, | ||
6381 | { 0x00000000, 0x00600000, 0x641 }, | ||
6382 | { 0x00000000, 0x00600000, 0x5c9 }, | ||
6383 | { 0x98000000, 0x00204411, 0x000 }, | ||
6384 | { 0x00000000, 0x00804811, 0x000 }, | ||
6385 | { 0x00000000, 0xc0600000, 0x641 }, | ||
6386 | { 0x00000000, 0xc0400400, 0x001 }, | ||
6387 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
6388 | { 0x00000022, 0x00204811, 0x000 }, | ||
6389 | { 0x89000000, 0x00204411, 0x000 }, | ||
6390 | { 0x00000001, 0x00404811, 0x62d }, | ||
6391 | { 0x97000000, 0x00204411, 0x000 }, | ||
6392 | { 0x00000000, 0x00204811, 0x000 }, | ||
6393 | { 0x8a000000, 0x00204411, 0x000 }, | ||
6394 | { 0x00000000, 0x00404811, 0x62d }, | ||
6395 | { 0x00000000, 0x00600000, 0x65c }, | ||
6396 | { 0x00002010, 0x00204411, 0x000 }, | ||
6397 | { 0x00008000, 0x00204811, 0x000 }, | ||
6398 | { 0x0001a2a4, 0xc0204411, 0x000 }, | ||
6399 | { 0x00000016, 0x00604811, 0x36e }, | ||
6400 | { 0x00002010, 0x00204411, 0x000 }, | ||
6401 | { 0x00010000, 0x00204811, 0x000 }, | ||
6402 | { 0x81000000, 0x00204411, 0x000 }, | ||
6403 | { 0x00000001, 0x00204811, 0x000 }, | ||
6404 | { 0x0000217c, 0x00204411, 0x000 }, | ||
6405 | { 0x09800000, 0x00204811, 0x000 }, | ||
6406 | { 0xffffffff, 0x00204811, 0x000 }, | ||
6407 | { 0x00000000, 0x00204811, 0x000 }, | ||
6408 | { 0x00000000, 0x17000000, 0x000 }, | ||
6409 | { 0x0004217f, 0x00604411, 0x68d }, | ||
6410 | { 0x0000001f, 0x00210230, 0x000 }, | ||
6411 | { 0x00000000, 0x14c00000, 0x000 }, | ||
6412 | { 0x00000004, 0x00404c11, 0x656 }, | ||
6413 | { 0x00000000, 0x00400000, 0x000 }, | ||
6414 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
6415 | { 0x00000004, 0x00291e27, 0x000 }, | ||
6416 | { 0x00000017, 0x00803627, 0x000 }, | ||
6417 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
6418 | { 0xfffffffb, 0x00281e27, 0x000 }, | ||
6419 | { 0x00000017, 0x00803627, 0x000 }, | ||
6420 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
6421 | { 0x00000008, 0x00291e27, 0x000 }, | ||
6422 | { 0x00000017, 0x00803627, 0x000 }, | ||
6423 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
6424 | { 0xfffffff7, 0x00281e27, 0x000 }, | ||
6425 | { 0x00000017, 0x00803627, 0x000 }, | ||
6426 | { 0x00002010, 0x00204411, 0x000 }, | ||
6427 | { 0x00008000, 0x00204811, 0x000 }, | ||
6428 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
6429 | { 0x00000016, 0x00604811, 0x36e }, | ||
6430 | { 0x00002010, 0x00204411, 0x000 }, | ||
6431 | { 0x00010000, 0x00204811, 0x000 }, | ||
6432 | { 0x0000217c, 0x00204411, 0x000 }, | ||
6433 | { 0x01800000, 0x00204811, 0x000 }, | ||
6434 | { 0xffffffff, 0x00204811, 0x000 }, | ||
6435 | { 0x00000000, 0x00204811, 0x000 }, | ||
6436 | { 0x00000000, 0x17000000, 0x000 }, | ||
6437 | { 0x81000000, 0x00204411, 0x000 }, | ||
6438 | { 0x00000001, 0x00204811, 0x000 }, | ||
6439 | { 0x0004217f, 0x00604411, 0x68d }, | ||
6440 | { 0x0000001f, 0x00210230, 0x000 }, | ||
6441 | { 0x00000000, 0x14c00000, 0x68c }, | ||
6442 | { 0x00000010, 0x00404c11, 0x672 }, | ||
6443 | { 0x00000000, 0xc0200400, 0x000 }, | ||
6444 | { 0x00000000, 0x38c00000, 0x000 }, | ||
6445 | { 0x0000001d, 0x00200a2d, 0x000 }, | ||
6446 | { 0x0000001e, 0x00200e2d, 0x000 }, | ||
6447 | { 0x0000001f, 0x0020122d, 0x000 }, | ||
6448 | { 0x00000020, 0x0020162d, 0x000 }, | ||
6449 | { 0x00002169, 0x00204411, 0x000 }, | ||
6450 | { 0x00000000, 0x00204804, 0x000 }, | ||
6451 | { 0x00000000, 0x00204805, 0x000 }, | ||
6452 | { 0x00000000, 0x00204801, 0x000 }, | ||
6453 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
6454 | { 0x00000004, 0x00301224, 0x000 }, | ||
6455 | { 0x00000000, 0x002f0064, 0x000 }, | ||
6456 | { 0x00000000, 0x0cc00000, 0x68b }, | ||
6457 | { 0x00000003, 0x00281a22, 0x000 }, | ||
6458 | { 0x00000008, 0x00221222, 0x000 }, | ||
6459 | { 0xfffff000, 0x00281224, 0x000 }, | ||
6460 | { 0x00000000, 0x002910c4, 0x000 }, | ||
6461 | { 0x0000001f, 0x00403624, 0x000 }, | ||
6462 | { 0x00000000, 0x00800000, 0x000 }, | ||
6463 | { 0x00000000, 0x1ac00000, 0x68d }, | ||
6464 | { 0x9f000000, 0x00204411, 0x000 }, | ||
6465 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
6466 | { 0x00000000, 0x1ae00000, 0x690 }, | ||
6467 | { 0x00000000, 0x00800000, 0x000 }, | ||
6468 | { 0x00000000, 0x1ac00000, 0x692 }, | ||
6469 | { 0x9e000000, 0x00204411, 0x000 }, | ||
6470 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
6471 | { 0x00000000, 0x1ae00000, 0x695 }, | ||
6472 | { 0x00000000, 0x00800000, 0x000 }, | ||
6473 | { 0x00000000, 0x00600000, 0x00b }, | ||
6474 | { 0x00001000, 0x00600411, 0x315 }, | ||
6475 | { 0x00000000, 0x00200411, 0x000 }, | ||
6476 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
6477 | { 0x0000225c, 0x00204411, 0x000 }, | ||
6478 | { 0x00000003, 0x00204811, 0x000 }, | ||
6479 | { 0x00002256, 0x00204411, 0x000 }, | ||
6480 | { 0x0000001b, 0x00204811, 0x000 }, | ||
6481 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
6482 | { 0x00000001, 0x00204811, 0x000 }, | ||
6483 | { 0x0001a1fd, 0xc0204411, 0x000 }, | ||
6484 | { 0x00000021, 0x00201e2d, 0x000 }, | ||
6485 | { 0x00000010, 0x00221e27, 0x000 }, | ||
6486 | { 0x00000024, 0x0020222d, 0x000 }, | ||
6487 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
6488 | { 0x00000000, 0x00294907, 0x000 }, | ||
6489 | { 0x00000000, 0x00204811, 0x000 }, | ||
6490 | { 0x00000022, 0x0020222d, 0x000 }, | ||
6491 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
6492 | { 0x00000000, 0x00294907, 0x000 }, | ||
6493 | { 0x00000000, 0x00204811, 0x000 }, | ||
6494 | { 0x00000023, 0x00201e2d, 0x000 }, | ||
6495 | { 0x00000010, 0x00221e27, 0x000 }, | ||
6496 | { 0x00000000, 0x00294907, 0x000 }, | ||
6497 | { 0x00000000, 0x00404811, 0x000 }, | ||
6498 | { 0x00000000, 0x00000000, 0x000 }, | ||
6499 | { 0x00000000, 0x00000000, 0x000 }, | ||
6500 | { 0x00000000, 0x00000000, 0x000 }, | ||
6501 | { 0x00000000, 0x00000000, 0x000 }, | ||
6502 | { 0x00000000, 0x00000000, 0x000 }, | ||
6503 | { 0x00000000, 0x00000000, 0x000 }, | ||
6504 | { 0x00000000, 0x00000000, 0x000 }, | ||
6505 | { 0x00000000, 0x00000000, 0x000 }, | ||
6506 | { 0x00000000, 0x00000000, 0x000 }, | ||
6507 | { 0x00000000, 0x00000000, 0x000 }, | ||
6508 | { 0x00000000, 0x00000000, 0x000 }, | ||
6509 | { 0x00000000, 0x00000000, 0x000 }, | ||
6510 | { 0x00000000, 0x00000000, 0x000 }, | ||
6511 | { 0x00000000, 0x00000000, 0x000 }, | ||
6512 | { 0x00000000, 0x00000000, 0x000 }, | ||
6513 | { 0x00000000, 0x00000000, 0x000 }, | ||
6514 | { 0x00000000, 0x00000000, 0x000 }, | ||
6515 | { 0x00000000, 0x00000000, 0x000 }, | ||
6516 | { 0x00000000, 0x00000000, 0x000 }, | ||
6517 | { 0x00000000, 0x00000000, 0x000 }, | ||
6518 | { 0x00000000, 0x00000000, 0x000 }, | ||
6519 | { 0x00000000, 0x00000000, 0x000 }, | ||
6520 | { 0x00000000, 0x00000000, 0x000 }, | ||
6521 | { 0x00000000, 0x00000000, 0x000 }, | ||
6522 | { 0x00000000, 0x00000000, 0x000 }, | ||
6523 | { 0x00000000, 0x00000000, 0x000 }, | ||
6524 | { 0x00000000, 0x00000000, 0x000 }, | ||
6525 | { 0x00000000, 0x00000000, 0x000 }, | ||
6526 | { 0x00000000, 0x00000000, 0x000 }, | ||
6527 | { 0x00000000, 0x00000000, 0x000 }, | ||
6528 | { 0x00000000, 0x00000000, 0x000 }, | ||
6529 | { 0x00000000, 0x00000000, 0x000 }, | ||
6530 | { 0x00000000, 0x00000000, 0x000 }, | ||
6531 | { 0x00000000, 0x00000000, 0x000 }, | ||
6532 | { 0x00000000, 0x00000000, 0x000 }, | ||
6533 | { 0x00000000, 0x00000000, 0x000 }, | ||
6534 | { 0x00000000, 0x00000000, 0x000 }, | ||
6535 | { 0x00000000, 0x00000000, 0x000 }, | ||
6536 | { 0x00000000, 0x00000000, 0x000 }, | ||
6537 | { 0x00000000, 0x00000000, 0x000 }, | ||
6538 | { 0x00000000, 0x00000000, 0x000 }, | ||
6539 | { 0x00000000, 0x00000000, 0x000 }, | ||
6540 | { 0x00000000, 0x00000000, 0x000 }, | ||
6541 | { 0x00000000, 0x00000000, 0x000 }, | ||
6542 | { 0x00000000, 0x00000000, 0x000 }, | ||
6543 | { 0x00000000, 0x00000000, 0x000 }, | ||
6544 | { 0x00000000, 0x00000000, 0x000 }, | ||
6545 | { 0x00000000, 0x00000000, 0x000 }, | ||
6546 | { 0x00000000, 0x00000000, 0x000 }, | ||
6547 | { 0x00000000, 0x00000000, 0x000 }, | ||
6548 | { 0x00000000, 0x00000000, 0x000 }, | ||
6549 | { 0x00000000, 0x00000000, 0x000 }, | ||
6550 | { 0x01420502, 0x05c00250, 0x000 }, | ||
6551 | { 0x01c30168, 0x043f05c0, 0x000 }, | ||
6552 | { 0x02250209, 0x02500151, 0x000 }, | ||
6553 | { 0x02230245, 0x02a00241, 0x000 }, | ||
6554 | { 0x03d705c0, 0x05c005c0, 0x000 }, | ||
6555 | { 0x0649064a, 0x031f05c0, 0x000 }, | ||
6556 | { 0x05c005c5, 0x03200340, 0x000 }, | ||
6557 | { 0x032a0282, 0x03420334, 0x000 }, | ||
6558 | { 0x05c005c0, 0x05c005c0, 0x000 }, | ||
6559 | { 0x05c00551, 0x05c005c0, 0x000 }, | ||
6560 | { 0x03ba05c0, 0x04bb0344, 0x000 }, | ||
6561 | { 0x049a0450, 0x043d05c0, 0x000 }, | ||
6562 | { 0x04d005c0, 0x044104dd, 0x000 }, | ||
6563 | { 0x04500507, 0x03510375, 0x000 }, | ||
6564 | { 0x05c005c0, 0x05c005c0, 0x000 }, | ||
6565 | { 0x05c005c0, 0x05c005c0, 0x000 }, | ||
6566 | { 0x05c005c0, 0x063f05c7, 0x000 }, | ||
6567 | { 0x05c005c0, 0x000705c0, 0x000 }, | ||
6568 | { 0x05c005c0, 0x05c005c0, 0x000 }, | ||
6569 | { 0x05c005c0, 0x05c005c0, 0x000 }, | ||
6570 | { 0x03f803ed, 0x04080406, 0x000 }, | ||
6571 | { 0x040e040a, 0x040c0410, 0x000 }, | ||
6572 | { 0x041c0418, 0x04240420, 0x000 }, | ||
6573 | { 0x042c0428, 0x04340430, 0x000 }, | ||
6574 | { 0x05c005c0, 0x043805c0, 0x000 }, | ||
6575 | { 0x05c005c0, 0x05c005c0, 0x000 }, | ||
6576 | { 0x05c005c0, 0x05c005c0, 0x000 }, | ||
6577 | { 0x00020679, 0x06970006, 0x000 }, | ||
6578 | }; | ||
6579 | |||
6580 | static const u32 RV620_pfp_microcode[] = { | ||
6581 | 0xca0400, | ||
6582 | 0xa00000, | ||
6583 | 0x7e828b, | ||
6584 | 0x7c038b, | ||
6585 | 0x8001b8, | ||
6586 | 0x7c038b, | ||
6587 | 0xd4401e, | ||
6588 | 0xee001e, | ||
6589 | 0xca0400, | ||
6590 | 0xa00000, | ||
6591 | 0x7e828b, | ||
6592 | 0xc41838, | ||
6593 | 0xca2400, | ||
6594 | 0xca2800, | ||
6595 | 0x9581a8, | ||
6596 | 0xc41c3a, | ||
6597 | 0xc3c000, | ||
6598 | 0xca0800, | ||
6599 | 0xca0c00, | ||
6600 | 0x7c744b, | ||
6601 | 0xc20005, | ||
6602 | 0x99c000, | ||
6603 | 0xc41c3a, | ||
6604 | 0x7c744c, | ||
6605 | 0xc0fff0, | ||
6606 | 0x042c04, | ||
6607 | 0x309002, | ||
6608 | 0x7d2500, | ||
6609 | 0x351402, | ||
6610 | 0x7d350b, | ||
6611 | 0x255403, | ||
6612 | 0x7cd580, | ||
6613 | 0x259c03, | ||
6614 | 0x95c004, | ||
6615 | 0xd5001b, | ||
6616 | 0x7eddc1, | ||
6617 | 0x7d9d80, | ||
6618 | 0xd6801b, | ||
6619 | 0xd5801b, | ||
6620 | 0xd4401e, | ||
6621 | 0xd5401e, | ||
6622 | 0xd6401e, | ||
6623 | 0xd6801e, | ||
6624 | 0xd4801e, | ||
6625 | 0xd4c01e, | ||
6626 | 0x9783d3, | ||
6627 | 0xd5c01e, | ||
6628 | 0xca0800, | ||
6629 | 0x80001a, | ||
6630 | 0xca0c00, | ||
6631 | 0xe4011e, | ||
6632 | 0xd4001e, | ||
6633 | 0x80000c, | ||
6634 | 0xc41838, | ||
6635 | 0xe4013e, | ||
6636 | 0xd4001e, | ||
6637 | 0x80000c, | ||
6638 | 0xc41838, | ||
6639 | 0xd4401e, | ||
6640 | 0xee001e, | ||
6641 | 0xca0400, | ||
6642 | 0xa00000, | ||
6643 | 0x7e828b, | ||
6644 | 0xe4011e, | ||
6645 | 0xd4001e, | ||
6646 | 0xd4401e, | ||
6647 | 0xee001e, | ||
6648 | 0xca0400, | ||
6649 | 0xa00000, | ||
6650 | 0x7e828b, | ||
6651 | 0xe4013e, | ||
6652 | 0xd4001e, | ||
6653 | 0xd4401e, | ||
6654 | 0xee001e, | ||
6655 | 0xca0400, | ||
6656 | 0xa00000, | ||
6657 | 0x7e828b, | ||
6658 | 0xca1800, | ||
6659 | 0xd4401e, | ||
6660 | 0xd5801e, | ||
6661 | 0x800053, | ||
6662 | 0xd40075, | ||
6663 | 0xd4401e, | ||
6664 | 0xca0800, | ||
6665 | 0xca0c00, | ||
6666 | 0xca1000, | ||
6667 | 0xd48019, | ||
6668 | 0xd4c018, | ||
6669 | 0xd50017, | ||
6670 | 0xd4801e, | ||
6671 | 0xd4c01e, | ||
6672 | 0xd5001e, | ||
6673 | 0xe2001e, | ||
6674 | 0xca0400, | ||
6675 | 0xa00000, | ||
6676 | 0x7e828b, | ||
6677 | 0xca0800, | ||
6678 | 0xd48060, | ||
6679 | 0xd4401e, | ||
6680 | 0x800000, | ||
6681 | 0xd4801e, | ||
6682 | 0xca0800, | ||
6683 | 0xd48061, | ||
6684 | 0xd4401e, | ||
6685 | 0x800000, | ||
6686 | 0xd4801e, | ||
6687 | 0xca0800, | ||
6688 | 0xca0c00, | ||
6689 | 0xd4401e, | ||
6690 | 0xd48016, | ||
6691 | 0xd4c016, | ||
6692 | 0xd4801e, | ||
6693 | 0x8001b8, | ||
6694 | 0xd4c01e, | ||
6695 | 0xc60843, | ||
6696 | 0xca0c00, | ||
6697 | 0xca1000, | ||
6698 | 0x948004, | ||
6699 | 0xca1400, | ||
6700 | 0xe420f3, | ||
6701 | 0xd42013, | ||
6702 | 0xd56065, | ||
6703 | 0xd4e01c, | ||
6704 | 0xd5201c, | ||
6705 | 0xd5601c, | ||
6706 | 0x800000, | ||
6707 | 0x062001, | ||
6708 | 0xc60843, | ||
6709 | 0xca0c00, | ||
6710 | 0xca1000, | ||
6711 | 0x9483f7, | ||
6712 | 0xca1400, | ||
6713 | 0xe420f3, | ||
6714 | 0x800079, | ||
6715 | 0xd42013, | ||
6716 | 0xc60843, | ||
6717 | 0xca0c00, | ||
6718 | 0xca1000, | ||
6719 | 0x9883ef, | ||
6720 | 0xca1400, | ||
6721 | 0xd40064, | ||
6722 | 0x80008d, | ||
6723 | 0x000000, | ||
6724 | 0xc41432, | ||
6725 | 0xc61843, | ||
6726 | 0xc4082f, | ||
6727 | 0x954005, | ||
6728 | 0xc40c30, | ||
6729 | 0xd4401e, | ||
6730 | 0x800000, | ||
6731 | 0xee001e, | ||
6732 | 0x9583f5, | ||
6733 | 0xc41031, | ||
6734 | 0xd44033, | ||
6735 | 0xd52065, | ||
6736 | 0xd4a01c, | ||
6737 | 0xd4e01c, | ||
6738 | 0xd5201c, | ||
6739 | 0xe4015e, | ||
6740 | 0xd4001e, | ||
6741 | 0x800000, | ||
6742 | 0x062001, | ||
6743 | 0xca1800, | ||
6744 | 0x0a2001, | ||
6745 | 0xd60076, | ||
6746 | 0xc40836, | ||
6747 | 0x988007, | ||
6748 | 0xc61045, | ||
6749 | 0x950110, | ||
6750 | 0xd4001f, | ||
6751 | 0xd46062, | ||
6752 | 0x800000, | ||
6753 | 0xd42062, | ||
6754 | 0xcc3835, | ||
6755 | 0xcc1433, | ||
6756 | 0x8401bb, | ||
6757 | 0xd40072, | ||
6758 | 0xd5401e, | ||
6759 | 0x800000, | ||
6760 | 0xee001e, | ||
6761 | 0xe2001a, | ||
6762 | 0x8401bb, | ||
6763 | 0xe2001a, | ||
6764 | 0xcc104b, | ||
6765 | 0xcc0447, | ||
6766 | 0x2c9401, | ||
6767 | 0x7d098b, | ||
6768 | 0x984005, | ||
6769 | 0x7d15cb, | ||
6770 | 0xd4001a, | ||
6771 | 0x8001b8, | ||
6772 | 0xd4006d, | ||
6773 | 0x344401, | ||
6774 | 0xcc0c48, | ||
6775 | 0x98403a, | ||
6776 | 0xcc2c4a, | ||
6777 | 0x958004, | ||
6778 | 0xcc0449, | ||
6779 | 0x8001b8, | ||
6780 | 0xd4001a, | ||
6781 | 0xd4c01a, | ||
6782 | 0x282801, | ||
6783 | 0x8400f0, | ||
6784 | 0xcc1003, | ||
6785 | 0x98801b, | ||
6786 | 0x04380c, | ||
6787 | 0x8400f0, | ||
6788 | 0xcc1003, | ||
6789 | 0x988017, | ||
6790 | 0x043808, | ||
6791 | 0x8400f0, | ||
6792 | 0xcc1003, | ||
6793 | 0x988013, | ||
6794 | 0x043804, | ||
6795 | 0x8400f0, | ||
6796 | 0xcc1003, | ||
6797 | 0x988014, | ||
6798 | 0xcc104c, | ||
6799 | 0x9a8009, | ||
6800 | 0xcc144d, | ||
6801 | 0x9840dc, | ||
6802 | 0xd4006d, | ||
6803 | 0xcc1848, | ||
6804 | 0xd5001a, | ||
6805 | 0xd5401a, | ||
6806 | 0x8000c9, | ||
6807 | 0xd5801a, | ||
6808 | 0x96c0d5, | ||
6809 | 0xd4006d, | ||
6810 | 0x8001b8, | ||
6811 | 0xd4006e, | ||
6812 | 0x9ac003, | ||
6813 | 0xd4006d, | ||
6814 | 0xd4006e, | ||
6815 | 0x800000, | ||
6816 | 0xec007f, | ||
6817 | 0x9ac0cc, | ||
6818 | 0xd4006d, | ||
6819 | 0x8001b8, | ||
6820 | 0xd4006e, | ||
6821 | 0xcc1403, | ||
6822 | 0xcc1803, | ||
6823 | 0xcc1c03, | ||
6824 | 0x7d9103, | ||
6825 | 0x7dd583, | ||
6826 | 0x7d190c, | ||
6827 | 0x35cc1f, | ||
6828 | 0x35701f, | ||
6829 | 0x7cf0cb, | ||
6830 | 0x7cd08b, | ||
6831 | 0x880000, | ||
6832 | 0x7e8e8b, | ||
6833 | 0x95c004, | ||
6834 | 0xd4006e, | ||
6835 | 0x8001b8, | ||
6836 | 0xd4001a, | ||
6837 | 0xd4c01a, | ||
6838 | 0xcc0803, | ||
6839 | 0xcc0c03, | ||
6840 | 0xcc1003, | ||
6841 | 0xcc1403, | ||
6842 | 0xcc1803, | ||
6843 | 0xcc1c03, | ||
6844 | 0xcc2403, | ||
6845 | 0xcc2803, | ||
6846 | 0x35c41f, | ||
6847 | 0x36b01f, | ||
6848 | 0x7c704b, | ||
6849 | 0x34f01f, | ||
6850 | 0x7c704b, | ||
6851 | 0x35701f, | ||
6852 | 0x7c704b, | ||
6853 | 0x7d8881, | ||
6854 | 0x7dccc1, | ||
6855 | 0x7e5101, | ||
6856 | 0x7e9541, | ||
6857 | 0x7c9082, | ||
6858 | 0x7cd4c2, | ||
6859 | 0x7c848b, | ||
6860 | 0x9ac003, | ||
6861 | 0x7c8c8b, | ||
6862 | 0x2c8801, | ||
6863 | 0x98809e, | ||
6864 | 0xd4006d, | ||
6865 | 0x98409c, | ||
6866 | 0xd4006e, | ||
6867 | 0xcc084c, | ||
6868 | 0xcc0c4d, | ||
6869 | 0xcc1048, | ||
6870 | 0xd4801a, | ||
6871 | 0xd4c01a, | ||
6872 | 0x800101, | ||
6873 | 0xd5001a, | ||
6874 | 0xcc0832, | ||
6875 | 0xd40032, | ||
6876 | 0x9482d9, | ||
6877 | 0xca0c00, | ||
6878 | 0xd4401e, | ||
6879 | 0x800000, | ||
6880 | 0xd4001e, | ||
6881 | 0xe4011e, | ||
6882 | 0xd4001e, | ||
6883 | 0xca0800, | ||
6884 | 0xca0c00, | ||
6885 | 0xca1000, | ||
6886 | 0xd4401e, | ||
6887 | 0xca1400, | ||
6888 | 0xd4801e, | ||
6889 | 0xd4c01e, | ||
6890 | 0xd5001e, | ||
6891 | 0xd5401e, | ||
6892 | 0xd54034, | ||
6893 | 0x800000, | ||
6894 | 0xee001e, | ||
6895 | 0x280404, | ||
6896 | 0xe2001a, | ||
6897 | 0xe2001a, | ||
6898 | 0xd4401a, | ||
6899 | 0xca3800, | ||
6900 | 0xcc0803, | ||
6901 | 0xcc0c03, | ||
6902 | 0xcc0c03, | ||
6903 | 0xcc0c03, | ||
6904 | 0x9882bd, | ||
6905 | 0x000000, | ||
6906 | 0x8401bb, | ||
6907 | 0xd7a06f, | ||
6908 | 0x800000, | ||
6909 | 0xee001f, | ||
6910 | 0xca0400, | ||
6911 | 0xc2ff00, | ||
6912 | 0xcc0834, | ||
6913 | 0xc13fff, | ||
6914 | 0x7c74cb, | ||
6915 | 0x7cc90b, | ||
6916 | 0x7d010f, | ||
6917 | 0x9902b0, | ||
6918 | 0x7c738b, | ||
6919 | 0x8401bb, | ||
6920 | 0xd7a06f, | ||
6921 | 0x800000, | ||
6922 | 0xee001f, | ||
6923 | 0xca0800, | ||
6924 | 0x281900, | ||
6925 | 0x7d898b, | ||
6926 | 0x958014, | ||
6927 | 0x281404, | ||
6928 | 0xca0c00, | ||
6929 | 0xca1000, | ||
6930 | 0xca1c00, | ||
6931 | 0xca2400, | ||
6932 | 0xe2001f, | ||
6933 | 0xd4c01a, | ||
6934 | 0xd5001a, | ||
6935 | 0xd5401a, | ||
6936 | 0xcc1803, | ||
6937 | 0xcc2c03, | ||
6938 | 0xcc2c03, | ||
6939 | 0xcc2c03, | ||
6940 | 0x7da58b, | ||
6941 | 0x7d9c47, | ||
6942 | 0x984297, | ||
6943 | 0x000000, | ||
6944 | 0x800161, | ||
6945 | 0xd4c01a, | ||
6946 | 0xd4401e, | ||
6947 | 0xd4801e, | ||
6948 | 0x800000, | ||
6949 | 0xee001e, | ||
6950 | 0xe4011e, | ||
6951 | 0xd4001e, | ||
6952 | 0xd4401e, | ||
6953 | 0xee001e, | ||
6954 | 0xca0400, | ||
6955 | 0xa00000, | ||
6956 | 0x7e828b, | ||
6957 | 0xe4013e, | ||
6958 | 0xd4001e, | ||
6959 | 0xd4401e, | ||
6960 | 0xee001e, | ||
6961 | 0xca0400, | ||
6962 | 0xa00000, | ||
6963 | 0x7e828b, | ||
6964 | 0xca0800, | ||
6965 | 0x248c06, | ||
6966 | 0x0ccc06, | ||
6967 | 0x98c006, | ||
6968 | 0xcc104e, | ||
6969 | 0x990004, | ||
6970 | 0xd40073, | ||
6971 | 0xe4011e, | ||
6972 | 0xd4001e, | ||
6973 | 0xd4401e, | ||
6974 | 0xd4801e, | ||
6975 | 0x800000, | ||
6976 | 0xee001e, | ||
6977 | 0xca0800, | ||
6978 | 0xca0c00, | ||
6979 | 0x34d018, | ||
6980 | 0x251001, | ||
6981 | 0x950021, | ||
6982 | 0xc17fff, | ||
6983 | 0xca1000, | ||
6984 | 0xca1400, | ||
6985 | 0xca1800, | ||
6986 | 0xd4801d, | ||
6987 | 0xd4c01d, | ||
6988 | 0x7db18b, | ||
6989 | 0xc14202, | ||
6990 | 0xc2c001, | ||
6991 | 0xd5801d, | ||
6992 | 0x34dc0e, | ||
6993 | 0x7d5d4c, | ||
6994 | 0x7f734c, | ||
6995 | 0xd7401e, | ||
6996 | 0xd5001e, | ||
6997 | 0xd5401e, | ||
6998 | 0xc14200, | ||
6999 | 0xc2c000, | ||
7000 | 0x099c01, | ||
7001 | 0x31dc10, | ||
7002 | 0x7f5f4c, | ||
7003 | 0x7f734c, | ||
7004 | 0x042802, | ||
7005 | 0x7d8380, | ||
7006 | 0xd5a86f, | ||
7007 | 0xd58066, | ||
7008 | 0xd7401e, | ||
7009 | 0xec005e, | ||
7010 | 0xc82402, | ||
7011 | 0xc82402, | ||
7012 | 0x8001b8, | ||
7013 | 0xd60076, | ||
7014 | 0xd4401e, | ||
7015 | 0xd4801e, | ||
7016 | 0xd4c01e, | ||
7017 | 0x800000, | ||
7018 | 0xee001e, | ||
7019 | 0x800000, | ||
7020 | 0xee001f, | ||
7021 | 0xd4001f, | ||
7022 | 0x800000, | ||
7023 | 0xd4001f, | ||
7024 | 0xd4001f, | ||
7025 | 0x880000, | ||
7026 | 0xd4001f, | ||
7027 | 0x000000, | ||
7028 | 0x000000, | ||
7029 | 0x000000, | ||
7030 | 0x000000, | ||
7031 | 0x000000, | ||
7032 | 0x000000, | ||
7033 | 0x000000, | ||
7034 | 0x000000, | ||
7035 | 0x000000, | ||
7036 | 0x000000, | ||
7037 | 0x000000, | ||
7038 | 0x000000, | ||
7039 | 0x000000, | ||
7040 | 0x000000, | ||
7041 | 0x000000, | ||
7042 | 0x000000, | ||
7043 | 0x000000, | ||
7044 | 0x000000, | ||
7045 | 0x000000, | ||
7046 | 0x000000, | ||
7047 | 0x000000, | ||
7048 | 0x000000, | ||
7049 | 0x000000, | ||
7050 | 0x000000, | ||
7051 | 0x000000, | ||
7052 | 0x000000, | ||
7053 | 0x000000, | ||
7054 | 0x000000, | ||
7055 | 0x000000, | ||
7056 | 0x000000, | ||
7057 | 0x000000, | ||
7058 | 0x000000, | ||
7059 | 0x000000, | ||
7060 | 0x000000, | ||
7061 | 0x000000, | ||
7062 | 0x000000, | ||
7063 | 0x000000, | ||
7064 | 0x000000, | ||
7065 | 0x000000, | ||
7066 | 0x000000, | ||
7067 | 0x000000, | ||
7068 | 0x000000, | ||
7069 | 0x000000, | ||
7070 | 0x000000, | ||
7071 | 0x000000, | ||
7072 | 0x000000, | ||
7073 | 0x000000, | ||
7074 | 0x000000, | ||
7075 | 0x000000, | ||
7076 | 0x000000, | ||
7077 | 0x000000, | ||
7078 | 0x000000, | ||
7079 | 0x000000, | ||
7080 | 0x000000, | ||
7081 | 0x000000, | ||
7082 | 0x000000, | ||
7083 | 0x000000, | ||
7084 | 0x000000, | ||
7085 | 0x000000, | ||
7086 | 0x000000, | ||
7087 | 0x000000, | ||
7088 | 0x000000, | ||
7089 | 0x000000, | ||
7090 | 0x000000, | ||
7091 | 0x000000, | ||
7092 | 0x000000, | ||
7093 | 0x010171, | ||
7094 | 0x020178, | ||
7095 | 0x03008f, | ||
7096 | 0x04007f, | ||
7097 | 0x050003, | ||
7098 | 0x06003f, | ||
7099 | 0x070032, | ||
7100 | 0x08012c, | ||
7101 | 0x090046, | ||
7102 | 0x0a0036, | ||
7103 | 0x1001b6, | ||
7104 | 0x1700a2, | ||
7105 | 0x22013a, | ||
7106 | 0x230149, | ||
7107 | 0x2000b4, | ||
7108 | 0x240125, | ||
7109 | 0x27004d, | ||
7110 | 0x28006a, | ||
7111 | 0x2a0060, | ||
7112 | 0x2b0052, | ||
7113 | 0x2f0065, | ||
7114 | 0x320087, | ||
7115 | 0x34017f, | ||
7116 | 0x3c0156, | ||
7117 | 0x3f0072, | ||
7118 | 0x41018c, | ||
7119 | 0x44012e, | ||
7120 | 0x550173, | ||
7121 | 0x56017a, | ||
7122 | 0x60000b, | ||
7123 | 0x610034, | ||
7124 | 0x620038, | ||
7125 | 0x630038, | ||
7126 | 0x640038, | ||
7127 | 0x650038, | ||
7128 | 0x660038, | ||
7129 | 0x670038, | ||
7130 | 0x68003a, | ||
7131 | 0x690041, | ||
7132 | 0x6a0048, | ||
7133 | 0x6b0048, | ||
7134 | 0x6c0048, | ||
7135 | 0x6d0048, | ||
7136 | 0x6e0048, | ||
7137 | 0x6f0048, | ||
7138 | 0x000006, | ||
7139 | 0x000006, | ||
7140 | 0x000006, | ||
7141 | 0x000006, | ||
7142 | 0x000006, | ||
7143 | 0x000006, | ||
7144 | 0x000006, | ||
7145 | 0x000006, | ||
7146 | 0x000006, | ||
7147 | 0x000006, | ||
7148 | 0x000006, | ||
7149 | 0x000006, | ||
7150 | 0x000006, | ||
7151 | 0x000006, | ||
7152 | 0x000006, | ||
7153 | 0x000006, | ||
7154 | 0x000006, | ||
7155 | 0x000006, | ||
7156 | 0x000006, | ||
7157 | }; | ||
7158 | |||
7159 | static const u32 RV630_cp_microcode[][3] = { | ||
7160 | { 0x00000000, 0xc0200400, 0x000 }, | ||
7161 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
7162 | { 0x0000ffff, 0x00284621, 0x000 }, | ||
7163 | { 0x00000000, 0xd9004800, 0x000 }, | ||
7164 | { 0x00000000, 0xc0200400, 0x000 }, | ||
7165 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
7166 | { 0x00000000, 0x00e00000, 0x000 }, | ||
7167 | { 0x00010000, 0xc0294620, 0x000 }, | ||
7168 | { 0x00000000, 0xd9004800, 0x000 }, | ||
7169 | { 0x00000000, 0xc0200400, 0x000 }, | ||
7170 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
7171 | { 0x81000000, 0x00204411, 0x000 }, | ||
7172 | { 0x00000001, 0x00204811, 0x000 }, | ||
7173 | { 0x00042004, 0x00604411, 0x68a }, | ||
7174 | { 0x00000000, 0x00600000, 0x62e }, | ||
7175 | { 0x00000000, 0x00600000, 0x642 }, | ||
7176 | { 0x00000000, 0xc0200800, 0x000 }, | ||
7177 | { 0x00000f00, 0x00281622, 0x000 }, | ||
7178 | { 0x00000008, 0x00211625, 0x000 }, | ||
7179 | { 0x00000018, 0x00203625, 0x000 }, | ||
7180 | { 0x8d000000, 0x00204411, 0x000 }, | ||
7181 | { 0x00000004, 0x002f0225, 0x000 }, | ||
7182 | { 0x00000000, 0x0ce00000, 0x018 }, | ||
7183 | { 0x00412000, 0x00404811, 0x019 }, | ||
7184 | { 0x00422000, 0x00204811, 0x000 }, | ||
7185 | { 0x8e000000, 0x00204411, 0x000 }, | ||
7186 | { 0x00000028, 0x00204a2d, 0x000 }, | ||
7187 | { 0x90000000, 0x00204411, 0x000 }, | ||
7188 | { 0x00000000, 0x00204805, 0x000 }, | ||
7189 | { 0x0000000c, 0x00211622, 0x000 }, | ||
7190 | { 0x00000003, 0x00281625, 0x000 }, | ||
7191 | { 0x00000019, 0x00211a22, 0x000 }, | ||
7192 | { 0x00000004, 0x00281a26, 0x000 }, | ||
7193 | { 0x00000000, 0x002914c5, 0x000 }, | ||
7194 | { 0x00000019, 0x00203625, 0x000 }, | ||
7195 | { 0x00000000, 0x003a1402, 0x000 }, | ||
7196 | { 0x00000016, 0x00211625, 0x000 }, | ||
7197 | { 0x00000003, 0x00281625, 0x000 }, | ||
7198 | { 0x00000017, 0x00200e2d, 0x000 }, | ||
7199 | { 0xfffffffc, 0x00280e23, 0x000 }, | ||
7200 | { 0x00000000, 0x002914a3, 0x000 }, | ||
7201 | { 0x00000017, 0x00203625, 0x000 }, | ||
7202 | { 0x00008000, 0x00280e22, 0x000 }, | ||
7203 | { 0x00000007, 0x00220e23, 0x000 }, | ||
7204 | { 0x00000000, 0x0029386e, 0x000 }, | ||
7205 | { 0x20000000, 0x00280e22, 0x000 }, | ||
7206 | { 0x00000006, 0x00210e23, 0x000 }, | ||
7207 | { 0x00000000, 0x0029386e, 0x000 }, | ||
7208 | { 0x00000000, 0x00220222, 0x000 }, | ||
7209 | { 0x00000000, 0x14e00000, 0x038 }, | ||
7210 | { 0x00000000, 0x2ee00000, 0x035 }, | ||
7211 | { 0x00000000, 0x2ce00000, 0x037 }, | ||
7212 | { 0x00000000, 0x00400e2d, 0x039 }, | ||
7213 | { 0x00000008, 0x00200e2d, 0x000 }, | ||
7214 | { 0x00000009, 0x0040122d, 0x046 }, | ||
7215 | { 0x00000001, 0x00400e2d, 0x039 }, | ||
7216 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
7217 | { 0x003ffffc, 0x00281223, 0x000 }, | ||
7218 | { 0x00000002, 0x00221224, 0x000 }, | ||
7219 | { 0x0000001f, 0x00211e23, 0x000 }, | ||
7220 | { 0x00000000, 0x14e00000, 0x03e }, | ||
7221 | { 0x00000008, 0x00401c11, 0x041 }, | ||
7222 | { 0x0000000d, 0x00201e2d, 0x000 }, | ||
7223 | { 0x0000000f, 0x00281e27, 0x000 }, | ||
7224 | { 0x00000003, 0x00221e27, 0x000 }, | ||
7225 | { 0x7fc00000, 0x00281a23, 0x000 }, | ||
7226 | { 0x00000014, 0x00211a26, 0x000 }, | ||
7227 | { 0x00000001, 0x00331a26, 0x000 }, | ||
7228 | { 0x00000008, 0x00221a26, 0x000 }, | ||
7229 | { 0x00000000, 0x00290cc7, 0x000 }, | ||
7230 | { 0x00000027, 0x00203624, 0x000 }, | ||
7231 | { 0x00007f00, 0x00281221, 0x000 }, | ||
7232 | { 0x00001400, 0x002f0224, 0x000 }, | ||
7233 | { 0x00000000, 0x0ce00000, 0x04b }, | ||
7234 | { 0x00000001, 0x00290e23, 0x000 }, | ||
7235 | { 0x0000000e, 0x00203623, 0x000 }, | ||
7236 | { 0x0000e000, 0x00204411, 0x000 }, | ||
7237 | { 0xfff80000, 0x00294a23, 0x000 }, | ||
7238 | { 0x00000000, 0x003a2c02, 0x000 }, | ||
7239 | { 0x00000002, 0x00220e2b, 0x000 }, | ||
7240 | { 0xfc000000, 0x00280e23, 0x000 }, | ||
7241 | { 0x0000000f, 0x00203623, 0x000 }, | ||
7242 | { 0x00001fff, 0x00294a23, 0x000 }, | ||
7243 | { 0x00000027, 0x00204a2d, 0x000 }, | ||
7244 | { 0x00000000, 0x00204811, 0x000 }, | ||
7245 | { 0x00000029, 0x00200e2d, 0x000 }, | ||
7246 | { 0x060a0200, 0x00294a23, 0x000 }, | ||
7247 | { 0x00000000, 0x00204811, 0x000 }, | ||
7248 | { 0x00000000, 0x00204811, 0x000 }, | ||
7249 | { 0x00000001, 0x00210222, 0x000 }, | ||
7250 | { 0x00000000, 0x14e00000, 0x061 }, | ||
7251 | { 0x00000000, 0x2ee00000, 0x05f }, | ||
7252 | { 0x00000000, 0x2ce00000, 0x05e }, | ||
7253 | { 0x00000000, 0x00400e2d, 0x062 }, | ||
7254 | { 0x00000001, 0x00400e2d, 0x062 }, | ||
7255 | { 0x0000000a, 0x00200e2d, 0x000 }, | ||
7256 | { 0x0000000b, 0x0040122d, 0x06a }, | ||
7257 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
7258 | { 0x003ffffc, 0x00281223, 0x000 }, | ||
7259 | { 0x00000002, 0x00221224, 0x000 }, | ||
7260 | { 0x7fc00000, 0x00281623, 0x000 }, | ||
7261 | { 0x00000014, 0x00211625, 0x000 }, | ||
7262 | { 0x00000001, 0x00331625, 0x000 }, | ||
7263 | { 0x80000000, 0x00280e23, 0x000 }, | ||
7264 | { 0x00000000, 0x00290ca3, 0x000 }, | ||
7265 | { 0x3ffffc00, 0x00290e23, 0x000 }, | ||
7266 | { 0x0000001f, 0x00211e23, 0x000 }, | ||
7267 | { 0x00000000, 0x14e00000, 0x06d }, | ||
7268 | { 0x00000100, 0x00401c11, 0x070 }, | ||
7269 | { 0x0000000d, 0x00201e2d, 0x000 }, | ||
7270 | { 0x000000f0, 0x00281e27, 0x000 }, | ||
7271 | { 0x00000004, 0x00221e27, 0x000 }, | ||
7272 | { 0x81000000, 0x00204411, 0x000 }, | ||
7273 | { 0x0000000d, 0x00204811, 0x000 }, | ||
7274 | { 0xfffff0ff, 0x00281a30, 0x000 }, | ||
7275 | { 0x0000a028, 0x00204411, 0x000 }, | ||
7276 | { 0x00000000, 0x002948e6, 0x000 }, | ||
7277 | { 0x0000a018, 0x00204411, 0x000 }, | ||
7278 | { 0x3fffffff, 0x00284a23, 0x000 }, | ||
7279 | { 0x0000a010, 0x00204411, 0x000 }, | ||
7280 | { 0x00000000, 0x00204804, 0x000 }, | ||
7281 | { 0x00000030, 0x0020162d, 0x000 }, | ||
7282 | { 0x00000002, 0x00291625, 0x000 }, | ||
7283 | { 0x00000030, 0x00203625, 0x000 }, | ||
7284 | { 0x00000025, 0x0020162d, 0x000 }, | ||
7285 | { 0x00000000, 0x002f00a3, 0x000 }, | ||
7286 | { 0x00000000, 0x0cc00000, 0x083 }, | ||
7287 | { 0x00000026, 0x0020162d, 0x000 }, | ||
7288 | { 0x00000000, 0x002f00a4, 0x000 }, | ||
7289 | { 0x00000000, 0x0cc00000, 0x084 }, | ||
7290 | { 0x00000000, 0x00400000, 0x08a }, | ||
7291 | { 0x00000025, 0x00203623, 0x000 }, | ||
7292 | { 0x00000026, 0x00203624, 0x000 }, | ||
7293 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
7294 | { 0x00000002, 0x00210227, 0x000 }, | ||
7295 | { 0x00000000, 0x14e00000, 0x08a }, | ||
7296 | { 0x00000000, 0x00600000, 0x665 }, | ||
7297 | { 0x00000000, 0x00600000, 0x659 }, | ||
7298 | { 0x00000002, 0x00210e22, 0x000 }, | ||
7299 | { 0x00000000, 0x14c00000, 0x08d }, | ||
7300 | { 0x00000012, 0xc0403620, 0x093 }, | ||
7301 | { 0x00000000, 0x2ee00000, 0x091 }, | ||
7302 | { 0x00000000, 0x2ce00000, 0x090 }, | ||
7303 | { 0x00000002, 0x00400e2d, 0x092 }, | ||
7304 | { 0x00000003, 0x00400e2d, 0x092 }, | ||
7305 | { 0x0000000c, 0x00200e2d, 0x000 }, | ||
7306 | { 0x00000012, 0x00203623, 0x000 }, | ||
7307 | { 0x00000003, 0x00210e22, 0x000 }, | ||
7308 | { 0x00000000, 0x14c00000, 0x098 }, | ||
7309 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
7310 | { 0x00000000, 0xc0204800, 0x000 }, | ||
7311 | { 0x00000000, 0xc0404800, 0x0a0 }, | ||
7312 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
7313 | { 0x00000000, 0x00204811, 0x000 }, | ||
7314 | { 0x00000000, 0x2ee00000, 0x09e }, | ||
7315 | { 0x00000000, 0x2ce00000, 0x09d }, | ||
7316 | { 0x00000002, 0x00400e2d, 0x09f }, | ||
7317 | { 0x00000003, 0x00400e2d, 0x09f }, | ||
7318 | { 0x0000000c, 0x00200e2d, 0x000 }, | ||
7319 | { 0x00000000, 0x00204803, 0x000 }, | ||
7320 | { 0x00000000, 0x003a0c02, 0x000 }, | ||
7321 | { 0x003f0000, 0x00280e23, 0x000 }, | ||
7322 | { 0x00000010, 0x00210e23, 0x000 }, | ||
7323 | { 0x00000011, 0x00203623, 0x000 }, | ||
7324 | { 0x0000001e, 0x0021022b, 0x000 }, | ||
7325 | { 0x00000000, 0x14c00000, 0x0a7 }, | ||
7326 | { 0x00000016, 0xc0203620, 0x000 }, | ||
7327 | { 0x0000001f, 0x0021022b, 0x000 }, | ||
7328 | { 0x00000000, 0x14c00000, 0x0aa }, | ||
7329 | { 0x00000015, 0xc0203620, 0x000 }, | ||
7330 | { 0x00000008, 0x00210e2b, 0x000 }, | ||
7331 | { 0x0000007f, 0x00280e23, 0x000 }, | ||
7332 | { 0x00000000, 0x002f0223, 0x000 }, | ||
7333 | { 0x00000000, 0x0ce00000, 0x0e1 }, | ||
7334 | { 0x00000000, 0x27000000, 0x000 }, | ||
7335 | { 0x00000000, 0x00600000, 0x2a3 }, | ||
7336 | { 0x00000001, 0x002f0223, 0x000 }, | ||
7337 | { 0x00000000, 0x0ae00000, 0x0b3 }, | ||
7338 | { 0x00000000, 0x00600000, 0x13a }, | ||
7339 | { 0x81000000, 0x00204411, 0x000 }, | ||
7340 | { 0x00000006, 0x00204811, 0x000 }, | ||
7341 | { 0x0000000c, 0x00221e30, 0x000 }, | ||
7342 | { 0x99800000, 0x00204411, 0x000 }, | ||
7343 | { 0x00000004, 0x0020122d, 0x000 }, | ||
7344 | { 0x00000008, 0x00221224, 0x000 }, | ||
7345 | { 0x00000010, 0x00201811, 0x000 }, | ||
7346 | { 0x00000000, 0x00291ce4, 0x000 }, | ||
7347 | { 0x00000000, 0x00604807, 0x12f }, | ||
7348 | { 0x9b000000, 0x00204411, 0x000 }, | ||
7349 | { 0x00000000, 0x00204802, 0x000 }, | ||
7350 | { 0x9c000000, 0x00204411, 0x000 }, | ||
7351 | { 0x00000000, 0x0033146f, 0x000 }, | ||
7352 | { 0x00000001, 0x00333e23, 0x000 }, | ||
7353 | { 0x00000000, 0xd9004800, 0x000 }, | ||
7354 | { 0x00000000, 0x00203c05, 0x000 }, | ||
7355 | { 0x81000000, 0x00204411, 0x000 }, | ||
7356 | { 0x0000000e, 0x00204811, 0x000 }, | ||
7357 | { 0x00000000, 0x00201010, 0x000 }, | ||
7358 | { 0x0000e007, 0x00204411, 0x000 }, | ||
7359 | { 0x0000000f, 0x0021022b, 0x000 }, | ||
7360 | { 0x00000000, 0x14c00000, 0x0cb }, | ||
7361 | { 0x00f8ff08, 0x00204811, 0x000 }, | ||
7362 | { 0x98000000, 0x00404811, 0x0dc }, | ||
7363 | { 0x000000f0, 0x00280e22, 0x000 }, | ||
7364 | { 0x000000a0, 0x002f0223, 0x000 }, | ||
7365 | { 0x00000000, 0x0cc00000, 0x0da }, | ||
7366 | { 0x00000011, 0x00200e2d, 0x000 }, | ||
7367 | { 0x00000001, 0x002f0223, 0x000 }, | ||
7368 | { 0x00000000, 0x0ce00000, 0x0d5 }, | ||
7369 | { 0x00000002, 0x002f0223, 0x000 }, | ||
7370 | { 0x00000000, 0x0ce00000, 0x0d4 }, | ||
7371 | { 0x00003f00, 0x00400c11, 0x0d6 }, | ||
7372 | { 0x00001f00, 0x00400c11, 0x0d6 }, | ||
7373 | { 0x00000f00, 0x00200c11, 0x000 }, | ||
7374 | { 0x00380009, 0x00294a23, 0x000 }, | ||
7375 | { 0x3f000000, 0x00280e2b, 0x000 }, | ||
7376 | { 0x00000002, 0x00220e23, 0x000 }, | ||
7377 | { 0x00000007, 0x00494a23, 0x0dc }, | ||
7378 | { 0x00380f09, 0x00204811, 0x000 }, | ||
7379 | { 0x68000007, 0x00204811, 0x000 }, | ||
7380 | { 0x00000008, 0x00214a27, 0x000 }, | ||
7381 | { 0x00000000, 0x00204811, 0x000 }, | ||
7382 | { 0x060a0200, 0x00294a24, 0x000 }, | ||
7383 | { 0x00000000, 0x00204811, 0x000 }, | ||
7384 | { 0x00000000, 0x00204811, 0x000 }, | ||
7385 | { 0x0000a202, 0x00204411, 0x000 }, | ||
7386 | { 0x00ff0000, 0x00280e22, 0x000 }, | ||
7387 | { 0x00000080, 0x00294a23, 0x000 }, | ||
7388 | { 0x00000027, 0x00200e2d, 0x000 }, | ||
7389 | { 0x00000026, 0x0020122d, 0x000 }, | ||
7390 | { 0x00000000, 0x002f0083, 0x000 }, | ||
7391 | { 0x00000000, 0x0ce00000, 0x0ea }, | ||
7392 | { 0x00000000, 0x00600000, 0x65f }, | ||
7393 | { 0x00000000, 0x00400000, 0x0eb }, | ||
7394 | { 0x00000000, 0x00600000, 0x662 }, | ||
7395 | { 0x00000007, 0x0020222d, 0x000 }, | ||
7396 | { 0x00000005, 0x00220e22, 0x000 }, | ||
7397 | { 0x00100000, 0x00280e23, 0x000 }, | ||
7398 | { 0x00000000, 0x00292068, 0x000 }, | ||
7399 | { 0x00000000, 0x003a0c02, 0x000 }, | ||
7400 | { 0x000000ef, 0x00280e23, 0x000 }, | ||
7401 | { 0x00000000, 0x00292068, 0x000 }, | ||
7402 | { 0x00000017, 0x00200e2d, 0x000 }, | ||
7403 | { 0x00000003, 0x00210223, 0x000 }, | ||
7404 | { 0x00000000, 0x14e00000, 0x0f8 }, | ||
7405 | { 0x0000000b, 0x00210228, 0x000 }, | ||
7406 | { 0x00000000, 0x14c00000, 0x0f8 }, | ||
7407 | { 0x00000400, 0x00292228, 0x000 }, | ||
7408 | { 0x00000014, 0x00203628, 0x000 }, | ||
7409 | { 0x0000001c, 0x00210e22, 0x000 }, | ||
7410 | { 0x00000000, 0x14c00000, 0x0fd }, | ||
7411 | { 0x0000a30c, 0x00204411, 0x000 }, | ||
7412 | { 0x00000000, 0x00204811, 0x000 }, | ||
7413 | { 0x0000001e, 0x00210e22, 0x000 }, | ||
7414 | { 0x00000000, 0x14c00000, 0x10b }, | ||
7415 | { 0x0000a30f, 0x00204411, 0x000 }, | ||
7416 | { 0x00000011, 0x00200e2d, 0x000 }, | ||
7417 | { 0x00000001, 0x002f0223, 0x000 }, | ||
7418 | { 0x00000000, 0x0cc00000, 0x104 }, | ||
7419 | { 0xffffffff, 0x00404811, 0x10b }, | ||
7420 | { 0x00000002, 0x002f0223, 0x000 }, | ||
7421 | { 0x00000000, 0x0cc00000, 0x107 }, | ||
7422 | { 0x0000ffff, 0x00404811, 0x10b }, | ||
7423 | { 0x00000004, 0x002f0223, 0x000 }, | ||
7424 | { 0x00000000, 0x0cc00000, 0x10a }, | ||
7425 | { 0x000000ff, 0x00404811, 0x10b }, | ||
7426 | { 0x00000001, 0x00204811, 0x000 }, | ||
7427 | { 0x0002c400, 0x00204411, 0x000 }, | ||
7428 | { 0x0000001f, 0x00210e22, 0x000 }, | ||
7429 | { 0x00000000, 0x14c00000, 0x112 }, | ||
7430 | { 0x00000010, 0x40210e20, 0x000 }, | ||
7431 | { 0x00000013, 0x00203623, 0x000 }, | ||
7432 | { 0x00000018, 0x40224a20, 0x000 }, | ||
7433 | { 0x00000010, 0xc0424a20, 0x114 }, | ||
7434 | { 0x00000000, 0x00200c11, 0x000 }, | ||
7435 | { 0x00000013, 0x00203623, 0x000 }, | ||
7436 | { 0x00000000, 0x00204811, 0x000 }, | ||
7437 | { 0x00000000, 0x00204811, 0x000 }, | ||
7438 | { 0x0000000a, 0x00201011, 0x000 }, | ||
7439 | { 0x00000000, 0x002f0224, 0x000 }, | ||
7440 | { 0x00000000, 0x0ce00000, 0x11b }, | ||
7441 | { 0x00000000, 0x00204811, 0x000 }, | ||
7442 | { 0x00000001, 0x00531224, 0x117 }, | ||
7443 | { 0xffbfffff, 0x00283a2e, 0x000 }, | ||
7444 | { 0x0000001b, 0x00210222, 0x000 }, | ||
7445 | { 0x00000000, 0x14c00000, 0x12e }, | ||
7446 | { 0x81000000, 0x00204411, 0x000 }, | ||
7447 | { 0x0000000d, 0x00204811, 0x000 }, | ||
7448 | { 0x00000018, 0x00220e30, 0x000 }, | ||
7449 | { 0xfc000000, 0x00280e23, 0x000 }, | ||
7450 | { 0x81000000, 0x00204411, 0x000 }, | ||
7451 | { 0x0000000e, 0x00204811, 0x000 }, | ||
7452 | { 0x00000000, 0x00201010, 0x000 }, | ||
7453 | { 0x0000e00e, 0x00204411, 0x000 }, | ||
7454 | { 0x07f8ff08, 0x00204811, 0x000 }, | ||
7455 | { 0x00000000, 0x00294a23, 0x000 }, | ||
7456 | { 0x0000001c, 0x00201e2d, 0x000 }, | ||
7457 | { 0x00000008, 0x00214a27, 0x000 }, | ||
7458 | { 0x00000000, 0x00204811, 0x000 }, | ||
7459 | { 0x060a0200, 0x00294a24, 0x000 }, | ||
7460 | { 0x00000000, 0x00204811, 0x000 }, | ||
7461 | { 0x00000000, 0x00204811, 0x000 }, | ||
7462 | { 0x00000000, 0x00800000, 0x000 }, | ||
7463 | { 0x81000000, 0x00204411, 0x000 }, | ||
7464 | { 0x00000001, 0x00204811, 0x000 }, | ||
7465 | { 0x0000217c, 0x00204411, 0x000 }, | ||
7466 | { 0x00800000, 0x00204811, 0x000 }, | ||
7467 | { 0x00000000, 0x00204806, 0x000 }, | ||
7468 | { 0x00000008, 0x00214a27, 0x000 }, | ||
7469 | { 0x00000000, 0x17000000, 0x000 }, | ||
7470 | { 0x0004217f, 0x00604411, 0x68a }, | ||
7471 | { 0x0000001f, 0x00210230, 0x000 }, | ||
7472 | { 0x00000000, 0x14c00000, 0x689 }, | ||
7473 | { 0x00000004, 0x00404c11, 0x135 }, | ||
7474 | { 0x81000000, 0x00204411, 0x000 }, | ||
7475 | { 0x00000001, 0x00204811, 0x000 }, | ||
7476 | { 0x000021f8, 0x00204411, 0x000 }, | ||
7477 | { 0x0000001c, 0x00204811, 0x000 }, | ||
7478 | { 0x000421f9, 0x00604411, 0x68a }, | ||
7479 | { 0x00000011, 0x00210230, 0x000 }, | ||
7480 | { 0x00000000, 0x14e00000, 0x13c }, | ||
7481 | { 0x00000000, 0x00800000, 0x000 }, | ||
7482 | { 0x00000000, 0x00600000, 0x00b }, | ||
7483 | { 0x00000000, 0x00600411, 0x315 }, | ||
7484 | { 0x00000000, 0x00200411, 0x000 }, | ||
7485 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
7486 | { 0x00000000, 0x00600000, 0x160 }, | ||
7487 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
7488 | { 0x00000010, 0xc0211220, 0x000 }, | ||
7489 | { 0x0000ffff, 0x40280620, 0x000 }, | ||
7490 | { 0x00000010, 0xc0210a20, 0x000 }, | ||
7491 | { 0x00000000, 0x00341461, 0x000 }, | ||
7492 | { 0x00000000, 0x00741882, 0x2bb }, | ||
7493 | { 0x0001a1fd, 0x00604411, 0x2e0 }, | ||
7494 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
7495 | { 0x00000000, 0x0cc00000, 0x147 }, | ||
7496 | { 0x00000000, 0xc0400400, 0x001 }, | ||
7497 | { 0x00000000, 0x00600000, 0x00b }, | ||
7498 | { 0x00000000, 0x00600411, 0x315 }, | ||
7499 | { 0x00000000, 0x00200411, 0x000 }, | ||
7500 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
7501 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
7502 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
7503 | { 0x00000000, 0x00600000, 0x160 }, | ||
7504 | { 0x00000010, 0x40210e20, 0x000 }, | ||
7505 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
7506 | { 0x00000010, 0x40211620, 0x000 }, | ||
7507 | { 0x0000ffff, 0xc0681a20, 0x2bb }, | ||
7508 | { 0x0001a1fd, 0x00604411, 0x2e0 }, | ||
7509 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
7510 | { 0x00000000, 0x0cc00000, 0x158 }, | ||
7511 | { 0x00000000, 0xc0400400, 0x001 }, | ||
7512 | { 0x0000225c, 0x00204411, 0x000 }, | ||
7513 | { 0x00000001, 0x00300a2f, 0x000 }, | ||
7514 | { 0x00000001, 0x00210a22, 0x000 }, | ||
7515 | { 0x00000003, 0x00384a22, 0x000 }, | ||
7516 | { 0x00002256, 0x00204411, 0x000 }, | ||
7517 | { 0x0000001a, 0x00204811, 0x000 }, | ||
7518 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
7519 | { 0x00000001, 0x00804811, 0x000 }, | ||
7520 | { 0x00000000, 0x00600000, 0x00b }, | ||
7521 | { 0x00000000, 0x00600000, 0x18f }, | ||
7522 | { 0x00000000, 0x00600000, 0x1a0 }, | ||
7523 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
7524 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
7525 | { 0x00000000, 0x00202c08, 0x000 }, | ||
7526 | { 0x00000000, 0x00202411, 0x000 }, | ||
7527 | { 0x00000000, 0x00202811, 0x000 }, | ||
7528 | { 0x00002256, 0x00204411, 0x000 }, | ||
7529 | { 0x00000016, 0x00204811, 0x000 }, | ||
7530 | { 0x0000225c, 0x00204411, 0x000 }, | ||
7531 | { 0x00000003, 0x00204811, 0x000 }, | ||
7532 | { 0x93800000, 0x00204411, 0x000 }, | ||
7533 | { 0x00000002, 0x00221e29, 0x000 }, | ||
7534 | { 0x00000000, 0x007048eb, 0x19c }, | ||
7535 | { 0x00000000, 0x00600000, 0x2bb }, | ||
7536 | { 0x00000001, 0x40330620, 0x000 }, | ||
7537 | { 0x00000000, 0xc0302409, 0x000 }, | ||
7538 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
7539 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
7540 | { 0x00000000, 0x00600000, 0x2a3 }, | ||
7541 | { 0x00000000, 0x002f0221, 0x000 }, | ||
7542 | { 0x00000000, 0x0ae00000, 0x181 }, | ||
7543 | { 0x00000000, 0x00600000, 0x13a }, | ||
7544 | { 0x00000000, 0x00400000, 0x186 }, | ||
7545 | { 0x95000000, 0x00204411, 0x000 }, | ||
7546 | { 0x00000000, 0x002f0221, 0x000 }, | ||
7547 | { 0x00000000, 0x0ce00000, 0x186 }, | ||
7548 | { 0x00000000, 0xc0204800, 0x000 }, | ||
7549 | { 0x00000001, 0x00530621, 0x182 }, | ||
7550 | { 0x92000000, 0x00204411, 0x000 }, | ||
7551 | { 0x00000000, 0xc0604800, 0x197 }, | ||
7552 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
7553 | { 0x00000011, 0x0020062d, 0x000 }, | ||
7554 | { 0x00000000, 0x0078042a, 0x2fb }, | ||
7555 | { 0x00000000, 0x00202809, 0x000 }, | ||
7556 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
7557 | { 0x00000000, 0x0cc00000, 0x174 }, | ||
7558 | { 0x00000000, 0xc0400400, 0x001 }, | ||
7559 | { 0x00000210, 0x00600411, 0x315 }, | ||
7560 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
7561 | { 0x00000000, 0x0ce00000, 0x194 }, | ||
7562 | { 0x00000015, 0xc0203620, 0x000 }, | ||
7563 | { 0x00000016, 0xc0203620, 0x000 }, | ||
7564 | { 0x3f800000, 0x00200411, 0x000 }, | ||
7565 | { 0x46000000, 0x00600811, 0x1b2 }, | ||
7566 | { 0x00000000, 0x00800000, 0x000 }, | ||
7567 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
7568 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
7569 | { 0x00000000, 0x0cc00000, 0x19b }, | ||
7570 | { 0x00000001, 0x00804811, 0x000 }, | ||
7571 | { 0x00000021, 0x00804811, 0x000 }, | ||
7572 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
7573 | { 0x00000010, 0xc0211220, 0x000 }, | ||
7574 | { 0x0000ffff, 0x40281620, 0x000 }, | ||
7575 | { 0x00000010, 0xc0811a20, 0x000 }, | ||
7576 | { 0x81000000, 0x00204411, 0x000 }, | ||
7577 | { 0x00000006, 0x00204811, 0x000 }, | ||
7578 | { 0x00000008, 0x00221e30, 0x000 }, | ||
7579 | { 0x00000029, 0x00201a2d, 0x000 }, | ||
7580 | { 0x0000e000, 0x00204411, 0x000 }, | ||
7581 | { 0xfffbff09, 0x00204811, 0x000 }, | ||
7582 | { 0x0000000f, 0x0020222d, 0x000 }, | ||
7583 | { 0x00001fff, 0x00294a28, 0x000 }, | ||
7584 | { 0x00000006, 0x0020222d, 0x000 }, | ||
7585 | { 0x00000000, 0x002920e8, 0x000 }, | ||
7586 | { 0x00000000, 0x00204808, 0x000 }, | ||
7587 | { 0x00000000, 0x00204811, 0x000 }, | ||
7588 | { 0x060a0200, 0x00294a26, 0x000 }, | ||
7589 | { 0x00000000, 0x00204811, 0x000 }, | ||
7590 | { 0x00000000, 0x00204811, 0x000 }, | ||
7591 | { 0x00000100, 0x00201811, 0x000 }, | ||
7592 | { 0x00000008, 0x00621e28, 0x12f }, | ||
7593 | { 0x00000008, 0x00822228, 0x000 }, | ||
7594 | { 0x0002c000, 0x00204411, 0x000 }, | ||
7595 | { 0x00000015, 0x00600e2d, 0x1bd }, | ||
7596 | { 0x00000016, 0x00600e2d, 0x1bd }, | ||
7597 | { 0x0000c008, 0x00204411, 0x000 }, | ||
7598 | { 0x00000017, 0x00200e2d, 0x000 }, | ||
7599 | { 0x00000000, 0x14c00000, 0x1b9 }, | ||
7600 | { 0x00000000, 0x00200411, 0x000 }, | ||
7601 | { 0x00000000, 0x00204801, 0x000 }, | ||
7602 | { 0x39000000, 0x00204811, 0x000 }, | ||
7603 | { 0x00000000, 0x00204811, 0x000 }, | ||
7604 | { 0x00000000, 0x00804802, 0x000 }, | ||
7605 | { 0x00000018, 0x00202e2d, 0x000 }, | ||
7606 | { 0x00000000, 0x003b0d63, 0x000 }, | ||
7607 | { 0x00000008, 0x00224a23, 0x000 }, | ||
7608 | { 0x00000010, 0x00224a23, 0x000 }, | ||
7609 | { 0x00000018, 0x00224a23, 0x000 }, | ||
7610 | { 0x00000000, 0x00804803, 0x000 }, | ||
7611 | { 0x00000000, 0x00600000, 0x00b }, | ||
7612 | { 0x00001000, 0x00600411, 0x315 }, | ||
7613 | { 0x00000000, 0x00200411, 0x000 }, | ||
7614 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
7615 | { 0x00000007, 0x0021062f, 0x000 }, | ||
7616 | { 0x00000013, 0x00200a2d, 0x000 }, | ||
7617 | { 0x00000001, 0x00202c11, 0x000 }, | ||
7618 | { 0x0000ffff, 0x40282220, 0x000 }, | ||
7619 | { 0x0000000f, 0x00262228, 0x000 }, | ||
7620 | { 0x00000010, 0x40212620, 0x000 }, | ||
7621 | { 0x0000000f, 0x00262629, 0x000 }, | ||
7622 | { 0x00000000, 0x00202802, 0x000 }, | ||
7623 | { 0x00002256, 0x00204411, 0x000 }, | ||
7624 | { 0x0000001b, 0x00204811, 0x000 }, | ||
7625 | { 0x00000000, 0x002f0221, 0x000 }, | ||
7626 | { 0x00000000, 0x0ce00000, 0x1e0 }, | ||
7627 | { 0x0000225c, 0x00204411, 0x000 }, | ||
7628 | { 0x00000081, 0x00204811, 0x000 }, | ||
7629 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
7630 | { 0x00000001, 0x00204811, 0x000 }, | ||
7631 | { 0x00000080, 0x00201c11, 0x000 }, | ||
7632 | { 0x00000000, 0x002f0227, 0x000 }, | ||
7633 | { 0x00000000, 0x0ce00000, 0x1dc }, | ||
7634 | { 0x00000000, 0x00600000, 0x1e9 }, | ||
7635 | { 0x00000001, 0x00531e27, 0x1d8 }, | ||
7636 | { 0x00000001, 0x00202c11, 0x000 }, | ||
7637 | { 0x0000001f, 0x00280a22, 0x000 }, | ||
7638 | { 0x0000001f, 0x00282a2a, 0x000 }, | ||
7639 | { 0x00000001, 0x00530621, 0x1d1 }, | ||
7640 | { 0x0000225c, 0x00204411, 0x000 }, | ||
7641 | { 0x00000002, 0x00304a2f, 0x000 }, | ||
7642 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
7643 | { 0x00000001, 0x00204811, 0x000 }, | ||
7644 | { 0x00000001, 0x00301e2f, 0x000 }, | ||
7645 | { 0x00000000, 0x002f0227, 0x000 }, | ||
7646 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
7647 | { 0x00000000, 0x00600000, 0x1e9 }, | ||
7648 | { 0x00000001, 0x00531e27, 0x1e5 }, | ||
7649 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
7650 | { 0x0000000f, 0x00260e23, 0x000 }, | ||
7651 | { 0x00000010, 0xc0211220, 0x000 }, | ||
7652 | { 0x0000000f, 0x00261224, 0x000 }, | ||
7653 | { 0x00000000, 0x00201411, 0x000 }, | ||
7654 | { 0x00000000, 0x00601811, 0x2bb }, | ||
7655 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
7656 | { 0x00000000, 0x002f022b, 0x000 }, | ||
7657 | { 0x00000000, 0x0ce00000, 0x1f8 }, | ||
7658 | { 0x00000010, 0x00221628, 0x000 }, | ||
7659 | { 0xffff0000, 0x00281625, 0x000 }, | ||
7660 | { 0x0000ffff, 0x00281a29, 0x000 }, | ||
7661 | { 0x00000000, 0x002948c5, 0x000 }, | ||
7662 | { 0x00000000, 0x0020480a, 0x000 }, | ||
7663 | { 0x00000000, 0x00202c11, 0x000 }, | ||
7664 | { 0x00000010, 0x00221623, 0x000 }, | ||
7665 | { 0xffff0000, 0x00281625, 0x000 }, | ||
7666 | { 0x0000ffff, 0x00281a24, 0x000 }, | ||
7667 | { 0x00000000, 0x002948c5, 0x000 }, | ||
7668 | { 0x00000000, 0x00731503, 0x205 }, | ||
7669 | { 0x00000000, 0x00201805, 0x000 }, | ||
7670 | { 0x00000000, 0x00731524, 0x205 }, | ||
7671 | { 0x00000000, 0x002d14c5, 0x000 }, | ||
7672 | { 0x00000000, 0x003008a2, 0x000 }, | ||
7673 | { 0x00000000, 0x00204802, 0x000 }, | ||
7674 | { 0x00000000, 0x00202802, 0x000 }, | ||
7675 | { 0x00000000, 0x00202003, 0x000 }, | ||
7676 | { 0x00000000, 0x00802404, 0x000 }, | ||
7677 | { 0x0000000f, 0x00210225, 0x000 }, | ||
7678 | { 0x00000000, 0x14c00000, 0x689 }, | ||
7679 | { 0x00000000, 0x002b1405, 0x000 }, | ||
7680 | { 0x00000001, 0x00901625, 0x000 }, | ||
7681 | { 0x00000000, 0x00600000, 0x00b }, | ||
7682 | { 0x00000000, 0x00600411, 0x315 }, | ||
7683 | { 0x00000000, 0x00200411, 0x000 }, | ||
7684 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
7685 | { 0x00002256, 0x00204411, 0x000 }, | ||
7686 | { 0x0000001a, 0x00294a22, 0x000 }, | ||
7687 | { 0x00000000, 0xc0200000, 0x000 }, | ||
7688 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
7689 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
7690 | { 0x00000000, 0xc0200400, 0x000 }, | ||
7691 | { 0x0000225c, 0x00204411, 0x000 }, | ||
7692 | { 0x00000003, 0x00384a21, 0x000 }, | ||
7693 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
7694 | { 0x00000001, 0x00204811, 0x000 }, | ||
7695 | { 0x0000ffff, 0x40281220, 0x000 }, | ||
7696 | { 0x00000010, 0xc0211a20, 0x000 }, | ||
7697 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
7698 | { 0x00000010, 0xc0211620, 0x000 }, | ||
7699 | { 0x00000000, 0x00741465, 0x2bb }, | ||
7700 | { 0x0001a1fd, 0x00604411, 0x2e0 }, | ||
7701 | { 0x00000001, 0x00330621, 0x000 }, | ||
7702 | { 0x00000000, 0x002f0221, 0x000 }, | ||
7703 | { 0x00000000, 0x0cc00000, 0x219 }, | ||
7704 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
7705 | { 0x00000000, 0x0cc00000, 0x212 }, | ||
7706 | { 0x00000000, 0xc0400400, 0x001 }, | ||
7707 | { 0x00000000, 0x00600000, 0x642 }, | ||
7708 | { 0x00000000, 0x0040040f, 0x213 }, | ||
7709 | { 0x00000000, 0x00600000, 0x62e }, | ||
7710 | { 0x00000000, 0x00600000, 0x642 }, | ||
7711 | { 0x00000210, 0x00600411, 0x315 }, | ||
7712 | { 0x00000000, 0x00600000, 0x1a0 }, | ||
7713 | { 0x00000000, 0x00600000, 0x19c }, | ||
7714 | { 0x00000000, 0x00600000, 0x2bb }, | ||
7715 | { 0x00000000, 0x00600000, 0x2a3 }, | ||
7716 | { 0x93800000, 0x00204411, 0x000 }, | ||
7717 | { 0x00000000, 0x00204808, 0x000 }, | ||
7718 | { 0x00000000, 0x002f022f, 0x000 }, | ||
7719 | { 0x00000000, 0x0ae00000, 0x232 }, | ||
7720 | { 0x00000000, 0x00600000, 0x13a }, | ||
7721 | { 0x00000000, 0x00400000, 0x236 }, | ||
7722 | { 0x95000000, 0x00204411, 0x000 }, | ||
7723 | { 0x00000000, 0x002f022f, 0x000 }, | ||
7724 | { 0x00000000, 0x0ce00000, 0x236 }, | ||
7725 | { 0x00000000, 0xc0404800, 0x233 }, | ||
7726 | { 0x92000000, 0x00204411, 0x000 }, | ||
7727 | { 0x00000000, 0xc0204800, 0x000 }, | ||
7728 | { 0x00002256, 0x00204411, 0x000 }, | ||
7729 | { 0x00000016, 0x00204811, 0x000 }, | ||
7730 | { 0x0000225c, 0x00204411, 0x000 }, | ||
7731 | { 0x00000003, 0x00204811, 0x000 }, | ||
7732 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
7733 | { 0x00000001, 0x00204811, 0x000 }, | ||
7734 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
7735 | { 0x00000000, 0x00600411, 0x2fb }, | ||
7736 | { 0x00000000, 0xc0400400, 0x001 }, | ||
7737 | { 0x00000000, 0x00600000, 0x62e }, | ||
7738 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
7739 | { 0x00000000, 0xc0204800, 0x000 }, | ||
7740 | { 0x00000000, 0xc0404800, 0x000 }, | ||
7741 | { 0x00000000, 0x00600000, 0x00b }, | ||
7742 | { 0x00000018, 0x40210a20, 0x000 }, | ||
7743 | { 0x00000003, 0x002f0222, 0x000 }, | ||
7744 | { 0x00000000, 0x0ae00000, 0x24c }, | ||
7745 | { 0x00000014, 0x0020222d, 0x000 }, | ||
7746 | { 0x00080101, 0x00292228, 0x000 }, | ||
7747 | { 0x00000014, 0x00203628, 0x000 }, | ||
7748 | { 0x0000a30c, 0x00204411, 0x000 }, | ||
7749 | { 0x00000000, 0xc0204800, 0x000 }, | ||
7750 | { 0x00000000, 0xc0204800, 0x000 }, | ||
7751 | { 0x00000000, 0xc0404800, 0x251 }, | ||
7752 | { 0x00000000, 0x00600000, 0x00b }, | ||
7753 | { 0x00000010, 0x00600411, 0x315 }, | ||
7754 | { 0x3f800000, 0x00200411, 0x000 }, | ||
7755 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
7756 | { 0x0000225c, 0x00204411, 0x000 }, | ||
7757 | { 0x00000003, 0x00204811, 0x000 }, | ||
7758 | { 0x00000000, 0x00600000, 0x27c }, | ||
7759 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
7760 | { 0x00000001, 0x00211e27, 0x000 }, | ||
7761 | { 0x00000000, 0x14e00000, 0x26a }, | ||
7762 | { 0x00000012, 0x00201e2d, 0x000 }, | ||
7763 | { 0x0000ffff, 0x00281e27, 0x000 }, | ||
7764 | { 0x00000000, 0x00341c27, 0x000 }, | ||
7765 | { 0x00000000, 0x12c00000, 0x25f }, | ||
7766 | { 0x00000000, 0x00201c11, 0x000 }, | ||
7767 | { 0x00000000, 0x002f00e5, 0x000 }, | ||
7768 | { 0x00000000, 0x08c00000, 0x262 }, | ||
7769 | { 0x00000000, 0x00201407, 0x000 }, | ||
7770 | { 0x00000012, 0x00201e2d, 0x000 }, | ||
7771 | { 0x00000010, 0x00211e27, 0x000 }, | ||
7772 | { 0x00000000, 0x00341c47, 0x000 }, | ||
7773 | { 0x00000000, 0x12c00000, 0x267 }, | ||
7774 | { 0x00000000, 0x00201c11, 0x000 }, | ||
7775 | { 0x00000000, 0x002f00e6, 0x000 }, | ||
7776 | { 0x00000000, 0x08c00000, 0x26a }, | ||
7777 | { 0x00000000, 0x00201807, 0x000 }, | ||
7778 | { 0x00000000, 0x00600000, 0x2c1 }, | ||
7779 | { 0x00002256, 0x00204411, 0x000 }, | ||
7780 | { 0x00000000, 0x00342023, 0x000 }, | ||
7781 | { 0x00000000, 0x12c00000, 0x272 }, | ||
7782 | { 0x00000000, 0x00342044, 0x000 }, | ||
7783 | { 0x00000000, 0x12c00000, 0x271 }, | ||
7784 | { 0x00000016, 0x00404811, 0x276 }, | ||
7785 | { 0x00000018, 0x00404811, 0x276 }, | ||
7786 | { 0x00000000, 0x00342044, 0x000 }, | ||
7787 | { 0x00000000, 0x12c00000, 0x275 }, | ||
7788 | { 0x00000017, 0x00404811, 0x276 }, | ||
7789 | { 0x00000019, 0x00204811, 0x000 }, | ||
7790 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
7791 | { 0x00000001, 0x00204811, 0x000 }, | ||
7792 | { 0x0001a1fd, 0x00604411, 0x2e9 }, | ||
7793 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
7794 | { 0x00000000, 0x0cc00000, 0x256 }, | ||
7795 | { 0x00000000, 0xc0400400, 0x001 }, | ||
7796 | { 0x00000010, 0x40210620, 0x000 }, | ||
7797 | { 0x0000ffff, 0xc0280a20, 0x000 }, | ||
7798 | { 0x00000010, 0x40210e20, 0x000 }, | ||
7799 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
7800 | { 0x00000010, 0x40211620, 0x000 }, | ||
7801 | { 0x0000ffff, 0xc0881a20, 0x000 }, | ||
7802 | { 0x81000000, 0x00204411, 0x000 }, | ||
7803 | { 0x00000001, 0x00204811, 0x000 }, | ||
7804 | { 0x00042004, 0x00604411, 0x68a }, | ||
7805 | { 0x00000000, 0x00600000, 0x62e }, | ||
7806 | { 0x00000000, 0xc0600000, 0x2a3 }, | ||
7807 | { 0x00000005, 0x00200a2d, 0x000 }, | ||
7808 | { 0x00000008, 0x00220a22, 0x000 }, | ||
7809 | { 0x0000002b, 0x00201a2d, 0x000 }, | ||
7810 | { 0x0000001c, 0x00201e2d, 0x000 }, | ||
7811 | { 0x00007000, 0x00281e27, 0x000 }, | ||
7812 | { 0x00000000, 0x00311ce6, 0x000 }, | ||
7813 | { 0x0000002a, 0x00201a2d, 0x000 }, | ||
7814 | { 0x0000000c, 0x00221a26, 0x000 }, | ||
7815 | { 0x00000000, 0x002f00e6, 0x000 }, | ||
7816 | { 0x00000000, 0x06e00000, 0x292 }, | ||
7817 | { 0x00000000, 0x00201c11, 0x000 }, | ||
7818 | { 0x00000000, 0x00200c11, 0x000 }, | ||
7819 | { 0x0000002b, 0x00203623, 0x000 }, | ||
7820 | { 0x00000010, 0x00201811, 0x000 }, | ||
7821 | { 0x00000000, 0x00691ce2, 0x12f }, | ||
7822 | { 0x93800000, 0x00204411, 0x000 }, | ||
7823 | { 0x00000000, 0x00204807, 0x000 }, | ||
7824 | { 0x95000000, 0x00204411, 0x000 }, | ||
7825 | { 0x00000000, 0x002f022f, 0x000 }, | ||
7826 | { 0x00000000, 0x0ce00000, 0x29d }, | ||
7827 | { 0x00000001, 0x00333e2f, 0x000 }, | ||
7828 | { 0x00000000, 0xd9004800, 0x000 }, | ||
7829 | { 0x92000000, 0x00204411, 0x000 }, | ||
7830 | { 0x00000000, 0xc0204800, 0x000 }, | ||
7831 | { 0x0000001c, 0x00403627, 0x000 }, | ||
7832 | { 0x0000000c, 0xc0220a20, 0x000 }, | ||
7833 | { 0x00000029, 0x00203622, 0x000 }, | ||
7834 | { 0x00000028, 0xc0403620, 0x000 }, | ||
7835 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
7836 | { 0x00000009, 0x00204811, 0x000 }, | ||
7837 | { 0xa1000000, 0x00204411, 0x000 }, | ||
7838 | { 0x00000001, 0x00804811, 0x000 }, | ||
7839 | { 0x00000021, 0x00201e2d, 0x000 }, | ||
7840 | { 0x00000000, 0x002c1ce3, 0x000 }, | ||
7841 | { 0x00000021, 0x00203627, 0x000 }, | ||
7842 | { 0x00000022, 0x00201e2d, 0x000 }, | ||
7843 | { 0x00000000, 0x002c1ce4, 0x000 }, | ||
7844 | { 0x00000022, 0x00203627, 0x000 }, | ||
7845 | { 0x00000023, 0x00201e2d, 0x000 }, | ||
7846 | { 0x00000000, 0x003120a3, 0x000 }, | ||
7847 | { 0x00000000, 0x002d1d07, 0x000 }, | ||
7848 | { 0x00000023, 0x00203627, 0x000 }, | ||
7849 | { 0x00000024, 0x00201e2d, 0x000 }, | ||
7850 | { 0x00000000, 0x003120c4, 0x000 }, | ||
7851 | { 0x00000000, 0x002d1d07, 0x000 }, | ||
7852 | { 0x00000024, 0x00803627, 0x000 }, | ||
7853 | { 0x00000021, 0x00203623, 0x000 }, | ||
7854 | { 0x00000022, 0x00203624, 0x000 }, | ||
7855 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
7856 | { 0x00000023, 0x00203627, 0x000 }, | ||
7857 | { 0x00000000, 0x00311cc4, 0x000 }, | ||
7858 | { 0x00000024, 0x00803627, 0x000 }, | ||
7859 | { 0x0000001a, 0x00203627, 0x000 }, | ||
7860 | { 0x0000001b, 0x00203628, 0x000 }, | ||
7861 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
7862 | { 0x00000002, 0x00210227, 0x000 }, | ||
7863 | { 0x00000000, 0x14c00000, 0x2dc }, | ||
7864 | { 0x00000000, 0x00400000, 0x2d9 }, | ||
7865 | { 0x0000001a, 0x00203627, 0x000 }, | ||
7866 | { 0x0000001b, 0x00203628, 0x000 }, | ||
7867 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
7868 | { 0x00000002, 0x00210227, 0x000 }, | ||
7869 | { 0x00000000, 0x14e00000, 0x2d9 }, | ||
7870 | { 0x00000003, 0x00210227, 0x000 }, | ||
7871 | { 0x00000000, 0x14e00000, 0x2dc }, | ||
7872 | { 0x00000023, 0x00201e2d, 0x000 }, | ||
7873 | { 0x00000000, 0x002e00e1, 0x000 }, | ||
7874 | { 0x00000000, 0x02c00000, 0x2dc }, | ||
7875 | { 0x00000021, 0x00201e2d, 0x000 }, | ||
7876 | { 0x00000000, 0x003120a1, 0x000 }, | ||
7877 | { 0x00000000, 0x002e00e8, 0x000 }, | ||
7878 | { 0x00000000, 0x06c00000, 0x2dc }, | ||
7879 | { 0x00000024, 0x00201e2d, 0x000 }, | ||
7880 | { 0x00000000, 0x002e00e2, 0x000 }, | ||
7881 | { 0x00000000, 0x02c00000, 0x2dc }, | ||
7882 | { 0x00000022, 0x00201e2d, 0x000 }, | ||
7883 | { 0x00000000, 0x003120c2, 0x000 }, | ||
7884 | { 0x00000000, 0x002e00e8, 0x000 }, | ||
7885 | { 0x00000000, 0x06c00000, 0x2dc }, | ||
7886 | { 0x00000000, 0x00600000, 0x665 }, | ||
7887 | { 0x00000000, 0x00600000, 0x2b5 }, | ||
7888 | { 0x00000000, 0x00400000, 0x2de }, | ||
7889 | { 0x00000000, 0x00600000, 0x2b5 }, | ||
7890 | { 0x00000000, 0x00600000, 0x65c }, | ||
7891 | { 0x00000000, 0x00400000, 0x2de }, | ||
7892 | { 0x00000000, 0x00600000, 0x2a7 }, | ||
7893 | { 0x00000000, 0x00400000, 0x2de }, | ||
7894 | { 0x0000001a, 0x00201e2d, 0x000 }, | ||
7895 | { 0x0000001b, 0x0080222d, 0x000 }, | ||
7896 | { 0x00000010, 0x00221e23, 0x000 }, | ||
7897 | { 0x00000000, 0x00294887, 0x000 }, | ||
7898 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
7899 | { 0x00000010, 0x00221e27, 0x000 }, | ||
7900 | { 0x00000000, 0x00294887, 0x000 }, | ||
7901 | { 0x00000010, 0x00221e23, 0x000 }, | ||
7902 | { 0x00000000, 0x003120c4, 0x000 }, | ||
7903 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
7904 | { 0x00000000, 0x00894907, 0x000 }, | ||
7905 | { 0x00000010, 0x00221e23, 0x000 }, | ||
7906 | { 0x00000000, 0x00294887, 0x000 }, | ||
7907 | { 0x00000010, 0x00221e21, 0x000 }, | ||
7908 | { 0x00000000, 0x00294847, 0x000 }, | ||
7909 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
7910 | { 0x00000010, 0x00221e27, 0x000 }, | ||
7911 | { 0x00000000, 0x00294887, 0x000 }, | ||
7912 | { 0x00000000, 0x00311ca1, 0x000 }, | ||
7913 | { 0x00000010, 0x00221e27, 0x000 }, | ||
7914 | { 0x00000000, 0x00294847, 0x000 }, | ||
7915 | { 0x00000010, 0x00221e23, 0x000 }, | ||
7916 | { 0x00000000, 0x003120c4, 0x000 }, | ||
7917 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
7918 | { 0x00000000, 0x00294907, 0x000 }, | ||
7919 | { 0x00000010, 0x00221e21, 0x000 }, | ||
7920 | { 0x00000000, 0x003120c2, 0x000 }, | ||
7921 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
7922 | { 0x00000000, 0x00894907, 0x000 }, | ||
7923 | { 0x00000010, 0x00221e23, 0x000 }, | ||
7924 | { 0x00000000, 0x00294887, 0x000 }, | ||
7925 | { 0x00000001, 0x00220a21, 0x000 }, | ||
7926 | { 0x00000000, 0x003308a2, 0x000 }, | ||
7927 | { 0x00000010, 0x00221e22, 0x000 }, | ||
7928 | { 0x00000010, 0x00212222, 0x000 }, | ||
7929 | { 0x00000000, 0x00294907, 0x000 }, | ||
7930 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
7931 | { 0x00000010, 0x00221e27, 0x000 }, | ||
7932 | { 0x00000000, 0x00294887, 0x000 }, | ||
7933 | { 0x00000001, 0x00220a21, 0x000 }, | ||
7934 | { 0x00000000, 0x003008a2, 0x000 }, | ||
7935 | { 0x00000010, 0x00221e22, 0x000 }, | ||
7936 | { 0x00000010, 0x00212222, 0x000 }, | ||
7937 | { 0x00000000, 0x00294907, 0x000 }, | ||
7938 | { 0x00000010, 0x00221e23, 0x000 }, | ||
7939 | { 0x00000000, 0x003120c4, 0x000 }, | ||
7940 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
7941 | { 0x00000000, 0x00294907, 0x000 }, | ||
7942 | { 0x00000000, 0x003808c5, 0x000 }, | ||
7943 | { 0x00000000, 0x00300841, 0x000 }, | ||
7944 | { 0x00000001, 0x00220a22, 0x000 }, | ||
7945 | { 0x00000000, 0x003308a2, 0x000 }, | ||
7946 | { 0x00000010, 0x00221e22, 0x000 }, | ||
7947 | { 0x00000010, 0x00212222, 0x000 }, | ||
7948 | { 0x00000000, 0x00894907, 0x000 }, | ||
7949 | { 0x00000017, 0x0020222d, 0x000 }, | ||
7950 | { 0x00000000, 0x14c00000, 0x318 }, | ||
7951 | { 0xffffffef, 0x00280621, 0x000 }, | ||
7952 | { 0x00000014, 0x0020222d, 0x000 }, | ||
7953 | { 0x0000f8e0, 0x00204411, 0x000 }, | ||
7954 | { 0x00000000, 0x00294901, 0x000 }, | ||
7955 | { 0x00000000, 0x00894901, 0x000 }, | ||
7956 | { 0x00000000, 0x00204811, 0x000 }, | ||
7957 | { 0x00000000, 0x00204811, 0x000 }, | ||
7958 | { 0x060a0200, 0x00804811, 0x000 }, | ||
7959 | { 0x00000000, 0xc0200000, 0x000 }, | ||
7960 | { 0x97000000, 0xc0204411, 0x000 }, | ||
7961 | { 0x00000000, 0xc0204811, 0x000 }, | ||
7962 | { 0x8a000000, 0x00204411, 0x000 }, | ||
7963 | { 0x00000000, 0x00204811, 0x000 }, | ||
7964 | { 0x0000225c, 0x00204411, 0x000 }, | ||
7965 | { 0x00000000, 0xc0204800, 0x000 }, | ||
7966 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
7967 | { 0x00000000, 0xc0204800, 0x000 }, | ||
7968 | { 0x00000000, 0xc0200400, 0x000 }, | ||
7969 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
7970 | { 0x97000000, 0x00204411, 0x000 }, | ||
7971 | { 0x00000000, 0x00204811, 0x000 }, | ||
7972 | { 0x8a000000, 0x00204411, 0x000 }, | ||
7973 | { 0x00000000, 0x00204811, 0x000 }, | ||
7974 | { 0x0000225c, 0x00204411, 0x000 }, | ||
7975 | { 0x00000000, 0xc0204800, 0x000 }, | ||
7976 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
7977 | { 0x00000000, 0xc0204800, 0x000 }, | ||
7978 | { 0x00000000, 0xc0200400, 0x000 }, | ||
7979 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
7980 | { 0x97000000, 0x00204411, 0x000 }, | ||
7981 | { 0x00000000, 0x00204811, 0x000 }, | ||
7982 | { 0x8a000000, 0x00204411, 0x000 }, | ||
7983 | { 0x00000000, 0x00204811, 0x000 }, | ||
7984 | { 0x0000225c, 0x00204411, 0x000 }, | ||
7985 | { 0x00000000, 0xc0204800, 0x000 }, | ||
7986 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
7987 | { 0x00000000, 0xc0204800, 0x000 }, | ||
7988 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
7989 | { 0x00000000, 0xd9004800, 0x000 }, | ||
7990 | { 0x00000000, 0xc0200400, 0x000 }, | ||
7991 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
7992 | { 0x00002257, 0x00204411, 0x000 }, | ||
7993 | { 0x00000003, 0xc0484a20, 0x000 }, | ||
7994 | { 0x0000225d, 0x00204411, 0x000 }, | ||
7995 | { 0x00000000, 0xc0404800, 0x000 }, | ||
7996 | { 0x00000000, 0x00600000, 0x642 }, | ||
7997 | { 0x00000000, 0xc0200800, 0x000 }, | ||
7998 | { 0x0000225c, 0x00204411, 0x000 }, | ||
7999 | { 0x00000003, 0x00384a22, 0x000 }, | ||
8000 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
8001 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8002 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
8003 | { 0x00000000, 0x002f0222, 0x000 }, | ||
8004 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
8005 | { 0x00000000, 0x40204800, 0x000 }, | ||
8006 | { 0x00000001, 0x40304a20, 0x000 }, | ||
8007 | { 0x00000002, 0xc0304a20, 0x000 }, | ||
8008 | { 0x00000001, 0x00530a22, 0x34b }, | ||
8009 | { 0x0000003f, 0xc0280a20, 0x000 }, | ||
8010 | { 0x81000000, 0x00204411, 0x000 }, | ||
8011 | { 0x00000001, 0x00204811, 0x000 }, | ||
8012 | { 0x000021f8, 0x00204411, 0x000 }, | ||
8013 | { 0x00000018, 0x00204811, 0x000 }, | ||
8014 | { 0x000421f9, 0x00604411, 0x68a }, | ||
8015 | { 0x00000011, 0x00210230, 0x000 }, | ||
8016 | { 0x00000000, 0x14e00000, 0x354 }, | ||
8017 | { 0x00000014, 0x002f0222, 0x000 }, | ||
8018 | { 0x00000000, 0x0cc00000, 0x364 }, | ||
8019 | { 0x00002010, 0x00204411, 0x000 }, | ||
8020 | { 0x00008000, 0x00204811, 0x000 }, | ||
8021 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
8022 | { 0x00000000, 0x00604802, 0x36e }, | ||
8023 | { 0x00002100, 0x00204411, 0x000 }, | ||
8024 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8025 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8026 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8027 | { 0x00000000, 0xc0404800, 0x000 }, | ||
8028 | { 0x00000004, 0x002f0222, 0x000 }, | ||
8029 | { 0x00000000, 0x0cc00000, 0x36a }, | ||
8030 | { 0x00002010, 0x00204411, 0x000 }, | ||
8031 | { 0x00008000, 0x00204811, 0x000 }, | ||
8032 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
8033 | { 0x00000000, 0x00404802, 0x35f }, | ||
8034 | { 0x00000028, 0x002f0222, 0x000 }, | ||
8035 | { 0x00000000, 0x0cc00000, 0x5bd }, | ||
8036 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
8037 | { 0x00000000, 0x00404802, 0x35f }, | ||
8038 | { 0x0000002c, 0x00203626, 0x000 }, | ||
8039 | { 0x00000049, 0x00201811, 0x000 }, | ||
8040 | { 0x0000003f, 0x00204811, 0x000 }, | ||
8041 | { 0x00000001, 0x00331a26, 0x000 }, | ||
8042 | { 0x00000000, 0x002f0226, 0x000 }, | ||
8043 | { 0x00000000, 0x0cc00000, 0x370 }, | ||
8044 | { 0x0000002c, 0x00801a2d, 0x000 }, | ||
8045 | { 0x0000003f, 0xc0280a20, 0x000 }, | ||
8046 | { 0x00000015, 0x002f0222, 0x000 }, | ||
8047 | { 0x00000000, 0x0ce00000, 0x386 }, | ||
8048 | { 0x00000006, 0x002f0222, 0x000 }, | ||
8049 | { 0x00000000, 0x0ce00000, 0x3b1 }, | ||
8050 | { 0x00000016, 0x002f0222, 0x000 }, | ||
8051 | { 0x00000000, 0x0ce00000, 0x3b5 }, | ||
8052 | { 0x00000020, 0x002f0222, 0x000 }, | ||
8053 | { 0x00000000, 0x0ce00000, 0x39c }, | ||
8054 | { 0x0000000f, 0x002f0222, 0x000 }, | ||
8055 | { 0x00000000, 0x0ce00000, 0x3a8 }, | ||
8056 | { 0x00000010, 0x002f0222, 0x000 }, | ||
8057 | { 0x00000000, 0x0ce00000, 0x3a8 }, | ||
8058 | { 0x0000001e, 0x002f0222, 0x000 }, | ||
8059 | { 0x00000000, 0x0ce00000, 0x390 }, | ||
8060 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
8061 | { 0x00000000, 0x00404802, 0x000 }, | ||
8062 | { 0x08000000, 0x00290a22, 0x000 }, | ||
8063 | { 0x00000003, 0x40210e20, 0x000 }, | ||
8064 | { 0x0000000c, 0xc0211220, 0x000 }, | ||
8065 | { 0x00080000, 0x00281224, 0x000 }, | ||
8066 | { 0x00000014, 0xc0221620, 0x000 }, | ||
8067 | { 0x00000000, 0x002914a4, 0x000 }, | ||
8068 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
8069 | { 0x00000000, 0x002948a2, 0x000 }, | ||
8070 | { 0x0000a1fe, 0x00204411, 0x000 }, | ||
8071 | { 0x00000000, 0x00404803, 0x000 }, | ||
8072 | { 0x81000000, 0x00204411, 0x000 }, | ||
8073 | { 0x00000001, 0x00204811, 0x000 }, | ||
8074 | { 0x000021f8, 0x00204411, 0x000 }, | ||
8075 | { 0x00000016, 0x00204811, 0x000 }, | ||
8076 | { 0x000421f9, 0x00604411, 0x68a }, | ||
8077 | { 0x00000015, 0x00210230, 0x000 }, | ||
8078 | { 0x00000000, 0x14e00000, 0x392 }, | ||
8079 | { 0x0000210e, 0x00204411, 0x000 }, | ||
8080 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8081 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8082 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
8083 | { 0x00000000, 0x00404802, 0x000 }, | ||
8084 | { 0x81000000, 0x00204411, 0x000 }, | ||
8085 | { 0x00000001, 0x00204811, 0x000 }, | ||
8086 | { 0x000021f8, 0x00204411, 0x000 }, | ||
8087 | { 0x00000017, 0x00204811, 0x000 }, | ||
8088 | { 0x000421f9, 0x00604411, 0x68a }, | ||
8089 | { 0x00000003, 0x00210230, 0x000 }, | ||
8090 | { 0x00000000, 0x14e00000, 0x39e }, | ||
8091 | { 0x00002108, 0x00204411, 0x000 }, | ||
8092 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8093 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8094 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
8095 | { 0x00000000, 0x00404802, 0x000 }, | ||
8096 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
8097 | { 0x00000000, 0x00204802, 0x000 }, | ||
8098 | { 0x80000000, 0x00204411, 0x000 }, | ||
8099 | { 0x00000000, 0x00204811, 0x000 }, | ||
8100 | { 0x81000000, 0x00204411, 0x000 }, | ||
8101 | { 0x00000010, 0x00204811, 0x000 }, | ||
8102 | { 0x00000000, 0x00200010, 0x000 }, | ||
8103 | { 0x00000000, 0x14c00000, 0x3ae }, | ||
8104 | { 0x00000000, 0x00400000, 0x000 }, | ||
8105 | { 0x00002010, 0x00204411, 0x000 }, | ||
8106 | { 0x00008000, 0x00204811, 0x000 }, | ||
8107 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
8108 | { 0x00000006, 0x00404811, 0x000 }, | ||
8109 | { 0x00002010, 0x00204411, 0x000 }, | ||
8110 | { 0x00008000, 0x00204811, 0x000 }, | ||
8111 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
8112 | { 0x00000016, 0x00604811, 0x36e }, | ||
8113 | { 0x00000000, 0x00400000, 0x000 }, | ||
8114 | { 0x00000000, 0xc0200800, 0x000 }, | ||
8115 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
8116 | { 0x0000001d, 0x00210223, 0x000 }, | ||
8117 | { 0x00000000, 0x14e00000, 0x3ce }, | ||
8118 | { 0x81000000, 0x00204411, 0x000 }, | ||
8119 | { 0x00000001, 0x00204811, 0x000 }, | ||
8120 | { 0x000021f8, 0x00204411, 0x000 }, | ||
8121 | { 0x00000018, 0x00204811, 0x000 }, | ||
8122 | { 0x000421f9, 0x00604411, 0x68a }, | ||
8123 | { 0x00000011, 0x00210230, 0x000 }, | ||
8124 | { 0x00000000, 0x14e00000, 0x3c0 }, | ||
8125 | { 0x00002100, 0x00204411, 0x000 }, | ||
8126 | { 0x00000000, 0x00204802, 0x000 }, | ||
8127 | { 0x00000000, 0x00204803, 0x000 }, | ||
8128 | { 0xbabecafe, 0x00204811, 0x000 }, | ||
8129 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
8130 | { 0x00002010, 0x00204411, 0x000 }, | ||
8131 | { 0x00008000, 0x00204811, 0x000 }, | ||
8132 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
8133 | { 0x00000004, 0x00404811, 0x000 }, | ||
8134 | { 0x00002170, 0x00204411, 0x000 }, | ||
8135 | { 0x00000000, 0x00204802, 0x000 }, | ||
8136 | { 0x00000000, 0x00204803, 0x000 }, | ||
8137 | { 0x81000000, 0x00204411, 0x000 }, | ||
8138 | { 0x0000000a, 0x00204811, 0x000 }, | ||
8139 | { 0x00000000, 0x00200010, 0x000 }, | ||
8140 | { 0x00000000, 0x14c00000, 0x3d3 }, | ||
8141 | { 0x8c000000, 0x00204411, 0x000 }, | ||
8142 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
8143 | { 0x81000000, 0x00204411, 0x000 }, | ||
8144 | { 0x00000001, 0x00204811, 0x000 }, | ||
8145 | { 0x00003fff, 0x40280a20, 0x000 }, | ||
8146 | { 0x80000000, 0x40280e20, 0x000 }, | ||
8147 | { 0x40000000, 0xc0281220, 0x000 }, | ||
8148 | { 0x00040000, 0x00694622, 0x68a }, | ||
8149 | { 0x00000000, 0x00201410, 0x000 }, | ||
8150 | { 0x00000000, 0x002f0223, 0x000 }, | ||
8151 | { 0x00000000, 0x0cc00000, 0x3e1 }, | ||
8152 | { 0x00000000, 0xc0401800, 0x3e4 }, | ||
8153 | { 0x00003fff, 0xc0281a20, 0x000 }, | ||
8154 | { 0x00040000, 0x00694626, 0x68a }, | ||
8155 | { 0x00000000, 0x00201810, 0x000 }, | ||
8156 | { 0x00000000, 0x002f0224, 0x000 }, | ||
8157 | { 0x00000000, 0x0cc00000, 0x3e7 }, | ||
8158 | { 0x00000000, 0xc0401c00, 0x3ea }, | ||
8159 | { 0x00003fff, 0xc0281e20, 0x000 }, | ||
8160 | { 0x00040000, 0x00694627, 0x68a }, | ||
8161 | { 0x00000000, 0x00201c10, 0x000 }, | ||
8162 | { 0x00000000, 0x00204402, 0x000 }, | ||
8163 | { 0x00000000, 0x002820c5, 0x000 }, | ||
8164 | { 0x00000000, 0x004948e8, 0x000 }, | ||
8165 | { 0xa5800000, 0x00200811, 0x000 }, | ||
8166 | { 0x00002000, 0x00200c11, 0x000 }, | ||
8167 | { 0x83000000, 0x00604411, 0x412 }, | ||
8168 | { 0x00000000, 0x00204402, 0x000 }, | ||
8169 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8170 | { 0x00000000, 0x40204800, 0x000 }, | ||
8171 | { 0x0000001f, 0xc0210220, 0x000 }, | ||
8172 | { 0x00000000, 0x14c00000, 0x3f7 }, | ||
8173 | { 0x00002010, 0x00204411, 0x000 }, | ||
8174 | { 0x00008000, 0x00204811, 0x000 }, | ||
8175 | { 0x0000ffff, 0xc0481220, 0x3ff }, | ||
8176 | { 0xa7800000, 0x00200811, 0x000 }, | ||
8177 | { 0x0000a000, 0x00200c11, 0x000 }, | ||
8178 | { 0x83000000, 0x00604411, 0x412 }, | ||
8179 | { 0x00000000, 0x00204402, 0x000 }, | ||
8180 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8181 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8182 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
8183 | { 0x83000000, 0x00204411, 0x000 }, | ||
8184 | { 0x00000000, 0x00304883, 0x000 }, | ||
8185 | { 0x84000000, 0x00204411, 0x000 }, | ||
8186 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8187 | { 0x00000000, 0x1d000000, 0x000 }, | ||
8188 | { 0x83000000, 0x00604411, 0x412 }, | ||
8189 | { 0x00000000, 0xc0400400, 0x001 }, | ||
8190 | { 0xa9800000, 0x00200811, 0x000 }, | ||
8191 | { 0x0000c000, 0x00400c11, 0x3fa }, | ||
8192 | { 0xab800000, 0x00200811, 0x000 }, | ||
8193 | { 0x0000f8e0, 0x00400c11, 0x3fa }, | ||
8194 | { 0xad800000, 0x00200811, 0x000 }, | ||
8195 | { 0x0000f880, 0x00400c11, 0x3fa }, | ||
8196 | { 0xb3800000, 0x00200811, 0x000 }, | ||
8197 | { 0x0000f3fc, 0x00400c11, 0x3fa }, | ||
8198 | { 0xaf800000, 0x00200811, 0x000 }, | ||
8199 | { 0x0000e000, 0x00400c11, 0x3fa }, | ||
8200 | { 0xb1800000, 0x00200811, 0x000 }, | ||
8201 | { 0x0000f000, 0x00400c11, 0x3fa }, | ||
8202 | { 0x83000000, 0x00204411, 0x000 }, | ||
8203 | { 0x00002148, 0x00204811, 0x000 }, | ||
8204 | { 0x84000000, 0x00204411, 0x000 }, | ||
8205 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8206 | { 0x00000000, 0x1d000000, 0x000 }, | ||
8207 | { 0x00000000, 0x00800000, 0x000 }, | ||
8208 | { 0x01182000, 0xc0304620, 0x000 }, | ||
8209 | { 0x00000000, 0xd9004800, 0x000 }, | ||
8210 | { 0x00000000, 0xc0200400, 0x000 }, | ||
8211 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
8212 | { 0x0218a000, 0xc0304620, 0x000 }, | ||
8213 | { 0x00000000, 0xd9004800, 0x000 }, | ||
8214 | { 0x00000000, 0xc0200400, 0x000 }, | ||
8215 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
8216 | { 0x0318c000, 0xc0304620, 0x000 }, | ||
8217 | { 0x00000000, 0xd9004800, 0x000 }, | ||
8218 | { 0x00000000, 0xc0200400, 0x000 }, | ||
8219 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
8220 | { 0x0418f8e0, 0xc0304620, 0x000 }, | ||
8221 | { 0x00000000, 0xd9004800, 0x000 }, | ||
8222 | { 0x00000000, 0xc0200400, 0x000 }, | ||
8223 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
8224 | { 0x0518f880, 0xc0304620, 0x000 }, | ||
8225 | { 0x00000000, 0xd9004800, 0x000 }, | ||
8226 | { 0x00000000, 0xc0200400, 0x000 }, | ||
8227 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
8228 | { 0x0618e000, 0xc0304620, 0x000 }, | ||
8229 | { 0x00000000, 0xd9004800, 0x000 }, | ||
8230 | { 0x00000000, 0xc0200400, 0x000 }, | ||
8231 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
8232 | { 0x0718f000, 0xc0304620, 0x000 }, | ||
8233 | { 0x00000000, 0xd9004800, 0x000 }, | ||
8234 | { 0x00000000, 0xc0200400, 0x000 }, | ||
8235 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
8236 | { 0x0818f3fc, 0xc0304620, 0x000 }, | ||
8237 | { 0x00000000, 0xd9004800, 0x000 }, | ||
8238 | { 0x00000000, 0xc0200400, 0x000 }, | ||
8239 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
8240 | { 0x00000030, 0x00200a2d, 0x000 }, | ||
8241 | { 0x00000000, 0xc0290c40, 0x000 }, | ||
8242 | { 0x00000030, 0x00203623, 0x000 }, | ||
8243 | { 0x00000000, 0xc0200400, 0x000 }, | ||
8244 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
8245 | { 0x86000000, 0x00204411, 0x000 }, | ||
8246 | { 0x00000000, 0x00404801, 0x000 }, | ||
8247 | { 0x85000000, 0xc0204411, 0x000 }, | ||
8248 | { 0x00000000, 0x00404801, 0x000 }, | ||
8249 | { 0x0000217c, 0x00204411, 0x000 }, | ||
8250 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8251 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8252 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8253 | { 0x81000000, 0x00204411, 0x000 }, | ||
8254 | { 0x00000001, 0x00204811, 0x000 }, | ||
8255 | { 0x00000000, 0xc0200800, 0x000 }, | ||
8256 | { 0x00000000, 0x17000000, 0x000 }, | ||
8257 | { 0x0004217f, 0x00604411, 0x68a }, | ||
8258 | { 0x0000001f, 0x00210230, 0x000 }, | ||
8259 | { 0x00000000, 0x14c00000, 0x000 }, | ||
8260 | { 0x00000000, 0x00404c02, 0x448 }, | ||
8261 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
8262 | { 0x00000000, 0xc0201000, 0x000 }, | ||
8263 | { 0x00000000, 0xc0201400, 0x000 }, | ||
8264 | { 0x00000000, 0xc0201800, 0x000 }, | ||
8265 | { 0x00000000, 0xc0201c00, 0x000 }, | ||
8266 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
8267 | { 0x00004500, 0x002f0222, 0x000 }, | ||
8268 | { 0x00000000, 0x0ce00000, 0x456 }, | ||
8269 | { 0x00000000, 0xc0202000, 0x000 }, | ||
8270 | { 0x00000000, 0x17000000, 0x000 }, | ||
8271 | { 0x00000010, 0x00280a23, 0x000 }, | ||
8272 | { 0x00000010, 0x002f0222, 0x000 }, | ||
8273 | { 0x00000000, 0x0ce00000, 0x45e }, | ||
8274 | { 0x81000000, 0x00204411, 0x000 }, | ||
8275 | { 0x00000001, 0x00204811, 0x000 }, | ||
8276 | { 0x00040000, 0x00694624, 0x68a }, | ||
8277 | { 0x00000000, 0x00400000, 0x463 }, | ||
8278 | { 0x81000000, 0x00204411, 0x000 }, | ||
8279 | { 0x00000000, 0x00204811, 0x000 }, | ||
8280 | { 0x0000216d, 0x00204411, 0x000 }, | ||
8281 | { 0x00000000, 0x00204804, 0x000 }, | ||
8282 | { 0x00000000, 0x00604805, 0x68f }, | ||
8283 | { 0x00000000, 0x002824f0, 0x000 }, | ||
8284 | { 0x00000007, 0x00280a23, 0x000 }, | ||
8285 | { 0x00000001, 0x002f0222, 0x000 }, | ||
8286 | { 0x00000000, 0x0ae00000, 0x46a }, | ||
8287 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
8288 | { 0x00000000, 0x04e00000, 0x483 }, | ||
8289 | { 0x00000000, 0x00400000, 0x490 }, | ||
8290 | { 0x00000002, 0x002f0222, 0x000 }, | ||
8291 | { 0x00000000, 0x0ae00000, 0x46f }, | ||
8292 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
8293 | { 0x00000000, 0x02e00000, 0x483 }, | ||
8294 | { 0x00000000, 0x00400000, 0x490 }, | ||
8295 | { 0x00000003, 0x002f0222, 0x000 }, | ||
8296 | { 0x00000000, 0x0ae00000, 0x474 }, | ||
8297 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
8298 | { 0x00000000, 0x0ce00000, 0x483 }, | ||
8299 | { 0x00000000, 0x00400000, 0x490 }, | ||
8300 | { 0x00000004, 0x002f0222, 0x000 }, | ||
8301 | { 0x00000000, 0x0ae00000, 0x479 }, | ||
8302 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
8303 | { 0x00000000, 0x0ae00000, 0x483 }, | ||
8304 | { 0x00000000, 0x00400000, 0x490 }, | ||
8305 | { 0x00000005, 0x002f0222, 0x000 }, | ||
8306 | { 0x00000000, 0x0ae00000, 0x47e }, | ||
8307 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
8308 | { 0x00000000, 0x06e00000, 0x483 }, | ||
8309 | { 0x00000000, 0x00400000, 0x490 }, | ||
8310 | { 0x00000006, 0x002f0222, 0x000 }, | ||
8311 | { 0x00000000, 0x0ae00000, 0x483 }, | ||
8312 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
8313 | { 0x00000000, 0x08e00000, 0x483 }, | ||
8314 | { 0x00000000, 0x00400000, 0x490 }, | ||
8315 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
8316 | { 0x00004500, 0x002f0222, 0x000 }, | ||
8317 | { 0x00000000, 0x0ae00000, 0x000 }, | ||
8318 | { 0x00000008, 0x00210a23, 0x000 }, | ||
8319 | { 0x00000000, 0x14c00000, 0x48d }, | ||
8320 | { 0x00002169, 0x00204411, 0x000 }, | ||
8321 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8322 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8323 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8324 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
8325 | { 0x00000000, 0xc0204400, 0x000 }, | ||
8326 | { 0x00000000, 0xc0200000, 0x000 }, | ||
8327 | { 0x00000000, 0xc0404800, 0x000 }, | ||
8328 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
8329 | { 0x00004500, 0x002f0222, 0x000 }, | ||
8330 | { 0x00000000, 0x0ae00000, 0x496 }, | ||
8331 | { 0x00000000, 0xc0200000, 0x000 }, | ||
8332 | { 0x00000000, 0xc0200000, 0x000 }, | ||
8333 | { 0x00000000, 0xc0400000, 0x000 }, | ||
8334 | { 0x00000000, 0x00404c08, 0x456 }, | ||
8335 | { 0x00000000, 0xc0200800, 0x000 }, | ||
8336 | { 0x00000010, 0x40210e20, 0x000 }, | ||
8337 | { 0x00000011, 0x40211220, 0x000 }, | ||
8338 | { 0x00000012, 0x40211620, 0x000 }, | ||
8339 | { 0x00002169, 0x00204411, 0x000 }, | ||
8340 | { 0x00000000, 0x00204802, 0x000 }, | ||
8341 | { 0x00000000, 0x00210225, 0x000 }, | ||
8342 | { 0x00000000, 0x14e00000, 0x4a0 }, | ||
8343 | { 0x00040000, 0xc0494a20, 0x4a1 }, | ||
8344 | { 0xfffbffff, 0xc0284a20, 0x000 }, | ||
8345 | { 0x00000000, 0x00210223, 0x000 }, | ||
8346 | { 0x00000000, 0x14e00000, 0x4ad }, | ||
8347 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8348 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8349 | { 0x00000000, 0x00210224, 0x000 }, | ||
8350 | { 0x00000000, 0x14c00000, 0x000 }, | ||
8351 | { 0x81000000, 0x00204411, 0x000 }, | ||
8352 | { 0x0000000c, 0x00204811, 0x000 }, | ||
8353 | { 0x00000000, 0x00200010, 0x000 }, | ||
8354 | { 0x00000000, 0x14c00000, 0x4a9 }, | ||
8355 | { 0xa0000000, 0x00204411, 0x000 }, | ||
8356 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
8357 | { 0x81000000, 0x00204411, 0x000 }, | ||
8358 | { 0x00000004, 0x00204811, 0x000 }, | ||
8359 | { 0x0000216b, 0x00204411, 0x000 }, | ||
8360 | { 0x00000000, 0xc0204810, 0x000 }, | ||
8361 | { 0x81000000, 0x00204411, 0x000 }, | ||
8362 | { 0x00000005, 0x00204811, 0x000 }, | ||
8363 | { 0x0000216c, 0x00204411, 0x000 }, | ||
8364 | { 0x00000000, 0xc0204810, 0x000 }, | ||
8365 | { 0x00000000, 0x002f0224, 0x000 }, | ||
8366 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
8367 | { 0x00000000, 0x00400000, 0x4a7 }, | ||
8368 | { 0x00000000, 0xc0210a20, 0x000 }, | ||
8369 | { 0x00000000, 0x14c00000, 0x4c0 }, | ||
8370 | { 0x81000000, 0x00204411, 0x000 }, | ||
8371 | { 0x00000000, 0x00204811, 0x000 }, | ||
8372 | { 0x0000216d, 0x00204411, 0x000 }, | ||
8373 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8374 | { 0x00000000, 0xc0604800, 0x68f }, | ||
8375 | { 0x00000000, 0x00400000, 0x4c4 }, | ||
8376 | { 0x81000000, 0x00204411, 0x000 }, | ||
8377 | { 0x00000001, 0x00204811, 0x000 }, | ||
8378 | { 0x00040000, 0xc0294620, 0x000 }, | ||
8379 | { 0x00000000, 0xc0600000, 0x68a }, | ||
8380 | { 0x00000001, 0x00210222, 0x000 }, | ||
8381 | { 0x00000000, 0x14c00000, 0x4cb }, | ||
8382 | { 0x00002169, 0x00204411, 0x000 }, | ||
8383 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8384 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8385 | { 0x00000000, 0x00204810, 0x000 }, | ||
8386 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
8387 | { 0x00000000, 0xc0204400, 0x000 }, | ||
8388 | { 0x00000000, 0xc0404810, 0x000 }, | ||
8389 | { 0x81000000, 0x00204411, 0x000 }, | ||
8390 | { 0x00000001, 0x00204811, 0x000 }, | ||
8391 | { 0x000021f8, 0x00204411, 0x000 }, | ||
8392 | { 0x0000000e, 0x00204811, 0x000 }, | ||
8393 | { 0x000421f9, 0x00604411, 0x68a }, | ||
8394 | { 0x00000000, 0x00210230, 0x000 }, | ||
8395 | { 0x00000000, 0x14c00000, 0x4cd }, | ||
8396 | { 0x00002180, 0x00204411, 0x000 }, | ||
8397 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8398 | { 0x00000000, 0xc0200000, 0x000 }, | ||
8399 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8400 | { 0x00000000, 0xc0200000, 0x000 }, | ||
8401 | { 0x00000000, 0xc0404800, 0x000 }, | ||
8402 | { 0x00000003, 0x00333e2f, 0x000 }, | ||
8403 | { 0x00000001, 0x00210221, 0x000 }, | ||
8404 | { 0x00000000, 0x14e00000, 0x4fd }, | ||
8405 | { 0x0000002c, 0x00200a2d, 0x000 }, | ||
8406 | { 0x00040000, 0x18e00c11, 0x4ec }, | ||
8407 | { 0x00000001, 0x00333e2f, 0x000 }, | ||
8408 | { 0x00002169, 0x00204411, 0x000 }, | ||
8409 | { 0x00000000, 0x00204802, 0x000 }, | ||
8410 | { 0x00000000, 0x00204803, 0x000 }, | ||
8411 | { 0x00000008, 0x00300a22, 0x000 }, | ||
8412 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8413 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8414 | { 0x00002169, 0x00204411, 0x000 }, | ||
8415 | { 0x00000000, 0x00204802, 0x000 }, | ||
8416 | { 0x00000000, 0x00204803, 0x000 }, | ||
8417 | { 0x00000008, 0x00300a22, 0x000 }, | ||
8418 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8419 | { 0x00000000, 0xd8c04800, 0x4e0 }, | ||
8420 | { 0x00002169, 0x00204411, 0x000 }, | ||
8421 | { 0x00000000, 0x00204802, 0x000 }, | ||
8422 | { 0x00000000, 0x00204803, 0x000 }, | ||
8423 | { 0x00000008, 0x00300a22, 0x000 }, | ||
8424 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8425 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8426 | { 0x0000002d, 0x0020122d, 0x000 }, | ||
8427 | { 0x00000000, 0x00290c83, 0x000 }, | ||
8428 | { 0x00002169, 0x00204411, 0x000 }, | ||
8429 | { 0x00000000, 0x00204802, 0x000 }, | ||
8430 | { 0x00000000, 0x00204803, 0x000 }, | ||
8431 | { 0x00000008, 0x00300a22, 0x000 }, | ||
8432 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8433 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8434 | { 0x00000011, 0x00210224, 0x000 }, | ||
8435 | { 0x00000000, 0x14c00000, 0x000 }, | ||
8436 | { 0x00000000, 0x00400000, 0x4a7 }, | ||
8437 | { 0x0000002c, 0xc0203620, 0x000 }, | ||
8438 | { 0x0000002d, 0xc0403620, 0x000 }, | ||
8439 | { 0x0000000f, 0x00210221, 0x000 }, | ||
8440 | { 0x00000000, 0x14c00000, 0x502 }, | ||
8441 | { 0x00000000, 0x00600000, 0x00b }, | ||
8442 | { 0x00000000, 0xd9000000, 0x000 }, | ||
8443 | { 0x00000000, 0xc0400400, 0x001 }, | ||
8444 | { 0xb5000000, 0x00204411, 0x000 }, | ||
8445 | { 0x00002000, 0x00204811, 0x000 }, | ||
8446 | { 0xb6000000, 0x00204411, 0x000 }, | ||
8447 | { 0x0000a000, 0x00204811, 0x000 }, | ||
8448 | { 0xb7000000, 0x00204411, 0x000 }, | ||
8449 | { 0x0000c000, 0x00204811, 0x000 }, | ||
8450 | { 0xb8000000, 0x00204411, 0x000 }, | ||
8451 | { 0x0000f8e0, 0x00204811, 0x000 }, | ||
8452 | { 0xb9000000, 0x00204411, 0x000 }, | ||
8453 | { 0x0000f880, 0x00204811, 0x000 }, | ||
8454 | { 0xba000000, 0x00204411, 0x000 }, | ||
8455 | { 0x0000e000, 0x00204811, 0x000 }, | ||
8456 | { 0xbb000000, 0x00204411, 0x000 }, | ||
8457 | { 0x0000f000, 0x00204811, 0x000 }, | ||
8458 | { 0xbc000000, 0x00204411, 0x000 }, | ||
8459 | { 0x0000f3fc, 0x00204811, 0x000 }, | ||
8460 | { 0x81000000, 0x00204411, 0x000 }, | ||
8461 | { 0x00000002, 0x00204811, 0x000 }, | ||
8462 | { 0x000000ff, 0x00280e30, 0x000 }, | ||
8463 | { 0x00000000, 0x002f0223, 0x000 }, | ||
8464 | { 0x00000000, 0x0cc00000, 0x516 }, | ||
8465 | { 0x00000000, 0xc0200800, 0x000 }, | ||
8466 | { 0x00000000, 0x14c00000, 0x52b }, | ||
8467 | { 0x00000000, 0x00200c11, 0x000 }, | ||
8468 | { 0x0000001c, 0x00203623, 0x000 }, | ||
8469 | { 0x0000002b, 0x00203623, 0x000 }, | ||
8470 | { 0x00000029, 0x00203623, 0x000 }, | ||
8471 | { 0x00000028, 0x00203623, 0x000 }, | ||
8472 | { 0x00000017, 0x00203623, 0x000 }, | ||
8473 | { 0x00000025, 0x00203623, 0x000 }, | ||
8474 | { 0x00000026, 0x00203623, 0x000 }, | ||
8475 | { 0x00000015, 0x00203623, 0x000 }, | ||
8476 | { 0x00000016, 0x00203623, 0x000 }, | ||
8477 | { 0xffffe000, 0x00200c11, 0x000 }, | ||
8478 | { 0x00000021, 0x00203623, 0x000 }, | ||
8479 | { 0x00000022, 0x00203623, 0x000 }, | ||
8480 | { 0x00001fff, 0x00200c11, 0x000 }, | ||
8481 | { 0x00000023, 0x00203623, 0x000 }, | ||
8482 | { 0x00000024, 0x00203623, 0x000 }, | ||
8483 | { 0xf1ffffff, 0x00283a2e, 0x000 }, | ||
8484 | { 0x0000001a, 0xc0220e20, 0x000 }, | ||
8485 | { 0x00000000, 0x0029386e, 0x000 }, | ||
8486 | { 0x81000000, 0x00204411, 0x000 }, | ||
8487 | { 0x00000006, 0x00204811, 0x000 }, | ||
8488 | { 0x0000002a, 0x40203620, 0x000 }, | ||
8489 | { 0x87000000, 0x00204411, 0x000 }, | ||
8490 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8491 | { 0x0000a1f4, 0x00204411, 0x000 }, | ||
8492 | { 0x00000000, 0x00204810, 0x000 }, | ||
8493 | { 0x00000000, 0x00200c11, 0x000 }, | ||
8494 | { 0x00000030, 0x00203623, 0x000 }, | ||
8495 | { 0x9d000000, 0x00204411, 0x000 }, | ||
8496 | { 0x0000001f, 0x40214a20, 0x000 }, | ||
8497 | { 0x96000000, 0x00204411, 0x000 }, | ||
8498 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8499 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
8500 | { 0x00000000, 0xc0201000, 0x000 }, | ||
8501 | { 0x0000001f, 0x00211624, 0x000 }, | ||
8502 | { 0x00000000, 0x14c00000, 0x000 }, | ||
8503 | { 0x0000001d, 0x00203623, 0x000 }, | ||
8504 | { 0x00000003, 0x00281e23, 0x000 }, | ||
8505 | { 0x00000008, 0x00222223, 0x000 }, | ||
8506 | { 0xfffff000, 0x00282228, 0x000 }, | ||
8507 | { 0x00000000, 0x002920e8, 0x000 }, | ||
8508 | { 0x0000001f, 0x00203628, 0x000 }, | ||
8509 | { 0x00000018, 0x00211e23, 0x000 }, | ||
8510 | { 0x00000020, 0x00203627, 0x000 }, | ||
8511 | { 0x00000002, 0x00221624, 0x000 }, | ||
8512 | { 0x00000000, 0x003014a8, 0x000 }, | ||
8513 | { 0x0000001e, 0x00203625, 0x000 }, | ||
8514 | { 0x00000003, 0x00211a24, 0x000 }, | ||
8515 | { 0x10000000, 0x00281a26, 0x000 }, | ||
8516 | { 0xefffffff, 0x00283a2e, 0x000 }, | ||
8517 | { 0x00000000, 0x004938ce, 0x678 }, | ||
8518 | { 0x00000001, 0x40280a20, 0x000 }, | ||
8519 | { 0x00000006, 0x40280e20, 0x000 }, | ||
8520 | { 0x00000300, 0xc0281220, 0x000 }, | ||
8521 | { 0x00000008, 0x00211224, 0x000 }, | ||
8522 | { 0x00000000, 0xc0201620, 0x000 }, | ||
8523 | { 0x00000000, 0xc0201a20, 0x000 }, | ||
8524 | { 0x00000000, 0x00210222, 0x000 }, | ||
8525 | { 0x00000000, 0x14c00000, 0x563 }, | ||
8526 | { 0x81000000, 0x00204411, 0x000 }, | ||
8527 | { 0x00000001, 0x00204811, 0x000 }, | ||
8528 | { 0x00002258, 0x00300a24, 0x000 }, | ||
8529 | { 0x00040000, 0x00694622, 0x68a }, | ||
8530 | { 0x00002169, 0x00204411, 0x000 }, | ||
8531 | { 0x00000000, 0x00204805, 0x000 }, | ||
8532 | { 0x00020000, 0x00294a26, 0x000 }, | ||
8533 | { 0x00000000, 0x00204810, 0x000 }, | ||
8534 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
8535 | { 0x00000002, 0x002f0223, 0x000 }, | ||
8536 | { 0x00000000, 0x0cc00000, 0x56b }, | ||
8537 | { 0x00000000, 0xc0201c10, 0x000 }, | ||
8538 | { 0x00000000, 0xc0400000, 0x579 }, | ||
8539 | { 0x00000002, 0x002f0223, 0x000 }, | ||
8540 | { 0x00000000, 0x0cc00000, 0x56b }, | ||
8541 | { 0x81000000, 0x00204411, 0x000 }, | ||
8542 | { 0x00000001, 0x00204811, 0x000 }, | ||
8543 | { 0x00002258, 0x00300a24, 0x000 }, | ||
8544 | { 0x00040000, 0x00694622, 0x68a }, | ||
8545 | { 0x00000000, 0xc0201c10, 0x000 }, | ||
8546 | { 0x00000000, 0xc0400000, 0x579 }, | ||
8547 | { 0x00000000, 0x002f0223, 0x000 }, | ||
8548 | { 0x00000000, 0x0cc00000, 0x56f }, | ||
8549 | { 0x00000000, 0xc0201c00, 0x000 }, | ||
8550 | { 0x00000000, 0xc0400000, 0x579 }, | ||
8551 | { 0x00000004, 0x002f0223, 0x000 }, | ||
8552 | { 0x00000000, 0x0cc00000, 0x577 }, | ||
8553 | { 0x81000000, 0x00204411, 0x000 }, | ||
8554 | { 0x00000000, 0x00204811, 0x000 }, | ||
8555 | { 0x0000216d, 0x00204411, 0x000 }, | ||
8556 | { 0x00000000, 0xc0204800, 0x000 }, | ||
8557 | { 0x00000000, 0xc0604800, 0x68f }, | ||
8558 | { 0x00000000, 0x00401c10, 0x579 }, | ||
8559 | { 0x00000000, 0xc0200000, 0x000 }, | ||
8560 | { 0x00000000, 0xc0400000, 0x000 }, | ||
8561 | { 0x00000000, 0x0ee00000, 0x57b }, | ||
8562 | { 0x00000000, 0x00600000, 0x5c6 }, | ||
8563 | { 0x00000000, 0x002f0224, 0x000 }, | ||
8564 | { 0x00000000, 0x0cc00000, 0x58c }, | ||
8565 | { 0x0000a2b7, 0x00204411, 0x000 }, | ||
8566 | { 0x00000000, 0x00204807, 0x000 }, | ||
8567 | { 0x81000000, 0x00204411, 0x000 }, | ||
8568 | { 0x00000001, 0x00204811, 0x000 }, | ||
8569 | { 0x0004a2b6, 0x00604411, 0x68a }, | ||
8570 | { 0x0000001a, 0x00212230, 0x000 }, | ||
8571 | { 0x00000006, 0x00222630, 0x000 }, | ||
8572 | { 0x00042004, 0x00604411, 0x68a }, | ||
8573 | { 0x0000a2c4, 0x00204411, 0x000 }, | ||
8574 | { 0x00000000, 0x003048e9, 0x000 }, | ||
8575 | { 0x00000000, 0x00e00000, 0x58a }, | ||
8576 | { 0x0000a2d1, 0x00204411, 0x000 }, | ||
8577 | { 0x00000000, 0x00404808, 0x000 }, | ||
8578 | { 0x0000a2d1, 0x00204411, 0x000 }, | ||
8579 | { 0x00000001, 0x00504a28, 0x000 }, | ||
8580 | { 0x00000001, 0x002f0224, 0x000 }, | ||
8581 | { 0x00000000, 0x0cc00000, 0x59d }, | ||
8582 | { 0x0000a2bb, 0x00204411, 0x000 }, | ||
8583 | { 0x00000000, 0x00204807, 0x000 }, | ||
8584 | { 0x81000000, 0x00204411, 0x000 }, | ||
8585 | { 0x00000001, 0x00204811, 0x000 }, | ||
8586 | { 0x0004a2ba, 0x00604411, 0x68a }, | ||
8587 | { 0x0000001a, 0x00212230, 0x000 }, | ||
8588 | { 0x00000006, 0x00222630, 0x000 }, | ||
8589 | { 0x00042004, 0x00604411, 0x68a }, | ||
8590 | { 0x0000a2c5, 0x00204411, 0x000 }, | ||
8591 | { 0x00000000, 0x003048e9, 0x000 }, | ||
8592 | { 0x00000000, 0x00e00000, 0x59b }, | ||
8593 | { 0x0000a2d2, 0x00204411, 0x000 }, | ||
8594 | { 0x00000000, 0x00404808, 0x000 }, | ||
8595 | { 0x0000a2d2, 0x00204411, 0x000 }, | ||
8596 | { 0x00000001, 0x00504a28, 0x000 }, | ||
8597 | { 0x00000002, 0x002f0224, 0x000 }, | ||
8598 | { 0x00000000, 0x0cc00000, 0x5ae }, | ||
8599 | { 0x0000a2bf, 0x00204411, 0x000 }, | ||
8600 | { 0x00000000, 0x00204807, 0x000 }, | ||
8601 | { 0x81000000, 0x00204411, 0x000 }, | ||
8602 | { 0x00000001, 0x00204811, 0x000 }, | ||
8603 | { 0x0004a2be, 0x00604411, 0x68a }, | ||
8604 | { 0x0000001a, 0x00212230, 0x000 }, | ||
8605 | { 0x00000006, 0x00222630, 0x000 }, | ||
8606 | { 0x00042004, 0x00604411, 0x68a }, | ||
8607 | { 0x0000a2c6, 0x00204411, 0x000 }, | ||
8608 | { 0x00000000, 0x003048e9, 0x000 }, | ||
8609 | { 0x00000000, 0x00e00000, 0x5ac }, | ||
8610 | { 0x0000a2d3, 0x00204411, 0x000 }, | ||
8611 | { 0x00000000, 0x00404808, 0x000 }, | ||
8612 | { 0x0000a2d3, 0x00204411, 0x000 }, | ||
8613 | { 0x00000001, 0x00504a28, 0x000 }, | ||
8614 | { 0x0000a2c3, 0x00204411, 0x000 }, | ||
8615 | { 0x00000000, 0x00204807, 0x000 }, | ||
8616 | { 0x81000000, 0x00204411, 0x000 }, | ||
8617 | { 0x00000001, 0x00204811, 0x000 }, | ||
8618 | { 0x0004a2c2, 0x00604411, 0x68a }, | ||
8619 | { 0x0000001a, 0x00212230, 0x000 }, | ||
8620 | { 0x00000006, 0x00222630, 0x000 }, | ||
8621 | { 0x00042004, 0x00604411, 0x68a }, | ||
8622 | { 0x0000a2c7, 0x00204411, 0x000 }, | ||
8623 | { 0x00000000, 0x003048e9, 0x000 }, | ||
8624 | { 0x00000000, 0x00e00000, 0x5bb }, | ||
8625 | { 0x0000a2d4, 0x00204411, 0x000 }, | ||
8626 | { 0x00000000, 0x00404808, 0x000 }, | ||
8627 | { 0x0000a2d4, 0x00204411, 0x000 }, | ||
8628 | { 0x00000001, 0x00504a28, 0x000 }, | ||
8629 | { 0x85000000, 0x00204411, 0x000 }, | ||
8630 | { 0x00000000, 0x00204801, 0x000 }, | ||
8631 | { 0x0000304a, 0x00204411, 0x000 }, | ||
8632 | { 0x01000000, 0x00204811, 0x000 }, | ||
8633 | { 0x00000000, 0x00400000, 0x5c1 }, | ||
8634 | { 0xa4000000, 0xc0204411, 0x000 }, | ||
8635 | { 0x00000000, 0xc0404800, 0x000 }, | ||
8636 | { 0x00000000, 0xc0600000, 0x5c6 }, | ||
8637 | { 0x00000000, 0xc0400400, 0x001 }, | ||
8638 | { 0x0000002c, 0x00203621, 0x000 }, | ||
8639 | { 0x81000000, 0x00204411, 0x000 }, | ||
8640 | { 0x00000006, 0x00204811, 0x000 }, | ||
8641 | { 0x00000000, 0x002f0230, 0x000 }, | ||
8642 | { 0x00000000, 0x0cc00000, 0x5cd }, | ||
8643 | { 0x00000000, 0x00200411, 0x000 }, | ||
8644 | { 0x00000030, 0x00403621, 0x5e0 }, | ||
8645 | { 0x00000030, 0x0020062d, 0x000 }, | ||
8646 | { 0x00007e00, 0x00280621, 0x000 }, | ||
8647 | { 0x00000000, 0x002f0221, 0x000 }, | ||
8648 | { 0x00000000, 0x0ce00000, 0x5e0 }, | ||
8649 | { 0x81000000, 0x00204411, 0x000 }, | ||
8650 | { 0x00000001, 0x00204811, 0x000 }, | ||
8651 | { 0x0004a092, 0x00604411, 0x68a }, | ||
8652 | { 0x00000031, 0x00203630, 0x000 }, | ||
8653 | { 0x0004a093, 0x00604411, 0x68a }, | ||
8654 | { 0x00000032, 0x00203630, 0x000 }, | ||
8655 | { 0x0004a2b6, 0x00604411, 0x68a }, | ||
8656 | { 0x00000033, 0x00203630, 0x000 }, | ||
8657 | { 0x0004a2ba, 0x00604411, 0x68a }, | ||
8658 | { 0x00000034, 0x00203630, 0x000 }, | ||
8659 | { 0x0004a2be, 0x00604411, 0x68a }, | ||
8660 | { 0x00000035, 0x00203630, 0x000 }, | ||
8661 | { 0x0004a2c2, 0x00604411, 0x68a }, | ||
8662 | { 0x00000036, 0x00203630, 0x000 }, | ||
8663 | { 0x00042004, 0x00604411, 0x68a }, | ||
8664 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
8665 | { 0x0000003f, 0x00204811, 0x000 }, | ||
8666 | { 0x0000003f, 0x00204811, 0x000 }, | ||
8667 | { 0x0000003f, 0x00204811, 0x000 }, | ||
8668 | { 0x0000003f, 0x00204811, 0x000 }, | ||
8669 | { 0x00000005, 0x00204811, 0x000 }, | ||
8670 | { 0x0000a1f4, 0x00204411, 0x000 }, | ||
8671 | { 0x00000000, 0x00204811, 0x000 }, | ||
8672 | { 0x88000000, 0x00204411, 0x000 }, | ||
8673 | { 0x00000001, 0x00204811, 0x000 }, | ||
8674 | { 0x81000000, 0x00204411, 0x000 }, | ||
8675 | { 0x00000006, 0x00204811, 0x000 }, | ||
8676 | { 0x00000001, 0x002f0230, 0x000 }, | ||
8677 | { 0x00000000, 0x0ce00000, 0x629 }, | ||
8678 | { 0x00000030, 0x0020062d, 0x000 }, | ||
8679 | { 0x00000000, 0x002f0221, 0x000 }, | ||
8680 | { 0x00000000, 0x0ce00000, 0x629 }, | ||
8681 | { 0x81000000, 0x00204411, 0x000 }, | ||
8682 | { 0x00000001, 0x00204811, 0x000 }, | ||
8683 | { 0x00007e00, 0x00280621, 0x000 }, | ||
8684 | { 0x00000000, 0x002f0221, 0x000 }, | ||
8685 | { 0x00000000, 0x0ce00000, 0x602 }, | ||
8686 | { 0x0000a092, 0x00204411, 0x000 }, | ||
8687 | { 0x00000031, 0x00204a2d, 0x000 }, | ||
8688 | { 0x0000a093, 0x00204411, 0x000 }, | ||
8689 | { 0x00000032, 0x00204a2d, 0x000 }, | ||
8690 | { 0x0000a2b6, 0x00204411, 0x000 }, | ||
8691 | { 0x00000033, 0x00204a2d, 0x000 }, | ||
8692 | { 0x0000a2ba, 0x00204411, 0x000 }, | ||
8693 | { 0x00000034, 0x00204a2d, 0x000 }, | ||
8694 | { 0x0000a2be, 0x00204411, 0x000 }, | ||
8695 | { 0x00000035, 0x00204a2d, 0x000 }, | ||
8696 | { 0x0000a2c2, 0x00204411, 0x000 }, | ||
8697 | { 0x00000036, 0x00204a2d, 0x000 }, | ||
8698 | { 0x00000030, 0x0020062d, 0x000 }, | ||
8699 | { 0x000001ff, 0x00280621, 0x000 }, | ||
8700 | { 0x00000000, 0x002f0221, 0x000 }, | ||
8701 | { 0x00000000, 0x0ce00000, 0x628 }, | ||
8702 | { 0x00000000, 0x00210221, 0x000 }, | ||
8703 | { 0x00000000, 0x14c00000, 0x60b }, | ||
8704 | { 0x0004a003, 0x00604411, 0x68a }, | ||
8705 | { 0x0000a003, 0x00204411, 0x000 }, | ||
8706 | { 0x00000000, 0x00204810, 0x000 }, | ||
8707 | { 0x00000001, 0x00210621, 0x000 }, | ||
8708 | { 0x00000000, 0x14c00000, 0x610 }, | ||
8709 | { 0x0004a010, 0x00604411, 0x68a }, | ||
8710 | { 0x0000a010, 0x00204411, 0x000 }, | ||
8711 | { 0x00000000, 0x00204810, 0x000 }, | ||
8712 | { 0x00000001, 0x00210621, 0x000 }, | ||
8713 | { 0x00000000, 0x002f0221, 0x000 }, | ||
8714 | { 0x00000000, 0x0ce00000, 0x628 }, | ||
8715 | { 0x0004a011, 0x00604411, 0x68a }, | ||
8716 | { 0x0000a011, 0x00204411, 0x000 }, | ||
8717 | { 0x00000000, 0x00204810, 0x000 }, | ||
8718 | { 0x0004a012, 0x00604411, 0x68a }, | ||
8719 | { 0x0000a012, 0x00204411, 0x000 }, | ||
8720 | { 0x00000000, 0x00204810, 0x000 }, | ||
8721 | { 0x0004a013, 0x00604411, 0x68a }, | ||
8722 | { 0x0000a013, 0x00204411, 0x000 }, | ||
8723 | { 0x00000000, 0x00204810, 0x000 }, | ||
8724 | { 0x0004a014, 0x00604411, 0x68a }, | ||
8725 | { 0x0000a014, 0x00204411, 0x000 }, | ||
8726 | { 0x00000000, 0x00204810, 0x000 }, | ||
8727 | { 0x0004a015, 0x00604411, 0x68a }, | ||
8728 | { 0x0000a015, 0x00204411, 0x000 }, | ||
8729 | { 0x00000000, 0x00204810, 0x000 }, | ||
8730 | { 0x0004a016, 0x00604411, 0x68a }, | ||
8731 | { 0x0000a016, 0x00204411, 0x000 }, | ||
8732 | { 0x00000000, 0x00204810, 0x000 }, | ||
8733 | { 0x0004a017, 0x00604411, 0x68a }, | ||
8734 | { 0x0000a017, 0x00204411, 0x000 }, | ||
8735 | { 0x00000000, 0x00204810, 0x000 }, | ||
8736 | { 0x00042004, 0x00604411, 0x68a }, | ||
8737 | { 0x0000002c, 0x0080062d, 0x000 }, | ||
8738 | { 0xff000000, 0x00204411, 0x000 }, | ||
8739 | { 0x00000000, 0x00204811, 0x000 }, | ||
8740 | { 0x00000001, 0x00204811, 0x000 }, | ||
8741 | { 0x00000002, 0x00804811, 0x000 }, | ||
8742 | { 0x00000000, 0x0ee00000, 0x63a }, | ||
8743 | { 0x00000030, 0x0020062d, 0x000 }, | ||
8744 | { 0x00000002, 0x00280621, 0x000 }, | ||
8745 | { 0x00000000, 0x002f0221, 0x000 }, | ||
8746 | { 0x00000000, 0x0ce00000, 0x638 }, | ||
8747 | { 0x81000000, 0x00204411, 0x000 }, | ||
8748 | { 0x00000001, 0x00204811, 0x000 }, | ||
8749 | { 0x00042004, 0x00604411, 0x68a }, | ||
8750 | { 0x00001000, 0x00200811, 0x000 }, | ||
8751 | { 0x0000002b, 0x00203622, 0x000 }, | ||
8752 | { 0x00000000, 0x00600000, 0x63e }, | ||
8753 | { 0x00000000, 0x00600000, 0x5c6 }, | ||
8754 | { 0x98000000, 0x00204411, 0x000 }, | ||
8755 | { 0x00000000, 0x00804811, 0x000 }, | ||
8756 | { 0x00000000, 0xc0600000, 0x63e }, | ||
8757 | { 0x00000000, 0xc0400400, 0x001 }, | ||
8758 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
8759 | { 0x00000022, 0x00204811, 0x000 }, | ||
8760 | { 0x89000000, 0x00204411, 0x000 }, | ||
8761 | { 0x00000001, 0x00404811, 0x62a }, | ||
8762 | { 0x97000000, 0x00204411, 0x000 }, | ||
8763 | { 0x00000000, 0x00204811, 0x000 }, | ||
8764 | { 0x8a000000, 0x00204411, 0x000 }, | ||
8765 | { 0x00000000, 0x00404811, 0x62a }, | ||
8766 | { 0x00000000, 0x00600000, 0x659 }, | ||
8767 | { 0x00002010, 0x00204411, 0x000 }, | ||
8768 | { 0x00008000, 0x00204811, 0x000 }, | ||
8769 | { 0x0001a2a4, 0xc0204411, 0x000 }, | ||
8770 | { 0x00000016, 0x00604811, 0x36e }, | ||
8771 | { 0x00002010, 0x00204411, 0x000 }, | ||
8772 | { 0x00010000, 0x00204811, 0x000 }, | ||
8773 | { 0x81000000, 0x00204411, 0x000 }, | ||
8774 | { 0x00000001, 0x00204811, 0x000 }, | ||
8775 | { 0x0000217c, 0x00204411, 0x000 }, | ||
8776 | { 0x09800000, 0x00204811, 0x000 }, | ||
8777 | { 0xffffffff, 0x00204811, 0x000 }, | ||
8778 | { 0x00000000, 0x00204811, 0x000 }, | ||
8779 | { 0x00000000, 0x17000000, 0x000 }, | ||
8780 | { 0x0004217f, 0x00604411, 0x68a }, | ||
8781 | { 0x0000001f, 0x00210230, 0x000 }, | ||
8782 | { 0x00000000, 0x14c00000, 0x000 }, | ||
8783 | { 0x00000004, 0x00404c11, 0x653 }, | ||
8784 | { 0x00000000, 0x00400000, 0x000 }, | ||
8785 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
8786 | { 0x00000004, 0x00291e27, 0x000 }, | ||
8787 | { 0x00000017, 0x00803627, 0x000 }, | ||
8788 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
8789 | { 0xfffffffb, 0x00281e27, 0x000 }, | ||
8790 | { 0x00000017, 0x00803627, 0x000 }, | ||
8791 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
8792 | { 0x00000008, 0x00291e27, 0x000 }, | ||
8793 | { 0x00000017, 0x00803627, 0x000 }, | ||
8794 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
8795 | { 0xfffffff7, 0x00281e27, 0x000 }, | ||
8796 | { 0x00000017, 0x00803627, 0x000 }, | ||
8797 | { 0x00002010, 0x00204411, 0x000 }, | ||
8798 | { 0x00008000, 0x00204811, 0x000 }, | ||
8799 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
8800 | { 0x00000016, 0x00604811, 0x36e }, | ||
8801 | { 0x00002010, 0x00204411, 0x000 }, | ||
8802 | { 0x00010000, 0x00204811, 0x000 }, | ||
8803 | { 0x0000217c, 0x00204411, 0x000 }, | ||
8804 | { 0x01800000, 0x00204811, 0x000 }, | ||
8805 | { 0xffffffff, 0x00204811, 0x000 }, | ||
8806 | { 0x00000000, 0x00204811, 0x000 }, | ||
8807 | { 0x00000000, 0x17000000, 0x000 }, | ||
8808 | { 0x81000000, 0x00204411, 0x000 }, | ||
8809 | { 0x00000001, 0x00204811, 0x000 }, | ||
8810 | { 0x0004217f, 0x00604411, 0x68a }, | ||
8811 | { 0x0000001f, 0x00210230, 0x000 }, | ||
8812 | { 0x00000000, 0x14c00000, 0x689 }, | ||
8813 | { 0x00000010, 0x00404c11, 0x66f }, | ||
8814 | { 0x00000000, 0xc0200400, 0x000 }, | ||
8815 | { 0x00000000, 0x38c00000, 0x000 }, | ||
8816 | { 0x0000001d, 0x00200a2d, 0x000 }, | ||
8817 | { 0x0000001e, 0x00200e2d, 0x000 }, | ||
8818 | { 0x0000001f, 0x0020122d, 0x000 }, | ||
8819 | { 0x00000020, 0x0020162d, 0x000 }, | ||
8820 | { 0x00002169, 0x00204411, 0x000 }, | ||
8821 | { 0x00000000, 0x00204804, 0x000 }, | ||
8822 | { 0x00000000, 0x00204805, 0x000 }, | ||
8823 | { 0x00000000, 0x00204801, 0x000 }, | ||
8824 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
8825 | { 0x00000004, 0x00301224, 0x000 }, | ||
8826 | { 0x00000000, 0x002f0064, 0x000 }, | ||
8827 | { 0x00000000, 0x0cc00000, 0x688 }, | ||
8828 | { 0x00000003, 0x00281a22, 0x000 }, | ||
8829 | { 0x00000008, 0x00221222, 0x000 }, | ||
8830 | { 0xfffff000, 0x00281224, 0x000 }, | ||
8831 | { 0x00000000, 0x002910c4, 0x000 }, | ||
8832 | { 0x0000001f, 0x00403624, 0x000 }, | ||
8833 | { 0x00000000, 0x00800000, 0x000 }, | ||
8834 | { 0x00000000, 0x1ac00000, 0x68a }, | ||
8835 | { 0x9f000000, 0x00204411, 0x000 }, | ||
8836 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
8837 | { 0x00000000, 0x1ae00000, 0x68d }, | ||
8838 | { 0x00000000, 0x00800000, 0x000 }, | ||
8839 | { 0x00000000, 0x1ac00000, 0x68f }, | ||
8840 | { 0x9e000000, 0x00204411, 0x000 }, | ||
8841 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
8842 | { 0x00000000, 0x1ae00000, 0x692 }, | ||
8843 | { 0x00000000, 0x00800000, 0x000 }, | ||
8844 | { 0x00000000, 0x00600000, 0x00b }, | ||
8845 | { 0x00001000, 0x00600411, 0x315 }, | ||
8846 | { 0x00000000, 0x00200411, 0x000 }, | ||
8847 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
8848 | { 0x0000225c, 0x00204411, 0x000 }, | ||
8849 | { 0x00000003, 0x00204811, 0x000 }, | ||
8850 | { 0x00002256, 0x00204411, 0x000 }, | ||
8851 | { 0x0000001b, 0x00204811, 0x000 }, | ||
8852 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
8853 | { 0x00000001, 0x00204811, 0x000 }, | ||
8854 | { 0x0001a1fd, 0xc0204411, 0x000 }, | ||
8855 | { 0x00000021, 0x00201e2d, 0x000 }, | ||
8856 | { 0x00000010, 0x00221e27, 0x000 }, | ||
8857 | { 0x00000024, 0x0020222d, 0x000 }, | ||
8858 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
8859 | { 0x00000000, 0x00294907, 0x000 }, | ||
8860 | { 0x00000000, 0x00204811, 0x000 }, | ||
8861 | { 0x00000022, 0x0020222d, 0x000 }, | ||
8862 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
8863 | { 0x00000000, 0x00294907, 0x000 }, | ||
8864 | { 0x00000000, 0x00204811, 0x000 }, | ||
8865 | { 0x00000023, 0x00201e2d, 0x000 }, | ||
8866 | { 0x00000010, 0x00221e27, 0x000 }, | ||
8867 | { 0x00000000, 0x00294907, 0x000 }, | ||
8868 | { 0x00000000, 0x00404811, 0x000 }, | ||
8869 | { 0x00000000, 0x00000000, 0x000 }, | ||
8870 | { 0x00000000, 0x00000000, 0x000 }, | ||
8871 | { 0x00000000, 0x00000000, 0x000 }, | ||
8872 | { 0x00000000, 0x00000000, 0x000 }, | ||
8873 | { 0x00000000, 0x00000000, 0x000 }, | ||
8874 | { 0x00000000, 0x00000000, 0x000 }, | ||
8875 | { 0x00000000, 0x00000000, 0x000 }, | ||
8876 | { 0x00000000, 0x00000000, 0x000 }, | ||
8877 | { 0x00000000, 0x00000000, 0x000 }, | ||
8878 | { 0x00000000, 0x00000000, 0x000 }, | ||
8879 | { 0x00000000, 0x00000000, 0x000 }, | ||
8880 | { 0x00000000, 0x00000000, 0x000 }, | ||
8881 | { 0x00000000, 0x00000000, 0x000 }, | ||
8882 | { 0x00000000, 0x00000000, 0x000 }, | ||
8883 | { 0x00000000, 0x00000000, 0x000 }, | ||
8884 | { 0x00000000, 0x00000000, 0x000 }, | ||
8885 | { 0x00000000, 0x00000000, 0x000 }, | ||
8886 | { 0x00000000, 0x00000000, 0x000 }, | ||
8887 | { 0x00000000, 0x00000000, 0x000 }, | ||
8888 | { 0x00000000, 0x00000000, 0x000 }, | ||
8889 | { 0x00000000, 0x00000000, 0x000 }, | ||
8890 | { 0x00000000, 0x00000000, 0x000 }, | ||
8891 | { 0x00000000, 0x00000000, 0x000 }, | ||
8892 | { 0x00000000, 0x00000000, 0x000 }, | ||
8893 | { 0x00000000, 0x00000000, 0x000 }, | ||
8894 | { 0x00000000, 0x00000000, 0x000 }, | ||
8895 | { 0x00000000, 0x00000000, 0x000 }, | ||
8896 | { 0x00000000, 0x00000000, 0x000 }, | ||
8897 | { 0x00000000, 0x00000000, 0x000 }, | ||
8898 | { 0x00000000, 0x00000000, 0x000 }, | ||
8899 | { 0x00000000, 0x00000000, 0x000 }, | ||
8900 | { 0x00000000, 0x00000000, 0x000 }, | ||
8901 | { 0x00000000, 0x00000000, 0x000 }, | ||
8902 | { 0x00000000, 0x00000000, 0x000 }, | ||
8903 | { 0x00000000, 0x00000000, 0x000 }, | ||
8904 | { 0x00000000, 0x00000000, 0x000 }, | ||
8905 | { 0x00000000, 0x00000000, 0x000 }, | ||
8906 | { 0x00000000, 0x00000000, 0x000 }, | ||
8907 | { 0x00000000, 0x00000000, 0x000 }, | ||
8908 | { 0x00000000, 0x00000000, 0x000 }, | ||
8909 | { 0x00000000, 0x00000000, 0x000 }, | ||
8910 | { 0x00000000, 0x00000000, 0x000 }, | ||
8911 | { 0x00000000, 0x00000000, 0x000 }, | ||
8912 | { 0x00000000, 0x00000000, 0x000 }, | ||
8913 | { 0x00000000, 0x00000000, 0x000 }, | ||
8914 | { 0x00000000, 0x00000000, 0x000 }, | ||
8915 | { 0x00000000, 0x00000000, 0x000 }, | ||
8916 | { 0x00000000, 0x00000000, 0x000 }, | ||
8917 | { 0x00000000, 0x00000000, 0x000 }, | ||
8918 | { 0x00000000, 0x00000000, 0x000 }, | ||
8919 | { 0x00000000, 0x00000000, 0x000 }, | ||
8920 | { 0x00000000, 0x00000000, 0x000 }, | ||
8921 | { 0x00000000, 0x00000000, 0x000 }, | ||
8922 | { 0x00000000, 0x00000000, 0x000 }, | ||
8923 | { 0x00000000, 0x00000000, 0x000 }, | ||
8924 | { 0x014204ff, 0x05bd0250, 0x000 }, | ||
8925 | { 0x01c30168, 0x043f05bd, 0x000 }, | ||
8926 | { 0x02250209, 0x02500151, 0x000 }, | ||
8927 | { 0x02230245, 0x02a00241, 0x000 }, | ||
8928 | { 0x03d705bd, 0x05bd05bd, 0x000 }, | ||
8929 | { 0x06460647, 0x031f05bd, 0x000 }, | ||
8930 | { 0x05bd05c2, 0x03200340, 0x000 }, | ||
8931 | { 0x032a0282, 0x03420334, 0x000 }, | ||
8932 | { 0x05bd05bd, 0x05bd05bd, 0x000 }, | ||
8933 | { 0x05bd054e, 0x05bd05bd, 0x000 }, | ||
8934 | { 0x03ba05bd, 0x04b80344, 0x000 }, | ||
8935 | { 0x0497044d, 0x043d05bd, 0x000 }, | ||
8936 | { 0x04cd05bd, 0x044104da, 0x000 }, | ||
8937 | { 0x044d0504, 0x03510375, 0x000 }, | ||
8938 | { 0x05bd05bd, 0x05bd05bd, 0x000 }, | ||
8939 | { 0x05bd05bd, 0x05bd05bd, 0x000 }, | ||
8940 | { 0x05bd05bd, 0x063c05c4, 0x000 }, | ||
8941 | { 0x05bd05bd, 0x000705bd, 0x000 }, | ||
8942 | { 0x05bd05bd, 0x05bd05bd, 0x000 }, | ||
8943 | { 0x05bd05bd, 0x05bd05bd, 0x000 }, | ||
8944 | { 0x03f803ed, 0x04080406, 0x000 }, | ||
8945 | { 0x040e040a, 0x040c0410, 0x000 }, | ||
8946 | { 0x041c0418, 0x04240420, 0x000 }, | ||
8947 | { 0x042c0428, 0x04340430, 0x000 }, | ||
8948 | { 0x05bd05bd, 0x043805bd, 0x000 }, | ||
8949 | { 0x05bd05bd, 0x05bd05bd, 0x000 }, | ||
8950 | { 0x05bd05bd, 0x05bd05bd, 0x000 }, | ||
8951 | { 0x00020676, 0x06940006, 0x000 }, | ||
8952 | }; | ||
8953 | |||
8954 | static const u32 RV630_pfp_microcode[] = { | ||
8955 | 0xca0400, | ||
8956 | 0xa00000, | ||
8957 | 0x7e828b, | ||
8958 | 0x7c038b, | ||
8959 | 0x8001b8, | ||
8960 | 0x7c038b, | ||
8961 | 0xd4401e, | ||
8962 | 0xee001e, | ||
8963 | 0xca0400, | ||
8964 | 0xa00000, | ||
8965 | 0x7e828b, | ||
8966 | 0xc41838, | ||
8967 | 0xca2400, | ||
8968 | 0xca2800, | ||
8969 | 0x9581a8, | ||
8970 | 0xc41c3a, | ||
8971 | 0xc3c000, | ||
8972 | 0xca0800, | ||
8973 | 0xca0c00, | ||
8974 | 0x7c744b, | ||
8975 | 0xc20005, | ||
8976 | 0x99c000, | ||
8977 | 0xc41c3a, | ||
8978 | 0x7c744c, | ||
8979 | 0xc0fff0, | ||
8980 | 0x042c04, | ||
8981 | 0x309002, | ||
8982 | 0x7d2500, | ||
8983 | 0x351402, | ||
8984 | 0x7d350b, | ||
8985 | 0x255403, | ||
8986 | 0x7cd580, | ||
8987 | 0x259c03, | ||
8988 | 0x95c004, | ||
8989 | 0xd5001b, | ||
8990 | 0x7eddc1, | ||
8991 | 0x7d9d80, | ||
8992 | 0xd6801b, | ||
8993 | 0xd5801b, | ||
8994 | 0xd4401e, | ||
8995 | 0xd5401e, | ||
8996 | 0xd6401e, | ||
8997 | 0xd6801e, | ||
8998 | 0xd4801e, | ||
8999 | 0xd4c01e, | ||
9000 | 0x9783d3, | ||
9001 | 0xd5c01e, | ||
9002 | 0xca0800, | ||
9003 | 0x80001a, | ||
9004 | 0xca0c00, | ||
9005 | 0xe4011e, | ||
9006 | 0xd4001e, | ||
9007 | 0x80000c, | ||
9008 | 0xc41838, | ||
9009 | 0xe4013e, | ||
9010 | 0xd4001e, | ||
9011 | 0x80000c, | ||
9012 | 0xc41838, | ||
9013 | 0xd4401e, | ||
9014 | 0xee001e, | ||
9015 | 0xca0400, | ||
9016 | 0xa00000, | ||
9017 | 0x7e828b, | ||
9018 | 0xe4011e, | ||
9019 | 0xd4001e, | ||
9020 | 0xd4401e, | ||
9021 | 0xee001e, | ||
9022 | 0xca0400, | ||
9023 | 0xa00000, | ||
9024 | 0x7e828b, | ||
9025 | 0xe4013e, | ||
9026 | 0xd4001e, | ||
9027 | 0xd4401e, | ||
9028 | 0xee001e, | ||
9029 | 0xca0400, | ||
9030 | 0xa00000, | ||
9031 | 0x7e828b, | ||
9032 | 0xca1800, | ||
9033 | 0xd4401e, | ||
9034 | 0xd5801e, | ||
9035 | 0x800053, | ||
9036 | 0xd40075, | ||
9037 | 0xd4401e, | ||
9038 | 0xca0800, | ||
9039 | 0xca0c00, | ||
9040 | 0xca1000, | ||
9041 | 0xd48019, | ||
9042 | 0xd4c018, | ||
9043 | 0xd50017, | ||
9044 | 0xd4801e, | ||
9045 | 0xd4c01e, | ||
9046 | 0xd5001e, | ||
9047 | 0xe2001e, | ||
9048 | 0xca0400, | ||
9049 | 0xa00000, | ||
9050 | 0x7e828b, | ||
9051 | 0xca0800, | ||
9052 | 0xd48060, | ||
9053 | 0xd4401e, | ||
9054 | 0x800000, | ||
9055 | 0xd4801e, | ||
9056 | 0xca0800, | ||
9057 | 0xd48061, | ||
9058 | 0xd4401e, | ||
9059 | 0x800000, | ||
9060 | 0xd4801e, | ||
9061 | 0xca0800, | ||
9062 | 0xca0c00, | ||
9063 | 0xd4401e, | ||
9064 | 0xd48016, | ||
9065 | 0xd4c016, | ||
9066 | 0xd4801e, | ||
9067 | 0x8001b8, | ||
9068 | 0xd4c01e, | ||
9069 | 0xc60843, | ||
9070 | 0xca0c00, | ||
9071 | 0xca1000, | ||
9072 | 0x948004, | ||
9073 | 0xca1400, | ||
9074 | 0xe420f3, | ||
9075 | 0xd42013, | ||
9076 | 0xd56065, | ||
9077 | 0xd4e01c, | ||
9078 | 0xd5201c, | ||
9079 | 0xd5601c, | ||
9080 | 0x800000, | ||
9081 | 0x062001, | ||
9082 | 0xc60843, | ||
9083 | 0xca0c00, | ||
9084 | 0xca1000, | ||
9085 | 0x9483f7, | ||
9086 | 0xca1400, | ||
9087 | 0xe420f3, | ||
9088 | 0x800079, | ||
9089 | 0xd42013, | ||
9090 | 0xc60843, | ||
9091 | 0xca0c00, | ||
9092 | 0xca1000, | ||
9093 | 0x9883ef, | ||
9094 | 0xca1400, | ||
9095 | 0xd40064, | ||
9096 | 0x80008d, | ||
9097 | 0x000000, | ||
9098 | 0xc41432, | ||
9099 | 0xc61843, | ||
9100 | 0xc4082f, | ||
9101 | 0x954005, | ||
9102 | 0xc40c30, | ||
9103 | 0xd4401e, | ||
9104 | 0x800000, | ||
9105 | 0xee001e, | ||
9106 | 0x9583f5, | ||
9107 | 0xc41031, | ||
9108 | 0xd44033, | ||
9109 | 0xd52065, | ||
9110 | 0xd4a01c, | ||
9111 | 0xd4e01c, | ||
9112 | 0xd5201c, | ||
9113 | 0xe4015e, | ||
9114 | 0xd4001e, | ||
9115 | 0x800000, | ||
9116 | 0x062001, | ||
9117 | 0xca1800, | ||
9118 | 0x0a2001, | ||
9119 | 0xd60076, | ||
9120 | 0xc40836, | ||
9121 | 0x988007, | ||
9122 | 0xc61045, | ||
9123 | 0x950110, | ||
9124 | 0xd4001f, | ||
9125 | 0xd46062, | ||
9126 | 0x800000, | ||
9127 | 0xd42062, | ||
9128 | 0xcc3835, | ||
9129 | 0xcc1433, | ||
9130 | 0x8401bb, | ||
9131 | 0xd40072, | ||
9132 | 0xd5401e, | ||
9133 | 0x800000, | ||
9134 | 0xee001e, | ||
9135 | 0xe2001a, | ||
9136 | 0x8401bb, | ||
9137 | 0xe2001a, | ||
9138 | 0xcc104b, | ||
9139 | 0xcc0447, | ||
9140 | 0x2c9401, | ||
9141 | 0x7d098b, | ||
9142 | 0x984005, | ||
9143 | 0x7d15cb, | ||
9144 | 0xd4001a, | ||
9145 | 0x8001b8, | ||
9146 | 0xd4006d, | ||
9147 | 0x344401, | ||
9148 | 0xcc0c48, | ||
9149 | 0x98403a, | ||
9150 | 0xcc2c4a, | ||
9151 | 0x958004, | ||
9152 | 0xcc0449, | ||
9153 | 0x8001b8, | ||
9154 | 0xd4001a, | ||
9155 | 0xd4c01a, | ||
9156 | 0x282801, | ||
9157 | 0x8400f0, | ||
9158 | 0xcc1003, | ||
9159 | 0x98801b, | ||
9160 | 0x04380c, | ||
9161 | 0x8400f0, | ||
9162 | 0xcc1003, | ||
9163 | 0x988017, | ||
9164 | 0x043808, | ||
9165 | 0x8400f0, | ||
9166 | 0xcc1003, | ||
9167 | 0x988013, | ||
9168 | 0x043804, | ||
9169 | 0x8400f0, | ||
9170 | 0xcc1003, | ||
9171 | 0x988014, | ||
9172 | 0xcc104c, | ||
9173 | 0x9a8009, | ||
9174 | 0xcc144d, | ||
9175 | 0x9840dc, | ||
9176 | 0xd4006d, | ||
9177 | 0xcc1848, | ||
9178 | 0xd5001a, | ||
9179 | 0xd5401a, | ||
9180 | 0x8000c9, | ||
9181 | 0xd5801a, | ||
9182 | 0x96c0d5, | ||
9183 | 0xd4006d, | ||
9184 | 0x8001b8, | ||
9185 | 0xd4006e, | ||
9186 | 0x9ac003, | ||
9187 | 0xd4006d, | ||
9188 | 0xd4006e, | ||
9189 | 0x800000, | ||
9190 | 0xec007f, | ||
9191 | 0x9ac0cc, | ||
9192 | 0xd4006d, | ||
9193 | 0x8001b8, | ||
9194 | 0xd4006e, | ||
9195 | 0xcc1403, | ||
9196 | 0xcc1803, | ||
9197 | 0xcc1c03, | ||
9198 | 0x7d9103, | ||
9199 | 0x7dd583, | ||
9200 | 0x7d190c, | ||
9201 | 0x35cc1f, | ||
9202 | 0x35701f, | ||
9203 | 0x7cf0cb, | ||
9204 | 0x7cd08b, | ||
9205 | 0x880000, | ||
9206 | 0x7e8e8b, | ||
9207 | 0x95c004, | ||
9208 | 0xd4006e, | ||
9209 | 0x8001b8, | ||
9210 | 0xd4001a, | ||
9211 | 0xd4c01a, | ||
9212 | 0xcc0803, | ||
9213 | 0xcc0c03, | ||
9214 | 0xcc1003, | ||
9215 | 0xcc1403, | ||
9216 | 0xcc1803, | ||
9217 | 0xcc1c03, | ||
9218 | 0xcc2403, | ||
9219 | 0xcc2803, | ||
9220 | 0x35c41f, | ||
9221 | 0x36b01f, | ||
9222 | 0x7c704b, | ||
9223 | 0x34f01f, | ||
9224 | 0x7c704b, | ||
9225 | 0x35701f, | ||
9226 | 0x7c704b, | ||
9227 | 0x7d8881, | ||
9228 | 0x7dccc1, | ||
9229 | 0x7e5101, | ||
9230 | 0x7e9541, | ||
9231 | 0x7c9082, | ||
9232 | 0x7cd4c2, | ||
9233 | 0x7c848b, | ||
9234 | 0x9ac003, | ||
9235 | 0x7c8c8b, | ||
9236 | 0x2c8801, | ||
9237 | 0x98809e, | ||
9238 | 0xd4006d, | ||
9239 | 0x98409c, | ||
9240 | 0xd4006e, | ||
9241 | 0xcc084c, | ||
9242 | 0xcc0c4d, | ||
9243 | 0xcc1048, | ||
9244 | 0xd4801a, | ||
9245 | 0xd4c01a, | ||
9246 | 0x800101, | ||
9247 | 0xd5001a, | ||
9248 | 0xcc0832, | ||
9249 | 0xd40032, | ||
9250 | 0x9482d9, | ||
9251 | 0xca0c00, | ||
9252 | 0xd4401e, | ||
9253 | 0x800000, | ||
9254 | 0xd4001e, | ||
9255 | 0xe4011e, | ||
9256 | 0xd4001e, | ||
9257 | 0xca0800, | ||
9258 | 0xca0c00, | ||
9259 | 0xca1000, | ||
9260 | 0xd4401e, | ||
9261 | 0xca1400, | ||
9262 | 0xd4801e, | ||
9263 | 0xd4c01e, | ||
9264 | 0xd5001e, | ||
9265 | 0xd5401e, | ||
9266 | 0xd54034, | ||
9267 | 0x800000, | ||
9268 | 0xee001e, | ||
9269 | 0x280404, | ||
9270 | 0xe2001a, | ||
9271 | 0xe2001a, | ||
9272 | 0xd4401a, | ||
9273 | 0xca3800, | ||
9274 | 0xcc0803, | ||
9275 | 0xcc0c03, | ||
9276 | 0xcc0c03, | ||
9277 | 0xcc0c03, | ||
9278 | 0x9882bd, | ||
9279 | 0x000000, | ||
9280 | 0x8401bb, | ||
9281 | 0xd7a06f, | ||
9282 | 0x800000, | ||
9283 | 0xee001f, | ||
9284 | 0xca0400, | ||
9285 | 0xc2ff00, | ||
9286 | 0xcc0834, | ||
9287 | 0xc13fff, | ||
9288 | 0x7c74cb, | ||
9289 | 0x7cc90b, | ||
9290 | 0x7d010f, | ||
9291 | 0x9902b0, | ||
9292 | 0x7c738b, | ||
9293 | 0x8401bb, | ||
9294 | 0xd7a06f, | ||
9295 | 0x800000, | ||
9296 | 0xee001f, | ||
9297 | 0xca0800, | ||
9298 | 0x281900, | ||
9299 | 0x7d898b, | ||
9300 | 0x958014, | ||
9301 | 0x281404, | ||
9302 | 0xca0c00, | ||
9303 | 0xca1000, | ||
9304 | 0xca1c00, | ||
9305 | 0xca2400, | ||
9306 | 0xe2001f, | ||
9307 | 0xd4c01a, | ||
9308 | 0xd5001a, | ||
9309 | 0xd5401a, | ||
9310 | 0xcc1803, | ||
9311 | 0xcc2c03, | ||
9312 | 0xcc2c03, | ||
9313 | 0xcc2c03, | ||
9314 | 0x7da58b, | ||
9315 | 0x7d9c47, | ||
9316 | 0x984297, | ||
9317 | 0x000000, | ||
9318 | 0x800161, | ||
9319 | 0xd4c01a, | ||
9320 | 0xd4401e, | ||
9321 | 0xd4801e, | ||
9322 | 0x800000, | ||
9323 | 0xee001e, | ||
9324 | 0xe4011e, | ||
9325 | 0xd4001e, | ||
9326 | 0xd4401e, | ||
9327 | 0xee001e, | ||
9328 | 0xca0400, | ||
9329 | 0xa00000, | ||
9330 | 0x7e828b, | ||
9331 | 0xe4013e, | ||
9332 | 0xd4001e, | ||
9333 | 0xd4401e, | ||
9334 | 0xee001e, | ||
9335 | 0xca0400, | ||
9336 | 0xa00000, | ||
9337 | 0x7e828b, | ||
9338 | 0xca0800, | ||
9339 | 0x248c06, | ||
9340 | 0x0ccc06, | ||
9341 | 0x98c006, | ||
9342 | 0xcc104e, | ||
9343 | 0x990004, | ||
9344 | 0xd40073, | ||
9345 | 0xe4011e, | ||
9346 | 0xd4001e, | ||
9347 | 0xd4401e, | ||
9348 | 0xd4801e, | ||
9349 | 0x800000, | ||
9350 | 0xee001e, | ||
9351 | 0xca0800, | ||
9352 | 0xca0c00, | ||
9353 | 0x34d018, | ||
9354 | 0x251001, | ||
9355 | 0x950021, | ||
9356 | 0xc17fff, | ||
9357 | 0xca1000, | ||
9358 | 0xca1400, | ||
9359 | 0xca1800, | ||
9360 | 0xd4801d, | ||
9361 | 0xd4c01d, | ||
9362 | 0x7db18b, | ||
9363 | 0xc14202, | ||
9364 | 0xc2c001, | ||
9365 | 0xd5801d, | ||
9366 | 0x34dc0e, | ||
9367 | 0x7d5d4c, | ||
9368 | 0x7f734c, | ||
9369 | 0xd7401e, | ||
9370 | 0xd5001e, | ||
9371 | 0xd5401e, | ||
9372 | 0xc14200, | ||
9373 | 0xc2c000, | ||
9374 | 0x099c01, | ||
9375 | 0x31dc10, | ||
9376 | 0x7f5f4c, | ||
9377 | 0x7f734c, | ||
9378 | 0x042802, | ||
9379 | 0x7d8380, | ||
9380 | 0xd5a86f, | ||
9381 | 0xd58066, | ||
9382 | 0xd7401e, | ||
9383 | 0xec005e, | ||
9384 | 0xc82402, | ||
9385 | 0xc82402, | ||
9386 | 0x8001b8, | ||
9387 | 0xd60076, | ||
9388 | 0xd4401e, | ||
9389 | 0xd4801e, | ||
9390 | 0xd4c01e, | ||
9391 | 0x800000, | ||
9392 | 0xee001e, | ||
9393 | 0x800000, | ||
9394 | 0xee001f, | ||
9395 | 0xd4001f, | ||
9396 | 0x800000, | ||
9397 | 0xd4001f, | ||
9398 | 0xd4001f, | ||
9399 | 0x880000, | ||
9400 | 0xd4001f, | ||
9401 | 0x000000, | ||
9402 | 0x000000, | ||
9403 | 0x000000, | ||
9404 | 0x000000, | ||
9405 | 0x000000, | ||
9406 | 0x000000, | ||
9407 | 0x000000, | ||
9408 | 0x000000, | ||
9409 | 0x000000, | ||
9410 | 0x000000, | ||
9411 | 0x000000, | ||
9412 | 0x000000, | ||
9413 | 0x000000, | ||
9414 | 0x000000, | ||
9415 | 0x000000, | ||
9416 | 0x000000, | ||
9417 | 0x000000, | ||
9418 | 0x000000, | ||
9419 | 0x000000, | ||
9420 | 0x000000, | ||
9421 | 0x000000, | ||
9422 | 0x000000, | ||
9423 | 0x000000, | ||
9424 | 0x000000, | ||
9425 | 0x000000, | ||
9426 | 0x000000, | ||
9427 | 0x000000, | ||
9428 | 0x000000, | ||
9429 | 0x000000, | ||
9430 | 0x000000, | ||
9431 | 0x000000, | ||
9432 | 0x000000, | ||
9433 | 0x000000, | ||
9434 | 0x000000, | ||
9435 | 0x000000, | ||
9436 | 0x000000, | ||
9437 | 0x000000, | ||
9438 | 0x000000, | ||
9439 | 0x000000, | ||
9440 | 0x000000, | ||
9441 | 0x000000, | ||
9442 | 0x000000, | ||
9443 | 0x000000, | ||
9444 | 0x000000, | ||
9445 | 0x000000, | ||
9446 | 0x000000, | ||
9447 | 0x000000, | ||
9448 | 0x000000, | ||
9449 | 0x000000, | ||
9450 | 0x000000, | ||
9451 | 0x000000, | ||
9452 | 0x000000, | ||
9453 | 0x000000, | ||
9454 | 0x000000, | ||
9455 | 0x000000, | ||
9456 | 0x000000, | ||
9457 | 0x000000, | ||
9458 | 0x000000, | ||
9459 | 0x000000, | ||
9460 | 0x000000, | ||
9461 | 0x000000, | ||
9462 | 0x000000, | ||
9463 | 0x000000, | ||
9464 | 0x000000, | ||
9465 | 0x000000, | ||
9466 | 0x000000, | ||
9467 | 0x010171, | ||
9468 | 0x020178, | ||
9469 | 0x03008f, | ||
9470 | 0x04007f, | ||
9471 | 0x050003, | ||
9472 | 0x06003f, | ||
9473 | 0x070032, | ||
9474 | 0x08012c, | ||
9475 | 0x090046, | ||
9476 | 0x0a0036, | ||
9477 | 0x1001b6, | ||
9478 | 0x1700a2, | ||
9479 | 0x22013a, | ||
9480 | 0x230149, | ||
9481 | 0x2000b4, | ||
9482 | 0x240125, | ||
9483 | 0x27004d, | ||
9484 | 0x28006a, | ||
9485 | 0x2a0060, | ||
9486 | 0x2b0052, | ||
9487 | 0x2f0065, | ||
9488 | 0x320087, | ||
9489 | 0x34017f, | ||
9490 | 0x3c0156, | ||
9491 | 0x3f0072, | ||
9492 | 0x41018c, | ||
9493 | 0x44012e, | ||
9494 | 0x550173, | ||
9495 | 0x56017a, | ||
9496 | 0x60000b, | ||
9497 | 0x610034, | ||
9498 | 0x620038, | ||
9499 | 0x630038, | ||
9500 | 0x640038, | ||
9501 | 0x650038, | ||
9502 | 0x660038, | ||
9503 | 0x670038, | ||
9504 | 0x68003a, | ||
9505 | 0x690041, | ||
9506 | 0x6a0048, | ||
9507 | 0x6b0048, | ||
9508 | 0x6c0048, | ||
9509 | 0x6d0048, | ||
9510 | 0x6e0048, | ||
9511 | 0x6f0048, | ||
9512 | 0x000006, | ||
9513 | 0x000006, | ||
9514 | 0x000006, | ||
9515 | 0x000006, | ||
9516 | 0x000006, | ||
9517 | 0x000006, | ||
9518 | 0x000006, | ||
9519 | 0x000006, | ||
9520 | 0x000006, | ||
9521 | 0x000006, | ||
9522 | 0x000006, | ||
9523 | 0x000006, | ||
9524 | 0x000006, | ||
9525 | 0x000006, | ||
9526 | 0x000006, | ||
9527 | 0x000006, | ||
9528 | 0x000006, | ||
9529 | 0x000006, | ||
9530 | 0x000006, | ||
9531 | }; | ||
9532 | |||
9533 | static const u32 RV635_cp_microcode[][3] = { | ||
9534 | { 0x00000000, 0xc0200400, 0x000 }, | ||
9535 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
9536 | { 0x0000ffff, 0x00284621, 0x000 }, | ||
9537 | { 0x00000000, 0xd9004800, 0x000 }, | ||
9538 | { 0x00000000, 0xc0200400, 0x000 }, | ||
9539 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
9540 | { 0x00000000, 0x00e00000, 0x000 }, | ||
9541 | { 0x00010000, 0xc0294620, 0x000 }, | ||
9542 | { 0x00000000, 0xd9004800, 0x000 }, | ||
9543 | { 0x00000000, 0xc0200400, 0x000 }, | ||
9544 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
9545 | { 0x81000000, 0x00204411, 0x000 }, | ||
9546 | { 0x00000001, 0x00204811, 0x000 }, | ||
9547 | { 0x00042004, 0x00604411, 0x68a }, | ||
9548 | { 0x00000000, 0x00600000, 0x62e }, | ||
9549 | { 0x00000000, 0x00600000, 0x642 }, | ||
9550 | { 0x00000000, 0xc0200800, 0x000 }, | ||
9551 | { 0x00000f00, 0x00281622, 0x000 }, | ||
9552 | { 0x00000008, 0x00211625, 0x000 }, | ||
9553 | { 0x00000018, 0x00203625, 0x000 }, | ||
9554 | { 0x8d000000, 0x00204411, 0x000 }, | ||
9555 | { 0x00000004, 0x002f0225, 0x000 }, | ||
9556 | { 0x00000000, 0x0ce00000, 0x018 }, | ||
9557 | { 0x00412000, 0x00404811, 0x019 }, | ||
9558 | { 0x00422000, 0x00204811, 0x000 }, | ||
9559 | { 0x8e000000, 0x00204411, 0x000 }, | ||
9560 | { 0x00000028, 0x00204a2d, 0x000 }, | ||
9561 | { 0x90000000, 0x00204411, 0x000 }, | ||
9562 | { 0x00000000, 0x00204805, 0x000 }, | ||
9563 | { 0x0000000c, 0x00211622, 0x000 }, | ||
9564 | { 0x00000003, 0x00281625, 0x000 }, | ||
9565 | { 0x00000019, 0x00211a22, 0x000 }, | ||
9566 | { 0x00000004, 0x00281a26, 0x000 }, | ||
9567 | { 0x00000000, 0x002914c5, 0x000 }, | ||
9568 | { 0x00000019, 0x00203625, 0x000 }, | ||
9569 | { 0x00000000, 0x003a1402, 0x000 }, | ||
9570 | { 0x00000016, 0x00211625, 0x000 }, | ||
9571 | { 0x00000003, 0x00281625, 0x000 }, | ||
9572 | { 0x00000017, 0x00200e2d, 0x000 }, | ||
9573 | { 0xfffffffc, 0x00280e23, 0x000 }, | ||
9574 | { 0x00000000, 0x002914a3, 0x000 }, | ||
9575 | { 0x00000017, 0x00203625, 0x000 }, | ||
9576 | { 0x00008000, 0x00280e22, 0x000 }, | ||
9577 | { 0x00000007, 0x00220e23, 0x000 }, | ||
9578 | { 0x00000000, 0x0029386e, 0x000 }, | ||
9579 | { 0x20000000, 0x00280e22, 0x000 }, | ||
9580 | { 0x00000006, 0x00210e23, 0x000 }, | ||
9581 | { 0x00000000, 0x0029386e, 0x000 }, | ||
9582 | { 0x00000000, 0x00220222, 0x000 }, | ||
9583 | { 0x00000000, 0x14e00000, 0x038 }, | ||
9584 | { 0x00000000, 0x2ee00000, 0x035 }, | ||
9585 | { 0x00000000, 0x2ce00000, 0x037 }, | ||
9586 | { 0x00000000, 0x00400e2d, 0x039 }, | ||
9587 | { 0x00000008, 0x00200e2d, 0x000 }, | ||
9588 | { 0x00000009, 0x0040122d, 0x046 }, | ||
9589 | { 0x00000001, 0x00400e2d, 0x039 }, | ||
9590 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
9591 | { 0x003ffffc, 0x00281223, 0x000 }, | ||
9592 | { 0x00000002, 0x00221224, 0x000 }, | ||
9593 | { 0x0000001f, 0x00211e23, 0x000 }, | ||
9594 | { 0x00000000, 0x14e00000, 0x03e }, | ||
9595 | { 0x00000008, 0x00401c11, 0x041 }, | ||
9596 | { 0x0000000d, 0x00201e2d, 0x000 }, | ||
9597 | { 0x0000000f, 0x00281e27, 0x000 }, | ||
9598 | { 0x00000003, 0x00221e27, 0x000 }, | ||
9599 | { 0x7fc00000, 0x00281a23, 0x000 }, | ||
9600 | { 0x00000014, 0x00211a26, 0x000 }, | ||
9601 | { 0x00000001, 0x00331a26, 0x000 }, | ||
9602 | { 0x00000008, 0x00221a26, 0x000 }, | ||
9603 | { 0x00000000, 0x00290cc7, 0x000 }, | ||
9604 | { 0x00000027, 0x00203624, 0x000 }, | ||
9605 | { 0x00007f00, 0x00281221, 0x000 }, | ||
9606 | { 0x00001400, 0x002f0224, 0x000 }, | ||
9607 | { 0x00000000, 0x0ce00000, 0x04b }, | ||
9608 | { 0x00000001, 0x00290e23, 0x000 }, | ||
9609 | { 0x0000000e, 0x00203623, 0x000 }, | ||
9610 | { 0x0000e000, 0x00204411, 0x000 }, | ||
9611 | { 0xfff80000, 0x00294a23, 0x000 }, | ||
9612 | { 0x00000000, 0x003a2c02, 0x000 }, | ||
9613 | { 0x00000002, 0x00220e2b, 0x000 }, | ||
9614 | { 0xfc000000, 0x00280e23, 0x000 }, | ||
9615 | { 0x0000000f, 0x00203623, 0x000 }, | ||
9616 | { 0x00001fff, 0x00294a23, 0x000 }, | ||
9617 | { 0x00000027, 0x00204a2d, 0x000 }, | ||
9618 | { 0x00000000, 0x00204811, 0x000 }, | ||
9619 | { 0x00000029, 0x00200e2d, 0x000 }, | ||
9620 | { 0x060a0200, 0x00294a23, 0x000 }, | ||
9621 | { 0x00000000, 0x00204811, 0x000 }, | ||
9622 | { 0x00000000, 0x00204811, 0x000 }, | ||
9623 | { 0x00000001, 0x00210222, 0x000 }, | ||
9624 | { 0x00000000, 0x14e00000, 0x061 }, | ||
9625 | { 0x00000000, 0x2ee00000, 0x05f }, | ||
9626 | { 0x00000000, 0x2ce00000, 0x05e }, | ||
9627 | { 0x00000000, 0x00400e2d, 0x062 }, | ||
9628 | { 0x00000001, 0x00400e2d, 0x062 }, | ||
9629 | { 0x0000000a, 0x00200e2d, 0x000 }, | ||
9630 | { 0x0000000b, 0x0040122d, 0x06a }, | ||
9631 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
9632 | { 0x003ffffc, 0x00281223, 0x000 }, | ||
9633 | { 0x00000002, 0x00221224, 0x000 }, | ||
9634 | { 0x7fc00000, 0x00281623, 0x000 }, | ||
9635 | { 0x00000014, 0x00211625, 0x000 }, | ||
9636 | { 0x00000001, 0x00331625, 0x000 }, | ||
9637 | { 0x80000000, 0x00280e23, 0x000 }, | ||
9638 | { 0x00000000, 0x00290ca3, 0x000 }, | ||
9639 | { 0x3ffffc00, 0x00290e23, 0x000 }, | ||
9640 | { 0x0000001f, 0x00211e23, 0x000 }, | ||
9641 | { 0x00000000, 0x14e00000, 0x06d }, | ||
9642 | { 0x00000100, 0x00401c11, 0x070 }, | ||
9643 | { 0x0000000d, 0x00201e2d, 0x000 }, | ||
9644 | { 0x000000f0, 0x00281e27, 0x000 }, | ||
9645 | { 0x00000004, 0x00221e27, 0x000 }, | ||
9646 | { 0x81000000, 0x00204411, 0x000 }, | ||
9647 | { 0x0000000d, 0x00204811, 0x000 }, | ||
9648 | { 0xfffff0ff, 0x00281a30, 0x000 }, | ||
9649 | { 0x0000a028, 0x00204411, 0x000 }, | ||
9650 | { 0x00000000, 0x002948e6, 0x000 }, | ||
9651 | { 0x0000a018, 0x00204411, 0x000 }, | ||
9652 | { 0x3fffffff, 0x00284a23, 0x000 }, | ||
9653 | { 0x0000a010, 0x00204411, 0x000 }, | ||
9654 | { 0x00000000, 0x00204804, 0x000 }, | ||
9655 | { 0x00000030, 0x0020162d, 0x000 }, | ||
9656 | { 0x00000002, 0x00291625, 0x000 }, | ||
9657 | { 0x00000030, 0x00203625, 0x000 }, | ||
9658 | { 0x00000025, 0x0020162d, 0x000 }, | ||
9659 | { 0x00000000, 0x002f00a3, 0x000 }, | ||
9660 | { 0x00000000, 0x0cc00000, 0x083 }, | ||
9661 | { 0x00000026, 0x0020162d, 0x000 }, | ||
9662 | { 0x00000000, 0x002f00a4, 0x000 }, | ||
9663 | { 0x00000000, 0x0cc00000, 0x084 }, | ||
9664 | { 0x00000000, 0x00400000, 0x08a }, | ||
9665 | { 0x00000025, 0x00203623, 0x000 }, | ||
9666 | { 0x00000026, 0x00203624, 0x000 }, | ||
9667 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
9668 | { 0x00000002, 0x00210227, 0x000 }, | ||
9669 | { 0x00000000, 0x14e00000, 0x08a }, | ||
9670 | { 0x00000000, 0x00600000, 0x665 }, | ||
9671 | { 0x00000000, 0x00600000, 0x659 }, | ||
9672 | { 0x00000002, 0x00210e22, 0x000 }, | ||
9673 | { 0x00000000, 0x14c00000, 0x08d }, | ||
9674 | { 0x00000012, 0xc0403620, 0x093 }, | ||
9675 | { 0x00000000, 0x2ee00000, 0x091 }, | ||
9676 | { 0x00000000, 0x2ce00000, 0x090 }, | ||
9677 | { 0x00000002, 0x00400e2d, 0x092 }, | ||
9678 | { 0x00000003, 0x00400e2d, 0x092 }, | ||
9679 | { 0x0000000c, 0x00200e2d, 0x000 }, | ||
9680 | { 0x00000012, 0x00203623, 0x000 }, | ||
9681 | { 0x00000003, 0x00210e22, 0x000 }, | ||
9682 | { 0x00000000, 0x14c00000, 0x098 }, | ||
9683 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
9684 | { 0x00000000, 0xc0204800, 0x000 }, | ||
9685 | { 0x00000000, 0xc0404800, 0x0a0 }, | ||
9686 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
9687 | { 0x00000000, 0x00204811, 0x000 }, | ||
9688 | { 0x00000000, 0x2ee00000, 0x09e }, | ||
9689 | { 0x00000000, 0x2ce00000, 0x09d }, | ||
9690 | { 0x00000002, 0x00400e2d, 0x09f }, | ||
9691 | { 0x00000003, 0x00400e2d, 0x09f }, | ||
9692 | { 0x0000000c, 0x00200e2d, 0x000 }, | ||
9693 | { 0x00000000, 0x00204803, 0x000 }, | ||
9694 | { 0x00000000, 0x003a0c02, 0x000 }, | ||
9695 | { 0x003f0000, 0x00280e23, 0x000 }, | ||
9696 | { 0x00000010, 0x00210e23, 0x000 }, | ||
9697 | { 0x00000011, 0x00203623, 0x000 }, | ||
9698 | { 0x0000001e, 0x0021022b, 0x000 }, | ||
9699 | { 0x00000000, 0x14c00000, 0x0a7 }, | ||
9700 | { 0x00000016, 0xc0203620, 0x000 }, | ||
9701 | { 0x0000001f, 0x0021022b, 0x000 }, | ||
9702 | { 0x00000000, 0x14c00000, 0x0aa }, | ||
9703 | { 0x00000015, 0xc0203620, 0x000 }, | ||
9704 | { 0x00000008, 0x00210e2b, 0x000 }, | ||
9705 | { 0x0000007f, 0x00280e23, 0x000 }, | ||
9706 | { 0x00000000, 0x002f0223, 0x000 }, | ||
9707 | { 0x00000000, 0x0ce00000, 0x0e1 }, | ||
9708 | { 0x00000000, 0x27000000, 0x000 }, | ||
9709 | { 0x00000000, 0x00600000, 0x2a3 }, | ||
9710 | { 0x00000001, 0x002f0223, 0x000 }, | ||
9711 | { 0x00000000, 0x0ae00000, 0x0b3 }, | ||
9712 | { 0x00000000, 0x00600000, 0x13a }, | ||
9713 | { 0x81000000, 0x00204411, 0x000 }, | ||
9714 | { 0x00000006, 0x00204811, 0x000 }, | ||
9715 | { 0x0000000c, 0x00221e30, 0x000 }, | ||
9716 | { 0x99800000, 0x00204411, 0x000 }, | ||
9717 | { 0x00000004, 0x0020122d, 0x000 }, | ||
9718 | { 0x00000008, 0x00221224, 0x000 }, | ||
9719 | { 0x00000010, 0x00201811, 0x000 }, | ||
9720 | { 0x00000000, 0x00291ce4, 0x000 }, | ||
9721 | { 0x00000000, 0x00604807, 0x12f }, | ||
9722 | { 0x9b000000, 0x00204411, 0x000 }, | ||
9723 | { 0x00000000, 0x00204802, 0x000 }, | ||
9724 | { 0x9c000000, 0x00204411, 0x000 }, | ||
9725 | { 0x00000000, 0x0033146f, 0x000 }, | ||
9726 | { 0x00000001, 0x00333e23, 0x000 }, | ||
9727 | { 0x00000000, 0xd9004800, 0x000 }, | ||
9728 | { 0x00000000, 0x00203c05, 0x000 }, | ||
9729 | { 0x81000000, 0x00204411, 0x000 }, | ||
9730 | { 0x0000000e, 0x00204811, 0x000 }, | ||
9731 | { 0x00000000, 0x00201010, 0x000 }, | ||
9732 | { 0x0000e007, 0x00204411, 0x000 }, | ||
9733 | { 0x0000000f, 0x0021022b, 0x000 }, | ||
9734 | { 0x00000000, 0x14c00000, 0x0cb }, | ||
9735 | { 0x00f8ff08, 0x00204811, 0x000 }, | ||
9736 | { 0x98000000, 0x00404811, 0x0dc }, | ||
9737 | { 0x000000f0, 0x00280e22, 0x000 }, | ||
9738 | { 0x000000a0, 0x002f0223, 0x000 }, | ||
9739 | { 0x00000000, 0x0cc00000, 0x0da }, | ||
9740 | { 0x00000011, 0x00200e2d, 0x000 }, | ||
9741 | { 0x00000001, 0x002f0223, 0x000 }, | ||
9742 | { 0x00000000, 0x0ce00000, 0x0d5 }, | ||
9743 | { 0x00000002, 0x002f0223, 0x000 }, | ||
9744 | { 0x00000000, 0x0ce00000, 0x0d4 }, | ||
9745 | { 0x00003f00, 0x00400c11, 0x0d6 }, | ||
9746 | { 0x00001f00, 0x00400c11, 0x0d6 }, | ||
9747 | { 0x00000f00, 0x00200c11, 0x000 }, | ||
9748 | { 0x00380009, 0x00294a23, 0x000 }, | ||
9749 | { 0x3f000000, 0x00280e2b, 0x000 }, | ||
9750 | { 0x00000002, 0x00220e23, 0x000 }, | ||
9751 | { 0x00000007, 0x00494a23, 0x0dc }, | ||
9752 | { 0x00380f09, 0x00204811, 0x000 }, | ||
9753 | { 0x68000007, 0x00204811, 0x000 }, | ||
9754 | { 0x00000008, 0x00214a27, 0x000 }, | ||
9755 | { 0x00000000, 0x00204811, 0x000 }, | ||
9756 | { 0x060a0200, 0x00294a24, 0x000 }, | ||
9757 | { 0x00000000, 0x00204811, 0x000 }, | ||
9758 | { 0x00000000, 0x00204811, 0x000 }, | ||
9759 | { 0x0000a202, 0x00204411, 0x000 }, | ||
9760 | { 0x00ff0000, 0x00280e22, 0x000 }, | ||
9761 | { 0x00000080, 0x00294a23, 0x000 }, | ||
9762 | { 0x00000027, 0x00200e2d, 0x000 }, | ||
9763 | { 0x00000026, 0x0020122d, 0x000 }, | ||
9764 | { 0x00000000, 0x002f0083, 0x000 }, | ||
9765 | { 0x00000000, 0x0ce00000, 0x0ea }, | ||
9766 | { 0x00000000, 0x00600000, 0x65f }, | ||
9767 | { 0x00000000, 0x00400000, 0x0eb }, | ||
9768 | { 0x00000000, 0x00600000, 0x662 }, | ||
9769 | { 0x00000007, 0x0020222d, 0x000 }, | ||
9770 | { 0x00000005, 0x00220e22, 0x000 }, | ||
9771 | { 0x00100000, 0x00280e23, 0x000 }, | ||
9772 | { 0x00000000, 0x00292068, 0x000 }, | ||
9773 | { 0x00000000, 0x003a0c02, 0x000 }, | ||
9774 | { 0x000000ef, 0x00280e23, 0x000 }, | ||
9775 | { 0x00000000, 0x00292068, 0x000 }, | ||
9776 | { 0x00000017, 0x00200e2d, 0x000 }, | ||
9777 | { 0x00000003, 0x00210223, 0x000 }, | ||
9778 | { 0x00000000, 0x14e00000, 0x0f8 }, | ||
9779 | { 0x0000000b, 0x00210228, 0x000 }, | ||
9780 | { 0x00000000, 0x14c00000, 0x0f8 }, | ||
9781 | { 0x00000400, 0x00292228, 0x000 }, | ||
9782 | { 0x00000014, 0x00203628, 0x000 }, | ||
9783 | { 0x0000001c, 0x00210e22, 0x000 }, | ||
9784 | { 0x00000000, 0x14c00000, 0x0fd }, | ||
9785 | { 0x0000a30c, 0x00204411, 0x000 }, | ||
9786 | { 0x00000000, 0x00204811, 0x000 }, | ||
9787 | { 0x0000001e, 0x00210e22, 0x000 }, | ||
9788 | { 0x00000000, 0x14c00000, 0x10b }, | ||
9789 | { 0x0000a30f, 0x00204411, 0x000 }, | ||
9790 | { 0x00000011, 0x00200e2d, 0x000 }, | ||
9791 | { 0x00000001, 0x002f0223, 0x000 }, | ||
9792 | { 0x00000000, 0x0cc00000, 0x104 }, | ||
9793 | { 0xffffffff, 0x00404811, 0x10b }, | ||
9794 | { 0x00000002, 0x002f0223, 0x000 }, | ||
9795 | { 0x00000000, 0x0cc00000, 0x107 }, | ||
9796 | { 0x0000ffff, 0x00404811, 0x10b }, | ||
9797 | { 0x00000004, 0x002f0223, 0x000 }, | ||
9798 | { 0x00000000, 0x0cc00000, 0x10a }, | ||
9799 | { 0x000000ff, 0x00404811, 0x10b }, | ||
9800 | { 0x00000001, 0x00204811, 0x000 }, | ||
9801 | { 0x0002c400, 0x00204411, 0x000 }, | ||
9802 | { 0x0000001f, 0x00210e22, 0x000 }, | ||
9803 | { 0x00000000, 0x14c00000, 0x112 }, | ||
9804 | { 0x00000010, 0x40210e20, 0x000 }, | ||
9805 | { 0x00000013, 0x00203623, 0x000 }, | ||
9806 | { 0x00000018, 0x40224a20, 0x000 }, | ||
9807 | { 0x00000010, 0xc0424a20, 0x114 }, | ||
9808 | { 0x00000000, 0x00200c11, 0x000 }, | ||
9809 | { 0x00000013, 0x00203623, 0x000 }, | ||
9810 | { 0x00000000, 0x00204811, 0x000 }, | ||
9811 | { 0x00000000, 0x00204811, 0x000 }, | ||
9812 | { 0x0000000a, 0x00201011, 0x000 }, | ||
9813 | { 0x00000000, 0x002f0224, 0x000 }, | ||
9814 | { 0x00000000, 0x0ce00000, 0x11b }, | ||
9815 | { 0x00000000, 0x00204811, 0x000 }, | ||
9816 | { 0x00000001, 0x00531224, 0x117 }, | ||
9817 | { 0xffbfffff, 0x00283a2e, 0x000 }, | ||
9818 | { 0x0000001b, 0x00210222, 0x000 }, | ||
9819 | { 0x00000000, 0x14c00000, 0x12e }, | ||
9820 | { 0x81000000, 0x00204411, 0x000 }, | ||
9821 | { 0x0000000d, 0x00204811, 0x000 }, | ||
9822 | { 0x00000018, 0x00220e30, 0x000 }, | ||
9823 | { 0xfc000000, 0x00280e23, 0x000 }, | ||
9824 | { 0x81000000, 0x00204411, 0x000 }, | ||
9825 | { 0x0000000e, 0x00204811, 0x000 }, | ||
9826 | { 0x00000000, 0x00201010, 0x000 }, | ||
9827 | { 0x0000e00e, 0x00204411, 0x000 }, | ||
9828 | { 0x07f8ff08, 0x00204811, 0x000 }, | ||
9829 | { 0x00000000, 0x00294a23, 0x000 }, | ||
9830 | { 0x0000001c, 0x00201e2d, 0x000 }, | ||
9831 | { 0x00000008, 0x00214a27, 0x000 }, | ||
9832 | { 0x00000000, 0x00204811, 0x000 }, | ||
9833 | { 0x060a0200, 0x00294a24, 0x000 }, | ||
9834 | { 0x00000000, 0x00204811, 0x000 }, | ||
9835 | { 0x00000000, 0x00204811, 0x000 }, | ||
9836 | { 0x00000000, 0x00800000, 0x000 }, | ||
9837 | { 0x81000000, 0x00204411, 0x000 }, | ||
9838 | { 0x00000001, 0x00204811, 0x000 }, | ||
9839 | { 0x0000217c, 0x00204411, 0x000 }, | ||
9840 | { 0x00800000, 0x00204811, 0x000 }, | ||
9841 | { 0x00000000, 0x00204806, 0x000 }, | ||
9842 | { 0x00000008, 0x00214a27, 0x000 }, | ||
9843 | { 0x00000000, 0x17000000, 0x000 }, | ||
9844 | { 0x0004217f, 0x00604411, 0x68a }, | ||
9845 | { 0x0000001f, 0x00210230, 0x000 }, | ||
9846 | { 0x00000000, 0x14c00000, 0x689 }, | ||
9847 | { 0x00000004, 0x00404c11, 0x135 }, | ||
9848 | { 0x81000000, 0x00204411, 0x000 }, | ||
9849 | { 0x00000001, 0x00204811, 0x000 }, | ||
9850 | { 0x000021f8, 0x00204411, 0x000 }, | ||
9851 | { 0x0000001c, 0x00204811, 0x000 }, | ||
9852 | { 0x000421f9, 0x00604411, 0x68a }, | ||
9853 | { 0x00000011, 0x00210230, 0x000 }, | ||
9854 | { 0x00000000, 0x14e00000, 0x13c }, | ||
9855 | { 0x00000000, 0x00800000, 0x000 }, | ||
9856 | { 0x00000000, 0x00600000, 0x00b }, | ||
9857 | { 0x00000000, 0x00600411, 0x315 }, | ||
9858 | { 0x00000000, 0x00200411, 0x000 }, | ||
9859 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
9860 | { 0x00000000, 0x00600000, 0x160 }, | ||
9861 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
9862 | { 0x00000010, 0xc0211220, 0x000 }, | ||
9863 | { 0x0000ffff, 0x40280620, 0x000 }, | ||
9864 | { 0x00000010, 0xc0210a20, 0x000 }, | ||
9865 | { 0x00000000, 0x00341461, 0x000 }, | ||
9866 | { 0x00000000, 0x00741882, 0x2bb }, | ||
9867 | { 0x0001a1fd, 0x00604411, 0x2e0 }, | ||
9868 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
9869 | { 0x00000000, 0x0cc00000, 0x147 }, | ||
9870 | { 0x00000000, 0xc0400400, 0x001 }, | ||
9871 | { 0x00000000, 0x00600000, 0x00b }, | ||
9872 | { 0x00000000, 0x00600411, 0x315 }, | ||
9873 | { 0x00000000, 0x00200411, 0x000 }, | ||
9874 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
9875 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
9876 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
9877 | { 0x00000000, 0x00600000, 0x160 }, | ||
9878 | { 0x00000010, 0x40210e20, 0x000 }, | ||
9879 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
9880 | { 0x00000010, 0x40211620, 0x000 }, | ||
9881 | { 0x0000ffff, 0xc0681a20, 0x2bb }, | ||
9882 | { 0x0001a1fd, 0x00604411, 0x2e0 }, | ||
9883 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
9884 | { 0x00000000, 0x0cc00000, 0x158 }, | ||
9885 | { 0x00000000, 0xc0400400, 0x001 }, | ||
9886 | { 0x0000225c, 0x00204411, 0x000 }, | ||
9887 | { 0x00000001, 0x00300a2f, 0x000 }, | ||
9888 | { 0x00000001, 0x00210a22, 0x000 }, | ||
9889 | { 0x00000003, 0x00384a22, 0x000 }, | ||
9890 | { 0x00002256, 0x00204411, 0x000 }, | ||
9891 | { 0x0000001a, 0x00204811, 0x000 }, | ||
9892 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
9893 | { 0x00000001, 0x00804811, 0x000 }, | ||
9894 | { 0x00000000, 0x00600000, 0x00b }, | ||
9895 | { 0x00000000, 0x00600000, 0x18f }, | ||
9896 | { 0x00000000, 0x00600000, 0x1a0 }, | ||
9897 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
9898 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
9899 | { 0x00000000, 0x00202c08, 0x000 }, | ||
9900 | { 0x00000000, 0x00202411, 0x000 }, | ||
9901 | { 0x00000000, 0x00202811, 0x000 }, | ||
9902 | { 0x00002256, 0x00204411, 0x000 }, | ||
9903 | { 0x00000016, 0x00204811, 0x000 }, | ||
9904 | { 0x0000225c, 0x00204411, 0x000 }, | ||
9905 | { 0x00000003, 0x00204811, 0x000 }, | ||
9906 | { 0x93800000, 0x00204411, 0x000 }, | ||
9907 | { 0x00000002, 0x00221e29, 0x000 }, | ||
9908 | { 0x00000000, 0x007048eb, 0x19c }, | ||
9909 | { 0x00000000, 0x00600000, 0x2bb }, | ||
9910 | { 0x00000001, 0x40330620, 0x000 }, | ||
9911 | { 0x00000000, 0xc0302409, 0x000 }, | ||
9912 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
9913 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
9914 | { 0x00000000, 0x00600000, 0x2a3 }, | ||
9915 | { 0x00000000, 0x002f0221, 0x000 }, | ||
9916 | { 0x00000000, 0x0ae00000, 0x181 }, | ||
9917 | { 0x00000000, 0x00600000, 0x13a }, | ||
9918 | { 0x00000000, 0x00400000, 0x186 }, | ||
9919 | { 0x95000000, 0x00204411, 0x000 }, | ||
9920 | { 0x00000000, 0x002f0221, 0x000 }, | ||
9921 | { 0x00000000, 0x0ce00000, 0x186 }, | ||
9922 | { 0x00000000, 0xc0204800, 0x000 }, | ||
9923 | { 0x00000001, 0x00530621, 0x182 }, | ||
9924 | { 0x92000000, 0x00204411, 0x000 }, | ||
9925 | { 0x00000000, 0xc0604800, 0x197 }, | ||
9926 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
9927 | { 0x00000011, 0x0020062d, 0x000 }, | ||
9928 | { 0x00000000, 0x0078042a, 0x2fb }, | ||
9929 | { 0x00000000, 0x00202809, 0x000 }, | ||
9930 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
9931 | { 0x00000000, 0x0cc00000, 0x174 }, | ||
9932 | { 0x00000000, 0xc0400400, 0x001 }, | ||
9933 | { 0x00000210, 0x00600411, 0x315 }, | ||
9934 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
9935 | { 0x00000000, 0x0ce00000, 0x194 }, | ||
9936 | { 0x00000015, 0xc0203620, 0x000 }, | ||
9937 | { 0x00000016, 0xc0203620, 0x000 }, | ||
9938 | { 0x3f800000, 0x00200411, 0x000 }, | ||
9939 | { 0x46000000, 0x00600811, 0x1b2 }, | ||
9940 | { 0x00000000, 0x00800000, 0x000 }, | ||
9941 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
9942 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
9943 | { 0x00000000, 0x0cc00000, 0x19b }, | ||
9944 | { 0x00000001, 0x00804811, 0x000 }, | ||
9945 | { 0x00000021, 0x00804811, 0x000 }, | ||
9946 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
9947 | { 0x00000010, 0xc0211220, 0x000 }, | ||
9948 | { 0x0000ffff, 0x40281620, 0x000 }, | ||
9949 | { 0x00000010, 0xc0811a20, 0x000 }, | ||
9950 | { 0x81000000, 0x00204411, 0x000 }, | ||
9951 | { 0x00000006, 0x00204811, 0x000 }, | ||
9952 | { 0x00000008, 0x00221e30, 0x000 }, | ||
9953 | { 0x00000029, 0x00201a2d, 0x000 }, | ||
9954 | { 0x0000e000, 0x00204411, 0x000 }, | ||
9955 | { 0xfffbff09, 0x00204811, 0x000 }, | ||
9956 | { 0x0000000f, 0x0020222d, 0x000 }, | ||
9957 | { 0x00001fff, 0x00294a28, 0x000 }, | ||
9958 | { 0x00000006, 0x0020222d, 0x000 }, | ||
9959 | { 0x00000000, 0x002920e8, 0x000 }, | ||
9960 | { 0x00000000, 0x00204808, 0x000 }, | ||
9961 | { 0x00000000, 0x00204811, 0x000 }, | ||
9962 | { 0x060a0200, 0x00294a26, 0x000 }, | ||
9963 | { 0x00000000, 0x00204811, 0x000 }, | ||
9964 | { 0x00000000, 0x00204811, 0x000 }, | ||
9965 | { 0x00000100, 0x00201811, 0x000 }, | ||
9966 | { 0x00000008, 0x00621e28, 0x12f }, | ||
9967 | { 0x00000008, 0x00822228, 0x000 }, | ||
9968 | { 0x0002c000, 0x00204411, 0x000 }, | ||
9969 | { 0x00000015, 0x00600e2d, 0x1bd }, | ||
9970 | { 0x00000016, 0x00600e2d, 0x1bd }, | ||
9971 | { 0x0000c008, 0x00204411, 0x000 }, | ||
9972 | { 0x00000017, 0x00200e2d, 0x000 }, | ||
9973 | { 0x00000000, 0x14c00000, 0x1b9 }, | ||
9974 | { 0x00000000, 0x00200411, 0x000 }, | ||
9975 | { 0x00000000, 0x00204801, 0x000 }, | ||
9976 | { 0x39000000, 0x00204811, 0x000 }, | ||
9977 | { 0x00000000, 0x00204811, 0x000 }, | ||
9978 | { 0x00000000, 0x00804802, 0x000 }, | ||
9979 | { 0x00000018, 0x00202e2d, 0x000 }, | ||
9980 | { 0x00000000, 0x003b0d63, 0x000 }, | ||
9981 | { 0x00000008, 0x00224a23, 0x000 }, | ||
9982 | { 0x00000010, 0x00224a23, 0x000 }, | ||
9983 | { 0x00000018, 0x00224a23, 0x000 }, | ||
9984 | { 0x00000000, 0x00804803, 0x000 }, | ||
9985 | { 0x00000000, 0x00600000, 0x00b }, | ||
9986 | { 0x00001000, 0x00600411, 0x315 }, | ||
9987 | { 0x00000000, 0x00200411, 0x000 }, | ||
9988 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
9989 | { 0x00000007, 0x0021062f, 0x000 }, | ||
9990 | { 0x00000013, 0x00200a2d, 0x000 }, | ||
9991 | { 0x00000001, 0x00202c11, 0x000 }, | ||
9992 | { 0x0000ffff, 0x40282220, 0x000 }, | ||
9993 | { 0x0000000f, 0x00262228, 0x000 }, | ||
9994 | { 0x00000010, 0x40212620, 0x000 }, | ||
9995 | { 0x0000000f, 0x00262629, 0x000 }, | ||
9996 | { 0x00000000, 0x00202802, 0x000 }, | ||
9997 | { 0x00002256, 0x00204411, 0x000 }, | ||
9998 | { 0x0000001b, 0x00204811, 0x000 }, | ||
9999 | { 0x00000000, 0x002f0221, 0x000 }, | ||
10000 | { 0x00000000, 0x0ce00000, 0x1e0 }, | ||
10001 | { 0x0000225c, 0x00204411, 0x000 }, | ||
10002 | { 0x00000081, 0x00204811, 0x000 }, | ||
10003 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
10004 | { 0x00000001, 0x00204811, 0x000 }, | ||
10005 | { 0x00000080, 0x00201c11, 0x000 }, | ||
10006 | { 0x00000000, 0x002f0227, 0x000 }, | ||
10007 | { 0x00000000, 0x0ce00000, 0x1dc }, | ||
10008 | { 0x00000000, 0x00600000, 0x1e9 }, | ||
10009 | { 0x00000001, 0x00531e27, 0x1d8 }, | ||
10010 | { 0x00000001, 0x00202c11, 0x000 }, | ||
10011 | { 0x0000001f, 0x00280a22, 0x000 }, | ||
10012 | { 0x0000001f, 0x00282a2a, 0x000 }, | ||
10013 | { 0x00000001, 0x00530621, 0x1d1 }, | ||
10014 | { 0x0000225c, 0x00204411, 0x000 }, | ||
10015 | { 0x00000002, 0x00304a2f, 0x000 }, | ||
10016 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
10017 | { 0x00000001, 0x00204811, 0x000 }, | ||
10018 | { 0x00000001, 0x00301e2f, 0x000 }, | ||
10019 | { 0x00000000, 0x002f0227, 0x000 }, | ||
10020 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
10021 | { 0x00000000, 0x00600000, 0x1e9 }, | ||
10022 | { 0x00000001, 0x00531e27, 0x1e5 }, | ||
10023 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
10024 | { 0x0000000f, 0x00260e23, 0x000 }, | ||
10025 | { 0x00000010, 0xc0211220, 0x000 }, | ||
10026 | { 0x0000000f, 0x00261224, 0x000 }, | ||
10027 | { 0x00000000, 0x00201411, 0x000 }, | ||
10028 | { 0x00000000, 0x00601811, 0x2bb }, | ||
10029 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
10030 | { 0x00000000, 0x002f022b, 0x000 }, | ||
10031 | { 0x00000000, 0x0ce00000, 0x1f8 }, | ||
10032 | { 0x00000010, 0x00221628, 0x000 }, | ||
10033 | { 0xffff0000, 0x00281625, 0x000 }, | ||
10034 | { 0x0000ffff, 0x00281a29, 0x000 }, | ||
10035 | { 0x00000000, 0x002948c5, 0x000 }, | ||
10036 | { 0x00000000, 0x0020480a, 0x000 }, | ||
10037 | { 0x00000000, 0x00202c11, 0x000 }, | ||
10038 | { 0x00000010, 0x00221623, 0x000 }, | ||
10039 | { 0xffff0000, 0x00281625, 0x000 }, | ||
10040 | { 0x0000ffff, 0x00281a24, 0x000 }, | ||
10041 | { 0x00000000, 0x002948c5, 0x000 }, | ||
10042 | { 0x00000000, 0x00731503, 0x205 }, | ||
10043 | { 0x00000000, 0x00201805, 0x000 }, | ||
10044 | { 0x00000000, 0x00731524, 0x205 }, | ||
10045 | { 0x00000000, 0x002d14c5, 0x000 }, | ||
10046 | { 0x00000000, 0x003008a2, 0x000 }, | ||
10047 | { 0x00000000, 0x00204802, 0x000 }, | ||
10048 | { 0x00000000, 0x00202802, 0x000 }, | ||
10049 | { 0x00000000, 0x00202003, 0x000 }, | ||
10050 | { 0x00000000, 0x00802404, 0x000 }, | ||
10051 | { 0x0000000f, 0x00210225, 0x000 }, | ||
10052 | { 0x00000000, 0x14c00000, 0x689 }, | ||
10053 | { 0x00000000, 0x002b1405, 0x000 }, | ||
10054 | { 0x00000001, 0x00901625, 0x000 }, | ||
10055 | { 0x00000000, 0x00600000, 0x00b }, | ||
10056 | { 0x00000000, 0x00600411, 0x315 }, | ||
10057 | { 0x00000000, 0x00200411, 0x000 }, | ||
10058 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
10059 | { 0x00002256, 0x00204411, 0x000 }, | ||
10060 | { 0x0000001a, 0x00294a22, 0x000 }, | ||
10061 | { 0x00000000, 0xc0200000, 0x000 }, | ||
10062 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
10063 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
10064 | { 0x00000000, 0xc0200400, 0x000 }, | ||
10065 | { 0x0000225c, 0x00204411, 0x000 }, | ||
10066 | { 0x00000003, 0x00384a21, 0x000 }, | ||
10067 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
10068 | { 0x00000001, 0x00204811, 0x000 }, | ||
10069 | { 0x0000ffff, 0x40281220, 0x000 }, | ||
10070 | { 0x00000010, 0xc0211a20, 0x000 }, | ||
10071 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
10072 | { 0x00000010, 0xc0211620, 0x000 }, | ||
10073 | { 0x00000000, 0x00741465, 0x2bb }, | ||
10074 | { 0x0001a1fd, 0x00604411, 0x2e0 }, | ||
10075 | { 0x00000001, 0x00330621, 0x000 }, | ||
10076 | { 0x00000000, 0x002f0221, 0x000 }, | ||
10077 | { 0x00000000, 0x0cc00000, 0x219 }, | ||
10078 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
10079 | { 0x00000000, 0x0cc00000, 0x212 }, | ||
10080 | { 0x00000000, 0xc0400400, 0x001 }, | ||
10081 | { 0x00000000, 0x00600000, 0x642 }, | ||
10082 | { 0x00000000, 0x0040040f, 0x213 }, | ||
10083 | { 0x00000000, 0x00600000, 0x62e }, | ||
10084 | { 0x00000000, 0x00600000, 0x642 }, | ||
10085 | { 0x00000210, 0x00600411, 0x315 }, | ||
10086 | { 0x00000000, 0x00600000, 0x1a0 }, | ||
10087 | { 0x00000000, 0x00600000, 0x19c }, | ||
10088 | { 0x00000000, 0x00600000, 0x2bb }, | ||
10089 | { 0x00000000, 0x00600000, 0x2a3 }, | ||
10090 | { 0x93800000, 0x00204411, 0x000 }, | ||
10091 | { 0x00000000, 0x00204808, 0x000 }, | ||
10092 | { 0x00000000, 0x002f022f, 0x000 }, | ||
10093 | { 0x00000000, 0x0ae00000, 0x232 }, | ||
10094 | { 0x00000000, 0x00600000, 0x13a }, | ||
10095 | { 0x00000000, 0x00400000, 0x236 }, | ||
10096 | { 0x95000000, 0x00204411, 0x000 }, | ||
10097 | { 0x00000000, 0x002f022f, 0x000 }, | ||
10098 | { 0x00000000, 0x0ce00000, 0x236 }, | ||
10099 | { 0x00000000, 0xc0404800, 0x233 }, | ||
10100 | { 0x92000000, 0x00204411, 0x000 }, | ||
10101 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10102 | { 0x00002256, 0x00204411, 0x000 }, | ||
10103 | { 0x00000016, 0x00204811, 0x000 }, | ||
10104 | { 0x0000225c, 0x00204411, 0x000 }, | ||
10105 | { 0x00000003, 0x00204811, 0x000 }, | ||
10106 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
10107 | { 0x00000001, 0x00204811, 0x000 }, | ||
10108 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
10109 | { 0x00000000, 0x00600411, 0x2fb }, | ||
10110 | { 0x00000000, 0xc0400400, 0x001 }, | ||
10111 | { 0x00000000, 0x00600000, 0x62e }, | ||
10112 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
10113 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10114 | { 0x00000000, 0xc0404800, 0x000 }, | ||
10115 | { 0x00000000, 0x00600000, 0x00b }, | ||
10116 | { 0x00000018, 0x40210a20, 0x000 }, | ||
10117 | { 0x00000003, 0x002f0222, 0x000 }, | ||
10118 | { 0x00000000, 0x0ae00000, 0x24c }, | ||
10119 | { 0x00000014, 0x0020222d, 0x000 }, | ||
10120 | { 0x00080101, 0x00292228, 0x000 }, | ||
10121 | { 0x00000014, 0x00203628, 0x000 }, | ||
10122 | { 0x0000a30c, 0x00204411, 0x000 }, | ||
10123 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10124 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10125 | { 0x00000000, 0xc0404800, 0x251 }, | ||
10126 | { 0x00000000, 0x00600000, 0x00b }, | ||
10127 | { 0x00000010, 0x00600411, 0x315 }, | ||
10128 | { 0x3f800000, 0x00200411, 0x000 }, | ||
10129 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
10130 | { 0x0000225c, 0x00204411, 0x000 }, | ||
10131 | { 0x00000003, 0x00204811, 0x000 }, | ||
10132 | { 0x00000000, 0x00600000, 0x27c }, | ||
10133 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
10134 | { 0x00000001, 0x00211e27, 0x000 }, | ||
10135 | { 0x00000000, 0x14e00000, 0x26a }, | ||
10136 | { 0x00000012, 0x00201e2d, 0x000 }, | ||
10137 | { 0x0000ffff, 0x00281e27, 0x000 }, | ||
10138 | { 0x00000000, 0x00341c27, 0x000 }, | ||
10139 | { 0x00000000, 0x12c00000, 0x25f }, | ||
10140 | { 0x00000000, 0x00201c11, 0x000 }, | ||
10141 | { 0x00000000, 0x002f00e5, 0x000 }, | ||
10142 | { 0x00000000, 0x08c00000, 0x262 }, | ||
10143 | { 0x00000000, 0x00201407, 0x000 }, | ||
10144 | { 0x00000012, 0x00201e2d, 0x000 }, | ||
10145 | { 0x00000010, 0x00211e27, 0x000 }, | ||
10146 | { 0x00000000, 0x00341c47, 0x000 }, | ||
10147 | { 0x00000000, 0x12c00000, 0x267 }, | ||
10148 | { 0x00000000, 0x00201c11, 0x000 }, | ||
10149 | { 0x00000000, 0x002f00e6, 0x000 }, | ||
10150 | { 0x00000000, 0x08c00000, 0x26a }, | ||
10151 | { 0x00000000, 0x00201807, 0x000 }, | ||
10152 | { 0x00000000, 0x00600000, 0x2c1 }, | ||
10153 | { 0x00002256, 0x00204411, 0x000 }, | ||
10154 | { 0x00000000, 0x00342023, 0x000 }, | ||
10155 | { 0x00000000, 0x12c00000, 0x272 }, | ||
10156 | { 0x00000000, 0x00342044, 0x000 }, | ||
10157 | { 0x00000000, 0x12c00000, 0x271 }, | ||
10158 | { 0x00000016, 0x00404811, 0x276 }, | ||
10159 | { 0x00000018, 0x00404811, 0x276 }, | ||
10160 | { 0x00000000, 0x00342044, 0x000 }, | ||
10161 | { 0x00000000, 0x12c00000, 0x275 }, | ||
10162 | { 0x00000017, 0x00404811, 0x276 }, | ||
10163 | { 0x00000019, 0x00204811, 0x000 }, | ||
10164 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
10165 | { 0x00000001, 0x00204811, 0x000 }, | ||
10166 | { 0x0001a1fd, 0x00604411, 0x2e9 }, | ||
10167 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
10168 | { 0x00000000, 0x0cc00000, 0x256 }, | ||
10169 | { 0x00000000, 0xc0400400, 0x001 }, | ||
10170 | { 0x00000010, 0x40210620, 0x000 }, | ||
10171 | { 0x0000ffff, 0xc0280a20, 0x000 }, | ||
10172 | { 0x00000010, 0x40210e20, 0x000 }, | ||
10173 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
10174 | { 0x00000010, 0x40211620, 0x000 }, | ||
10175 | { 0x0000ffff, 0xc0881a20, 0x000 }, | ||
10176 | { 0x81000000, 0x00204411, 0x000 }, | ||
10177 | { 0x00000001, 0x00204811, 0x000 }, | ||
10178 | { 0x00042004, 0x00604411, 0x68a }, | ||
10179 | { 0x00000000, 0x00600000, 0x62e }, | ||
10180 | { 0x00000000, 0xc0600000, 0x2a3 }, | ||
10181 | { 0x00000005, 0x00200a2d, 0x000 }, | ||
10182 | { 0x00000008, 0x00220a22, 0x000 }, | ||
10183 | { 0x0000002b, 0x00201a2d, 0x000 }, | ||
10184 | { 0x0000001c, 0x00201e2d, 0x000 }, | ||
10185 | { 0x00007000, 0x00281e27, 0x000 }, | ||
10186 | { 0x00000000, 0x00311ce6, 0x000 }, | ||
10187 | { 0x0000002a, 0x00201a2d, 0x000 }, | ||
10188 | { 0x0000000c, 0x00221a26, 0x000 }, | ||
10189 | { 0x00000000, 0x002f00e6, 0x000 }, | ||
10190 | { 0x00000000, 0x06e00000, 0x292 }, | ||
10191 | { 0x00000000, 0x00201c11, 0x000 }, | ||
10192 | { 0x00000000, 0x00200c11, 0x000 }, | ||
10193 | { 0x0000002b, 0x00203623, 0x000 }, | ||
10194 | { 0x00000010, 0x00201811, 0x000 }, | ||
10195 | { 0x00000000, 0x00691ce2, 0x12f }, | ||
10196 | { 0x93800000, 0x00204411, 0x000 }, | ||
10197 | { 0x00000000, 0x00204807, 0x000 }, | ||
10198 | { 0x95000000, 0x00204411, 0x000 }, | ||
10199 | { 0x00000000, 0x002f022f, 0x000 }, | ||
10200 | { 0x00000000, 0x0ce00000, 0x29d }, | ||
10201 | { 0x00000001, 0x00333e2f, 0x000 }, | ||
10202 | { 0x00000000, 0xd9004800, 0x000 }, | ||
10203 | { 0x92000000, 0x00204411, 0x000 }, | ||
10204 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10205 | { 0x0000001c, 0x00403627, 0x000 }, | ||
10206 | { 0x0000000c, 0xc0220a20, 0x000 }, | ||
10207 | { 0x00000029, 0x00203622, 0x000 }, | ||
10208 | { 0x00000028, 0xc0403620, 0x000 }, | ||
10209 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
10210 | { 0x00000009, 0x00204811, 0x000 }, | ||
10211 | { 0xa1000000, 0x00204411, 0x000 }, | ||
10212 | { 0x00000001, 0x00804811, 0x000 }, | ||
10213 | { 0x00000021, 0x00201e2d, 0x000 }, | ||
10214 | { 0x00000000, 0x002c1ce3, 0x000 }, | ||
10215 | { 0x00000021, 0x00203627, 0x000 }, | ||
10216 | { 0x00000022, 0x00201e2d, 0x000 }, | ||
10217 | { 0x00000000, 0x002c1ce4, 0x000 }, | ||
10218 | { 0x00000022, 0x00203627, 0x000 }, | ||
10219 | { 0x00000023, 0x00201e2d, 0x000 }, | ||
10220 | { 0x00000000, 0x003120a3, 0x000 }, | ||
10221 | { 0x00000000, 0x002d1d07, 0x000 }, | ||
10222 | { 0x00000023, 0x00203627, 0x000 }, | ||
10223 | { 0x00000024, 0x00201e2d, 0x000 }, | ||
10224 | { 0x00000000, 0x003120c4, 0x000 }, | ||
10225 | { 0x00000000, 0x002d1d07, 0x000 }, | ||
10226 | { 0x00000024, 0x00803627, 0x000 }, | ||
10227 | { 0x00000021, 0x00203623, 0x000 }, | ||
10228 | { 0x00000022, 0x00203624, 0x000 }, | ||
10229 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
10230 | { 0x00000023, 0x00203627, 0x000 }, | ||
10231 | { 0x00000000, 0x00311cc4, 0x000 }, | ||
10232 | { 0x00000024, 0x00803627, 0x000 }, | ||
10233 | { 0x0000001a, 0x00203627, 0x000 }, | ||
10234 | { 0x0000001b, 0x00203628, 0x000 }, | ||
10235 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
10236 | { 0x00000002, 0x00210227, 0x000 }, | ||
10237 | { 0x00000000, 0x14c00000, 0x2dc }, | ||
10238 | { 0x00000000, 0x00400000, 0x2d9 }, | ||
10239 | { 0x0000001a, 0x00203627, 0x000 }, | ||
10240 | { 0x0000001b, 0x00203628, 0x000 }, | ||
10241 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
10242 | { 0x00000002, 0x00210227, 0x000 }, | ||
10243 | { 0x00000000, 0x14e00000, 0x2d9 }, | ||
10244 | { 0x00000003, 0x00210227, 0x000 }, | ||
10245 | { 0x00000000, 0x14e00000, 0x2dc }, | ||
10246 | { 0x00000023, 0x00201e2d, 0x000 }, | ||
10247 | { 0x00000000, 0x002e00e1, 0x000 }, | ||
10248 | { 0x00000000, 0x02c00000, 0x2dc }, | ||
10249 | { 0x00000021, 0x00201e2d, 0x000 }, | ||
10250 | { 0x00000000, 0x003120a1, 0x000 }, | ||
10251 | { 0x00000000, 0x002e00e8, 0x000 }, | ||
10252 | { 0x00000000, 0x06c00000, 0x2dc }, | ||
10253 | { 0x00000024, 0x00201e2d, 0x000 }, | ||
10254 | { 0x00000000, 0x002e00e2, 0x000 }, | ||
10255 | { 0x00000000, 0x02c00000, 0x2dc }, | ||
10256 | { 0x00000022, 0x00201e2d, 0x000 }, | ||
10257 | { 0x00000000, 0x003120c2, 0x000 }, | ||
10258 | { 0x00000000, 0x002e00e8, 0x000 }, | ||
10259 | { 0x00000000, 0x06c00000, 0x2dc }, | ||
10260 | { 0x00000000, 0x00600000, 0x665 }, | ||
10261 | { 0x00000000, 0x00600000, 0x2b5 }, | ||
10262 | { 0x00000000, 0x00400000, 0x2de }, | ||
10263 | { 0x00000000, 0x00600000, 0x2b5 }, | ||
10264 | { 0x00000000, 0x00600000, 0x65c }, | ||
10265 | { 0x00000000, 0x00400000, 0x2de }, | ||
10266 | { 0x00000000, 0x00600000, 0x2a7 }, | ||
10267 | { 0x00000000, 0x00400000, 0x2de }, | ||
10268 | { 0x0000001a, 0x00201e2d, 0x000 }, | ||
10269 | { 0x0000001b, 0x0080222d, 0x000 }, | ||
10270 | { 0x00000010, 0x00221e23, 0x000 }, | ||
10271 | { 0x00000000, 0x00294887, 0x000 }, | ||
10272 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
10273 | { 0x00000010, 0x00221e27, 0x000 }, | ||
10274 | { 0x00000000, 0x00294887, 0x000 }, | ||
10275 | { 0x00000010, 0x00221e23, 0x000 }, | ||
10276 | { 0x00000000, 0x003120c4, 0x000 }, | ||
10277 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
10278 | { 0x00000000, 0x00894907, 0x000 }, | ||
10279 | { 0x00000010, 0x00221e23, 0x000 }, | ||
10280 | { 0x00000000, 0x00294887, 0x000 }, | ||
10281 | { 0x00000010, 0x00221e21, 0x000 }, | ||
10282 | { 0x00000000, 0x00294847, 0x000 }, | ||
10283 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
10284 | { 0x00000010, 0x00221e27, 0x000 }, | ||
10285 | { 0x00000000, 0x00294887, 0x000 }, | ||
10286 | { 0x00000000, 0x00311ca1, 0x000 }, | ||
10287 | { 0x00000010, 0x00221e27, 0x000 }, | ||
10288 | { 0x00000000, 0x00294847, 0x000 }, | ||
10289 | { 0x00000010, 0x00221e23, 0x000 }, | ||
10290 | { 0x00000000, 0x003120c4, 0x000 }, | ||
10291 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
10292 | { 0x00000000, 0x00294907, 0x000 }, | ||
10293 | { 0x00000010, 0x00221e21, 0x000 }, | ||
10294 | { 0x00000000, 0x003120c2, 0x000 }, | ||
10295 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
10296 | { 0x00000000, 0x00894907, 0x000 }, | ||
10297 | { 0x00000010, 0x00221e23, 0x000 }, | ||
10298 | { 0x00000000, 0x00294887, 0x000 }, | ||
10299 | { 0x00000001, 0x00220a21, 0x000 }, | ||
10300 | { 0x00000000, 0x003308a2, 0x000 }, | ||
10301 | { 0x00000010, 0x00221e22, 0x000 }, | ||
10302 | { 0x00000010, 0x00212222, 0x000 }, | ||
10303 | { 0x00000000, 0x00294907, 0x000 }, | ||
10304 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
10305 | { 0x00000010, 0x00221e27, 0x000 }, | ||
10306 | { 0x00000000, 0x00294887, 0x000 }, | ||
10307 | { 0x00000001, 0x00220a21, 0x000 }, | ||
10308 | { 0x00000000, 0x003008a2, 0x000 }, | ||
10309 | { 0x00000010, 0x00221e22, 0x000 }, | ||
10310 | { 0x00000010, 0x00212222, 0x000 }, | ||
10311 | { 0x00000000, 0x00294907, 0x000 }, | ||
10312 | { 0x00000010, 0x00221e23, 0x000 }, | ||
10313 | { 0x00000000, 0x003120c4, 0x000 }, | ||
10314 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
10315 | { 0x00000000, 0x00294907, 0x000 }, | ||
10316 | { 0x00000000, 0x003808c5, 0x000 }, | ||
10317 | { 0x00000000, 0x00300841, 0x000 }, | ||
10318 | { 0x00000001, 0x00220a22, 0x000 }, | ||
10319 | { 0x00000000, 0x003308a2, 0x000 }, | ||
10320 | { 0x00000010, 0x00221e22, 0x000 }, | ||
10321 | { 0x00000010, 0x00212222, 0x000 }, | ||
10322 | { 0x00000000, 0x00894907, 0x000 }, | ||
10323 | { 0x00000017, 0x0020222d, 0x000 }, | ||
10324 | { 0x00000000, 0x14c00000, 0x318 }, | ||
10325 | { 0xffffffef, 0x00280621, 0x000 }, | ||
10326 | { 0x00000014, 0x0020222d, 0x000 }, | ||
10327 | { 0x0000f8e0, 0x00204411, 0x000 }, | ||
10328 | { 0x00000000, 0x00294901, 0x000 }, | ||
10329 | { 0x00000000, 0x00894901, 0x000 }, | ||
10330 | { 0x00000000, 0x00204811, 0x000 }, | ||
10331 | { 0x00000000, 0x00204811, 0x000 }, | ||
10332 | { 0x060a0200, 0x00804811, 0x000 }, | ||
10333 | { 0x00000000, 0xc0200000, 0x000 }, | ||
10334 | { 0x97000000, 0xc0204411, 0x000 }, | ||
10335 | { 0x00000000, 0xc0204811, 0x000 }, | ||
10336 | { 0x8a000000, 0x00204411, 0x000 }, | ||
10337 | { 0x00000000, 0x00204811, 0x000 }, | ||
10338 | { 0x0000225c, 0x00204411, 0x000 }, | ||
10339 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10340 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
10341 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10342 | { 0x00000000, 0xc0200400, 0x000 }, | ||
10343 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
10344 | { 0x97000000, 0x00204411, 0x000 }, | ||
10345 | { 0x00000000, 0x00204811, 0x000 }, | ||
10346 | { 0x8a000000, 0x00204411, 0x000 }, | ||
10347 | { 0x00000000, 0x00204811, 0x000 }, | ||
10348 | { 0x0000225c, 0x00204411, 0x000 }, | ||
10349 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10350 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
10351 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10352 | { 0x00000000, 0xc0200400, 0x000 }, | ||
10353 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
10354 | { 0x97000000, 0x00204411, 0x000 }, | ||
10355 | { 0x00000000, 0x00204811, 0x000 }, | ||
10356 | { 0x8a000000, 0x00204411, 0x000 }, | ||
10357 | { 0x00000000, 0x00204811, 0x000 }, | ||
10358 | { 0x0000225c, 0x00204411, 0x000 }, | ||
10359 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10360 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
10361 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10362 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
10363 | { 0x00000000, 0xd9004800, 0x000 }, | ||
10364 | { 0x00000000, 0xc0200400, 0x000 }, | ||
10365 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
10366 | { 0x00002257, 0x00204411, 0x000 }, | ||
10367 | { 0x00000003, 0xc0484a20, 0x000 }, | ||
10368 | { 0x0000225d, 0x00204411, 0x000 }, | ||
10369 | { 0x00000000, 0xc0404800, 0x000 }, | ||
10370 | { 0x00000000, 0x00600000, 0x642 }, | ||
10371 | { 0x00000000, 0xc0200800, 0x000 }, | ||
10372 | { 0x0000225c, 0x00204411, 0x000 }, | ||
10373 | { 0x00000003, 0x00384a22, 0x000 }, | ||
10374 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
10375 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10376 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
10377 | { 0x00000000, 0x002f0222, 0x000 }, | ||
10378 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
10379 | { 0x00000000, 0x40204800, 0x000 }, | ||
10380 | { 0x00000001, 0x40304a20, 0x000 }, | ||
10381 | { 0x00000002, 0xc0304a20, 0x000 }, | ||
10382 | { 0x00000001, 0x00530a22, 0x34b }, | ||
10383 | { 0x0000003f, 0xc0280a20, 0x000 }, | ||
10384 | { 0x81000000, 0x00204411, 0x000 }, | ||
10385 | { 0x00000001, 0x00204811, 0x000 }, | ||
10386 | { 0x000021f8, 0x00204411, 0x000 }, | ||
10387 | { 0x00000018, 0x00204811, 0x000 }, | ||
10388 | { 0x000421f9, 0x00604411, 0x68a }, | ||
10389 | { 0x00000011, 0x00210230, 0x000 }, | ||
10390 | { 0x00000000, 0x14e00000, 0x354 }, | ||
10391 | { 0x00000014, 0x002f0222, 0x000 }, | ||
10392 | { 0x00000000, 0x0cc00000, 0x364 }, | ||
10393 | { 0x00002010, 0x00204411, 0x000 }, | ||
10394 | { 0x00008000, 0x00204811, 0x000 }, | ||
10395 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
10396 | { 0x00000000, 0x00604802, 0x36e }, | ||
10397 | { 0x00002100, 0x00204411, 0x000 }, | ||
10398 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10399 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10400 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10401 | { 0x00000000, 0xc0404800, 0x000 }, | ||
10402 | { 0x00000004, 0x002f0222, 0x000 }, | ||
10403 | { 0x00000000, 0x0cc00000, 0x36a }, | ||
10404 | { 0x00002010, 0x00204411, 0x000 }, | ||
10405 | { 0x00008000, 0x00204811, 0x000 }, | ||
10406 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
10407 | { 0x00000000, 0x00404802, 0x35f }, | ||
10408 | { 0x00000028, 0x002f0222, 0x000 }, | ||
10409 | { 0x00000000, 0x0cc00000, 0x5bd }, | ||
10410 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
10411 | { 0x00000000, 0x00404802, 0x35f }, | ||
10412 | { 0x0000002c, 0x00203626, 0x000 }, | ||
10413 | { 0x00000049, 0x00201811, 0x000 }, | ||
10414 | { 0x0000003f, 0x00204811, 0x000 }, | ||
10415 | { 0x00000001, 0x00331a26, 0x000 }, | ||
10416 | { 0x00000000, 0x002f0226, 0x000 }, | ||
10417 | { 0x00000000, 0x0cc00000, 0x370 }, | ||
10418 | { 0x0000002c, 0x00801a2d, 0x000 }, | ||
10419 | { 0x0000003f, 0xc0280a20, 0x000 }, | ||
10420 | { 0x00000015, 0x002f0222, 0x000 }, | ||
10421 | { 0x00000000, 0x0ce00000, 0x386 }, | ||
10422 | { 0x00000006, 0x002f0222, 0x000 }, | ||
10423 | { 0x00000000, 0x0ce00000, 0x3b1 }, | ||
10424 | { 0x00000016, 0x002f0222, 0x000 }, | ||
10425 | { 0x00000000, 0x0ce00000, 0x3b5 }, | ||
10426 | { 0x00000020, 0x002f0222, 0x000 }, | ||
10427 | { 0x00000000, 0x0ce00000, 0x39c }, | ||
10428 | { 0x0000000f, 0x002f0222, 0x000 }, | ||
10429 | { 0x00000000, 0x0ce00000, 0x3a8 }, | ||
10430 | { 0x00000010, 0x002f0222, 0x000 }, | ||
10431 | { 0x00000000, 0x0ce00000, 0x3a8 }, | ||
10432 | { 0x0000001e, 0x002f0222, 0x000 }, | ||
10433 | { 0x00000000, 0x0ce00000, 0x390 }, | ||
10434 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
10435 | { 0x00000000, 0x00404802, 0x000 }, | ||
10436 | { 0x08000000, 0x00290a22, 0x000 }, | ||
10437 | { 0x00000003, 0x40210e20, 0x000 }, | ||
10438 | { 0x0000000c, 0xc0211220, 0x000 }, | ||
10439 | { 0x00080000, 0x00281224, 0x000 }, | ||
10440 | { 0x00000014, 0xc0221620, 0x000 }, | ||
10441 | { 0x00000000, 0x002914a4, 0x000 }, | ||
10442 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
10443 | { 0x00000000, 0x002948a2, 0x000 }, | ||
10444 | { 0x0000a1fe, 0x00204411, 0x000 }, | ||
10445 | { 0x00000000, 0x00404803, 0x000 }, | ||
10446 | { 0x81000000, 0x00204411, 0x000 }, | ||
10447 | { 0x00000001, 0x00204811, 0x000 }, | ||
10448 | { 0x000021f8, 0x00204411, 0x000 }, | ||
10449 | { 0x00000016, 0x00204811, 0x000 }, | ||
10450 | { 0x000421f9, 0x00604411, 0x68a }, | ||
10451 | { 0x00000015, 0x00210230, 0x000 }, | ||
10452 | { 0x00000000, 0x14e00000, 0x392 }, | ||
10453 | { 0x0000210e, 0x00204411, 0x000 }, | ||
10454 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10455 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10456 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
10457 | { 0x00000000, 0x00404802, 0x000 }, | ||
10458 | { 0x81000000, 0x00204411, 0x000 }, | ||
10459 | { 0x00000001, 0x00204811, 0x000 }, | ||
10460 | { 0x000021f8, 0x00204411, 0x000 }, | ||
10461 | { 0x00000017, 0x00204811, 0x000 }, | ||
10462 | { 0x000421f9, 0x00604411, 0x68a }, | ||
10463 | { 0x00000003, 0x00210230, 0x000 }, | ||
10464 | { 0x00000000, 0x14e00000, 0x39e }, | ||
10465 | { 0x00002108, 0x00204411, 0x000 }, | ||
10466 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10467 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10468 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
10469 | { 0x00000000, 0x00404802, 0x000 }, | ||
10470 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
10471 | { 0x00000000, 0x00204802, 0x000 }, | ||
10472 | { 0x80000000, 0x00204411, 0x000 }, | ||
10473 | { 0x00000000, 0x00204811, 0x000 }, | ||
10474 | { 0x81000000, 0x00204411, 0x000 }, | ||
10475 | { 0x00000010, 0x00204811, 0x000 }, | ||
10476 | { 0x00000000, 0x00200010, 0x000 }, | ||
10477 | { 0x00000000, 0x14c00000, 0x3ae }, | ||
10478 | { 0x00000000, 0x00400000, 0x000 }, | ||
10479 | { 0x00002010, 0x00204411, 0x000 }, | ||
10480 | { 0x00008000, 0x00204811, 0x000 }, | ||
10481 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
10482 | { 0x00000006, 0x00404811, 0x000 }, | ||
10483 | { 0x00002010, 0x00204411, 0x000 }, | ||
10484 | { 0x00008000, 0x00204811, 0x000 }, | ||
10485 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
10486 | { 0x00000016, 0x00604811, 0x36e }, | ||
10487 | { 0x00000000, 0x00400000, 0x000 }, | ||
10488 | { 0x00000000, 0xc0200800, 0x000 }, | ||
10489 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
10490 | { 0x0000001d, 0x00210223, 0x000 }, | ||
10491 | { 0x00000000, 0x14e00000, 0x3ce }, | ||
10492 | { 0x81000000, 0x00204411, 0x000 }, | ||
10493 | { 0x00000001, 0x00204811, 0x000 }, | ||
10494 | { 0x000021f8, 0x00204411, 0x000 }, | ||
10495 | { 0x00000018, 0x00204811, 0x000 }, | ||
10496 | { 0x000421f9, 0x00604411, 0x68a }, | ||
10497 | { 0x00000011, 0x00210230, 0x000 }, | ||
10498 | { 0x00000000, 0x14e00000, 0x3c0 }, | ||
10499 | { 0x00002100, 0x00204411, 0x000 }, | ||
10500 | { 0x00000000, 0x00204802, 0x000 }, | ||
10501 | { 0x00000000, 0x00204803, 0x000 }, | ||
10502 | { 0xbabecafe, 0x00204811, 0x000 }, | ||
10503 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
10504 | { 0x00002010, 0x00204411, 0x000 }, | ||
10505 | { 0x00008000, 0x00204811, 0x000 }, | ||
10506 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
10507 | { 0x00000004, 0x00404811, 0x000 }, | ||
10508 | { 0x00002170, 0x00204411, 0x000 }, | ||
10509 | { 0x00000000, 0x00204802, 0x000 }, | ||
10510 | { 0x00000000, 0x00204803, 0x000 }, | ||
10511 | { 0x81000000, 0x00204411, 0x000 }, | ||
10512 | { 0x0000000a, 0x00204811, 0x000 }, | ||
10513 | { 0x00000000, 0x00200010, 0x000 }, | ||
10514 | { 0x00000000, 0x14c00000, 0x3d3 }, | ||
10515 | { 0x8c000000, 0x00204411, 0x000 }, | ||
10516 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
10517 | { 0x81000000, 0x00204411, 0x000 }, | ||
10518 | { 0x00000001, 0x00204811, 0x000 }, | ||
10519 | { 0x00003fff, 0x40280a20, 0x000 }, | ||
10520 | { 0x80000000, 0x40280e20, 0x000 }, | ||
10521 | { 0x40000000, 0xc0281220, 0x000 }, | ||
10522 | { 0x00040000, 0x00694622, 0x68a }, | ||
10523 | { 0x00000000, 0x00201410, 0x000 }, | ||
10524 | { 0x00000000, 0x002f0223, 0x000 }, | ||
10525 | { 0x00000000, 0x0cc00000, 0x3e1 }, | ||
10526 | { 0x00000000, 0xc0401800, 0x3e4 }, | ||
10527 | { 0x00003fff, 0xc0281a20, 0x000 }, | ||
10528 | { 0x00040000, 0x00694626, 0x68a }, | ||
10529 | { 0x00000000, 0x00201810, 0x000 }, | ||
10530 | { 0x00000000, 0x002f0224, 0x000 }, | ||
10531 | { 0x00000000, 0x0cc00000, 0x3e7 }, | ||
10532 | { 0x00000000, 0xc0401c00, 0x3ea }, | ||
10533 | { 0x00003fff, 0xc0281e20, 0x000 }, | ||
10534 | { 0x00040000, 0x00694627, 0x68a }, | ||
10535 | { 0x00000000, 0x00201c10, 0x000 }, | ||
10536 | { 0x00000000, 0x00204402, 0x000 }, | ||
10537 | { 0x00000000, 0x002820c5, 0x000 }, | ||
10538 | { 0x00000000, 0x004948e8, 0x000 }, | ||
10539 | { 0xa5800000, 0x00200811, 0x000 }, | ||
10540 | { 0x00002000, 0x00200c11, 0x000 }, | ||
10541 | { 0x83000000, 0x00604411, 0x412 }, | ||
10542 | { 0x00000000, 0x00204402, 0x000 }, | ||
10543 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10544 | { 0x00000000, 0x40204800, 0x000 }, | ||
10545 | { 0x0000001f, 0xc0210220, 0x000 }, | ||
10546 | { 0x00000000, 0x14c00000, 0x3f7 }, | ||
10547 | { 0x00002010, 0x00204411, 0x000 }, | ||
10548 | { 0x00008000, 0x00204811, 0x000 }, | ||
10549 | { 0x0000ffff, 0xc0481220, 0x3ff }, | ||
10550 | { 0xa7800000, 0x00200811, 0x000 }, | ||
10551 | { 0x0000a000, 0x00200c11, 0x000 }, | ||
10552 | { 0x83000000, 0x00604411, 0x412 }, | ||
10553 | { 0x00000000, 0x00204402, 0x000 }, | ||
10554 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10555 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10556 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
10557 | { 0x83000000, 0x00204411, 0x000 }, | ||
10558 | { 0x00000000, 0x00304883, 0x000 }, | ||
10559 | { 0x84000000, 0x00204411, 0x000 }, | ||
10560 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10561 | { 0x00000000, 0x1d000000, 0x000 }, | ||
10562 | { 0x83000000, 0x00604411, 0x412 }, | ||
10563 | { 0x00000000, 0xc0400400, 0x001 }, | ||
10564 | { 0xa9800000, 0x00200811, 0x000 }, | ||
10565 | { 0x0000c000, 0x00400c11, 0x3fa }, | ||
10566 | { 0xab800000, 0x00200811, 0x000 }, | ||
10567 | { 0x0000f8e0, 0x00400c11, 0x3fa }, | ||
10568 | { 0xad800000, 0x00200811, 0x000 }, | ||
10569 | { 0x0000f880, 0x00400c11, 0x3fa }, | ||
10570 | { 0xb3800000, 0x00200811, 0x000 }, | ||
10571 | { 0x0000f3fc, 0x00400c11, 0x3fa }, | ||
10572 | { 0xaf800000, 0x00200811, 0x000 }, | ||
10573 | { 0x0000e000, 0x00400c11, 0x3fa }, | ||
10574 | { 0xb1800000, 0x00200811, 0x000 }, | ||
10575 | { 0x0000f000, 0x00400c11, 0x3fa }, | ||
10576 | { 0x83000000, 0x00204411, 0x000 }, | ||
10577 | { 0x00002148, 0x00204811, 0x000 }, | ||
10578 | { 0x84000000, 0x00204411, 0x000 }, | ||
10579 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10580 | { 0x00000000, 0x1d000000, 0x000 }, | ||
10581 | { 0x00000000, 0x00800000, 0x000 }, | ||
10582 | { 0x01182000, 0xc0304620, 0x000 }, | ||
10583 | { 0x00000000, 0xd9004800, 0x000 }, | ||
10584 | { 0x00000000, 0xc0200400, 0x000 }, | ||
10585 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
10586 | { 0x0218a000, 0xc0304620, 0x000 }, | ||
10587 | { 0x00000000, 0xd9004800, 0x000 }, | ||
10588 | { 0x00000000, 0xc0200400, 0x000 }, | ||
10589 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
10590 | { 0x0318c000, 0xc0304620, 0x000 }, | ||
10591 | { 0x00000000, 0xd9004800, 0x000 }, | ||
10592 | { 0x00000000, 0xc0200400, 0x000 }, | ||
10593 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
10594 | { 0x0418f8e0, 0xc0304620, 0x000 }, | ||
10595 | { 0x00000000, 0xd9004800, 0x000 }, | ||
10596 | { 0x00000000, 0xc0200400, 0x000 }, | ||
10597 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
10598 | { 0x0518f880, 0xc0304620, 0x000 }, | ||
10599 | { 0x00000000, 0xd9004800, 0x000 }, | ||
10600 | { 0x00000000, 0xc0200400, 0x000 }, | ||
10601 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
10602 | { 0x0618e000, 0xc0304620, 0x000 }, | ||
10603 | { 0x00000000, 0xd9004800, 0x000 }, | ||
10604 | { 0x00000000, 0xc0200400, 0x000 }, | ||
10605 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
10606 | { 0x0718f000, 0xc0304620, 0x000 }, | ||
10607 | { 0x00000000, 0xd9004800, 0x000 }, | ||
10608 | { 0x00000000, 0xc0200400, 0x000 }, | ||
10609 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
10610 | { 0x0818f3fc, 0xc0304620, 0x000 }, | ||
10611 | { 0x00000000, 0xd9004800, 0x000 }, | ||
10612 | { 0x00000000, 0xc0200400, 0x000 }, | ||
10613 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
10614 | { 0x00000030, 0x00200a2d, 0x000 }, | ||
10615 | { 0x00000000, 0xc0290c40, 0x000 }, | ||
10616 | { 0x00000030, 0x00203623, 0x000 }, | ||
10617 | { 0x00000000, 0xc0200400, 0x000 }, | ||
10618 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
10619 | { 0x86000000, 0x00204411, 0x000 }, | ||
10620 | { 0x00000000, 0x00404801, 0x000 }, | ||
10621 | { 0x85000000, 0xc0204411, 0x000 }, | ||
10622 | { 0x00000000, 0x00404801, 0x000 }, | ||
10623 | { 0x0000217c, 0x00204411, 0x000 }, | ||
10624 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10625 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10626 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10627 | { 0x81000000, 0x00204411, 0x000 }, | ||
10628 | { 0x00000001, 0x00204811, 0x000 }, | ||
10629 | { 0x00000000, 0xc0200800, 0x000 }, | ||
10630 | { 0x00000000, 0x17000000, 0x000 }, | ||
10631 | { 0x0004217f, 0x00604411, 0x68a }, | ||
10632 | { 0x0000001f, 0x00210230, 0x000 }, | ||
10633 | { 0x00000000, 0x14c00000, 0x000 }, | ||
10634 | { 0x00000000, 0x00404c02, 0x448 }, | ||
10635 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
10636 | { 0x00000000, 0xc0201000, 0x000 }, | ||
10637 | { 0x00000000, 0xc0201400, 0x000 }, | ||
10638 | { 0x00000000, 0xc0201800, 0x000 }, | ||
10639 | { 0x00000000, 0xc0201c00, 0x000 }, | ||
10640 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
10641 | { 0x00004500, 0x002f0222, 0x000 }, | ||
10642 | { 0x00000000, 0x0ce00000, 0x456 }, | ||
10643 | { 0x00000000, 0xc0202000, 0x000 }, | ||
10644 | { 0x00000000, 0x17000000, 0x000 }, | ||
10645 | { 0x00000010, 0x00280a23, 0x000 }, | ||
10646 | { 0x00000010, 0x002f0222, 0x000 }, | ||
10647 | { 0x00000000, 0x0ce00000, 0x45e }, | ||
10648 | { 0x81000000, 0x00204411, 0x000 }, | ||
10649 | { 0x00000001, 0x00204811, 0x000 }, | ||
10650 | { 0x00040000, 0x00694624, 0x68a }, | ||
10651 | { 0x00000000, 0x00400000, 0x463 }, | ||
10652 | { 0x81000000, 0x00204411, 0x000 }, | ||
10653 | { 0x00000000, 0x00204811, 0x000 }, | ||
10654 | { 0x0000216d, 0x00204411, 0x000 }, | ||
10655 | { 0x00000000, 0x00204804, 0x000 }, | ||
10656 | { 0x00000000, 0x00604805, 0x68f }, | ||
10657 | { 0x00000000, 0x002824f0, 0x000 }, | ||
10658 | { 0x00000007, 0x00280a23, 0x000 }, | ||
10659 | { 0x00000001, 0x002f0222, 0x000 }, | ||
10660 | { 0x00000000, 0x0ae00000, 0x46a }, | ||
10661 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
10662 | { 0x00000000, 0x04e00000, 0x483 }, | ||
10663 | { 0x00000000, 0x00400000, 0x490 }, | ||
10664 | { 0x00000002, 0x002f0222, 0x000 }, | ||
10665 | { 0x00000000, 0x0ae00000, 0x46f }, | ||
10666 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
10667 | { 0x00000000, 0x02e00000, 0x483 }, | ||
10668 | { 0x00000000, 0x00400000, 0x490 }, | ||
10669 | { 0x00000003, 0x002f0222, 0x000 }, | ||
10670 | { 0x00000000, 0x0ae00000, 0x474 }, | ||
10671 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
10672 | { 0x00000000, 0x0ce00000, 0x483 }, | ||
10673 | { 0x00000000, 0x00400000, 0x490 }, | ||
10674 | { 0x00000004, 0x002f0222, 0x000 }, | ||
10675 | { 0x00000000, 0x0ae00000, 0x479 }, | ||
10676 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
10677 | { 0x00000000, 0x0ae00000, 0x483 }, | ||
10678 | { 0x00000000, 0x00400000, 0x490 }, | ||
10679 | { 0x00000005, 0x002f0222, 0x000 }, | ||
10680 | { 0x00000000, 0x0ae00000, 0x47e }, | ||
10681 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
10682 | { 0x00000000, 0x06e00000, 0x483 }, | ||
10683 | { 0x00000000, 0x00400000, 0x490 }, | ||
10684 | { 0x00000006, 0x002f0222, 0x000 }, | ||
10685 | { 0x00000000, 0x0ae00000, 0x483 }, | ||
10686 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
10687 | { 0x00000000, 0x08e00000, 0x483 }, | ||
10688 | { 0x00000000, 0x00400000, 0x490 }, | ||
10689 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
10690 | { 0x00004500, 0x002f0222, 0x000 }, | ||
10691 | { 0x00000000, 0x0ae00000, 0x000 }, | ||
10692 | { 0x00000008, 0x00210a23, 0x000 }, | ||
10693 | { 0x00000000, 0x14c00000, 0x48d }, | ||
10694 | { 0x00002169, 0x00204411, 0x000 }, | ||
10695 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10696 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10697 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10698 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
10699 | { 0x00000000, 0xc0204400, 0x000 }, | ||
10700 | { 0x00000000, 0xc0200000, 0x000 }, | ||
10701 | { 0x00000000, 0xc0404800, 0x000 }, | ||
10702 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
10703 | { 0x00004500, 0x002f0222, 0x000 }, | ||
10704 | { 0x00000000, 0x0ae00000, 0x496 }, | ||
10705 | { 0x00000000, 0xc0200000, 0x000 }, | ||
10706 | { 0x00000000, 0xc0200000, 0x000 }, | ||
10707 | { 0x00000000, 0xc0400000, 0x000 }, | ||
10708 | { 0x00000000, 0x00404c08, 0x456 }, | ||
10709 | { 0x00000000, 0xc0200800, 0x000 }, | ||
10710 | { 0x00000010, 0x40210e20, 0x000 }, | ||
10711 | { 0x00000011, 0x40211220, 0x000 }, | ||
10712 | { 0x00000012, 0x40211620, 0x000 }, | ||
10713 | { 0x00002169, 0x00204411, 0x000 }, | ||
10714 | { 0x00000000, 0x00204802, 0x000 }, | ||
10715 | { 0x00000000, 0x00210225, 0x000 }, | ||
10716 | { 0x00000000, 0x14e00000, 0x4a0 }, | ||
10717 | { 0x00040000, 0xc0494a20, 0x4a1 }, | ||
10718 | { 0xfffbffff, 0xc0284a20, 0x000 }, | ||
10719 | { 0x00000000, 0x00210223, 0x000 }, | ||
10720 | { 0x00000000, 0x14e00000, 0x4ad }, | ||
10721 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10722 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10723 | { 0x00000000, 0x00210224, 0x000 }, | ||
10724 | { 0x00000000, 0x14c00000, 0x000 }, | ||
10725 | { 0x81000000, 0x00204411, 0x000 }, | ||
10726 | { 0x0000000c, 0x00204811, 0x000 }, | ||
10727 | { 0x00000000, 0x00200010, 0x000 }, | ||
10728 | { 0x00000000, 0x14c00000, 0x4a9 }, | ||
10729 | { 0xa0000000, 0x00204411, 0x000 }, | ||
10730 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
10731 | { 0x81000000, 0x00204411, 0x000 }, | ||
10732 | { 0x00000004, 0x00204811, 0x000 }, | ||
10733 | { 0x0000216b, 0x00204411, 0x000 }, | ||
10734 | { 0x00000000, 0xc0204810, 0x000 }, | ||
10735 | { 0x81000000, 0x00204411, 0x000 }, | ||
10736 | { 0x00000005, 0x00204811, 0x000 }, | ||
10737 | { 0x0000216c, 0x00204411, 0x000 }, | ||
10738 | { 0x00000000, 0xc0204810, 0x000 }, | ||
10739 | { 0x00000000, 0x002f0224, 0x000 }, | ||
10740 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
10741 | { 0x00000000, 0x00400000, 0x4a7 }, | ||
10742 | { 0x00000000, 0xc0210a20, 0x000 }, | ||
10743 | { 0x00000000, 0x14c00000, 0x4c0 }, | ||
10744 | { 0x81000000, 0x00204411, 0x000 }, | ||
10745 | { 0x00000000, 0x00204811, 0x000 }, | ||
10746 | { 0x0000216d, 0x00204411, 0x000 }, | ||
10747 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10748 | { 0x00000000, 0xc0604800, 0x68f }, | ||
10749 | { 0x00000000, 0x00400000, 0x4c4 }, | ||
10750 | { 0x81000000, 0x00204411, 0x000 }, | ||
10751 | { 0x00000001, 0x00204811, 0x000 }, | ||
10752 | { 0x00040000, 0xc0294620, 0x000 }, | ||
10753 | { 0x00000000, 0xc0600000, 0x68a }, | ||
10754 | { 0x00000001, 0x00210222, 0x000 }, | ||
10755 | { 0x00000000, 0x14c00000, 0x4cb }, | ||
10756 | { 0x00002169, 0x00204411, 0x000 }, | ||
10757 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10758 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10759 | { 0x00000000, 0x00204810, 0x000 }, | ||
10760 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
10761 | { 0x00000000, 0xc0204400, 0x000 }, | ||
10762 | { 0x00000000, 0xc0404810, 0x000 }, | ||
10763 | { 0x81000000, 0x00204411, 0x000 }, | ||
10764 | { 0x00000001, 0x00204811, 0x000 }, | ||
10765 | { 0x000021f8, 0x00204411, 0x000 }, | ||
10766 | { 0x0000000e, 0x00204811, 0x000 }, | ||
10767 | { 0x000421f9, 0x00604411, 0x68a }, | ||
10768 | { 0x00000000, 0x00210230, 0x000 }, | ||
10769 | { 0x00000000, 0x14c00000, 0x4cd }, | ||
10770 | { 0x00002180, 0x00204411, 0x000 }, | ||
10771 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10772 | { 0x00000000, 0xc0200000, 0x000 }, | ||
10773 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10774 | { 0x00000000, 0xc0200000, 0x000 }, | ||
10775 | { 0x00000000, 0xc0404800, 0x000 }, | ||
10776 | { 0x00000003, 0x00333e2f, 0x000 }, | ||
10777 | { 0x00000001, 0x00210221, 0x000 }, | ||
10778 | { 0x00000000, 0x14e00000, 0x4fd }, | ||
10779 | { 0x0000002c, 0x00200a2d, 0x000 }, | ||
10780 | { 0x00040000, 0x18e00c11, 0x4ec }, | ||
10781 | { 0x00000001, 0x00333e2f, 0x000 }, | ||
10782 | { 0x00002169, 0x00204411, 0x000 }, | ||
10783 | { 0x00000000, 0x00204802, 0x000 }, | ||
10784 | { 0x00000000, 0x00204803, 0x000 }, | ||
10785 | { 0x00000008, 0x00300a22, 0x000 }, | ||
10786 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10787 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10788 | { 0x00002169, 0x00204411, 0x000 }, | ||
10789 | { 0x00000000, 0x00204802, 0x000 }, | ||
10790 | { 0x00000000, 0x00204803, 0x000 }, | ||
10791 | { 0x00000008, 0x00300a22, 0x000 }, | ||
10792 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10793 | { 0x00000000, 0xd8c04800, 0x4e0 }, | ||
10794 | { 0x00002169, 0x00204411, 0x000 }, | ||
10795 | { 0x00000000, 0x00204802, 0x000 }, | ||
10796 | { 0x00000000, 0x00204803, 0x000 }, | ||
10797 | { 0x00000008, 0x00300a22, 0x000 }, | ||
10798 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10799 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10800 | { 0x0000002d, 0x0020122d, 0x000 }, | ||
10801 | { 0x00000000, 0x00290c83, 0x000 }, | ||
10802 | { 0x00002169, 0x00204411, 0x000 }, | ||
10803 | { 0x00000000, 0x00204802, 0x000 }, | ||
10804 | { 0x00000000, 0x00204803, 0x000 }, | ||
10805 | { 0x00000008, 0x00300a22, 0x000 }, | ||
10806 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10807 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10808 | { 0x00000011, 0x00210224, 0x000 }, | ||
10809 | { 0x00000000, 0x14c00000, 0x000 }, | ||
10810 | { 0x00000000, 0x00400000, 0x4a7 }, | ||
10811 | { 0x0000002c, 0xc0203620, 0x000 }, | ||
10812 | { 0x0000002d, 0xc0403620, 0x000 }, | ||
10813 | { 0x0000000f, 0x00210221, 0x000 }, | ||
10814 | { 0x00000000, 0x14c00000, 0x502 }, | ||
10815 | { 0x00000000, 0x00600000, 0x00b }, | ||
10816 | { 0x00000000, 0xd9000000, 0x000 }, | ||
10817 | { 0x00000000, 0xc0400400, 0x001 }, | ||
10818 | { 0xb5000000, 0x00204411, 0x000 }, | ||
10819 | { 0x00002000, 0x00204811, 0x000 }, | ||
10820 | { 0xb6000000, 0x00204411, 0x000 }, | ||
10821 | { 0x0000a000, 0x00204811, 0x000 }, | ||
10822 | { 0xb7000000, 0x00204411, 0x000 }, | ||
10823 | { 0x0000c000, 0x00204811, 0x000 }, | ||
10824 | { 0xb8000000, 0x00204411, 0x000 }, | ||
10825 | { 0x0000f8e0, 0x00204811, 0x000 }, | ||
10826 | { 0xb9000000, 0x00204411, 0x000 }, | ||
10827 | { 0x0000f880, 0x00204811, 0x000 }, | ||
10828 | { 0xba000000, 0x00204411, 0x000 }, | ||
10829 | { 0x0000e000, 0x00204811, 0x000 }, | ||
10830 | { 0xbb000000, 0x00204411, 0x000 }, | ||
10831 | { 0x0000f000, 0x00204811, 0x000 }, | ||
10832 | { 0xbc000000, 0x00204411, 0x000 }, | ||
10833 | { 0x0000f3fc, 0x00204811, 0x000 }, | ||
10834 | { 0x81000000, 0x00204411, 0x000 }, | ||
10835 | { 0x00000002, 0x00204811, 0x000 }, | ||
10836 | { 0x000000ff, 0x00280e30, 0x000 }, | ||
10837 | { 0x00000000, 0x002f0223, 0x000 }, | ||
10838 | { 0x00000000, 0x0cc00000, 0x516 }, | ||
10839 | { 0x00000000, 0xc0200800, 0x000 }, | ||
10840 | { 0x00000000, 0x14c00000, 0x52b }, | ||
10841 | { 0x00000000, 0x00200c11, 0x000 }, | ||
10842 | { 0x0000001c, 0x00203623, 0x000 }, | ||
10843 | { 0x0000002b, 0x00203623, 0x000 }, | ||
10844 | { 0x00000029, 0x00203623, 0x000 }, | ||
10845 | { 0x00000028, 0x00203623, 0x000 }, | ||
10846 | { 0x00000017, 0x00203623, 0x000 }, | ||
10847 | { 0x00000025, 0x00203623, 0x000 }, | ||
10848 | { 0x00000026, 0x00203623, 0x000 }, | ||
10849 | { 0x00000015, 0x00203623, 0x000 }, | ||
10850 | { 0x00000016, 0x00203623, 0x000 }, | ||
10851 | { 0xffffe000, 0x00200c11, 0x000 }, | ||
10852 | { 0x00000021, 0x00203623, 0x000 }, | ||
10853 | { 0x00000022, 0x00203623, 0x000 }, | ||
10854 | { 0x00001fff, 0x00200c11, 0x000 }, | ||
10855 | { 0x00000023, 0x00203623, 0x000 }, | ||
10856 | { 0x00000024, 0x00203623, 0x000 }, | ||
10857 | { 0xf1ffffff, 0x00283a2e, 0x000 }, | ||
10858 | { 0x0000001a, 0xc0220e20, 0x000 }, | ||
10859 | { 0x00000000, 0x0029386e, 0x000 }, | ||
10860 | { 0x81000000, 0x00204411, 0x000 }, | ||
10861 | { 0x00000006, 0x00204811, 0x000 }, | ||
10862 | { 0x0000002a, 0x40203620, 0x000 }, | ||
10863 | { 0x87000000, 0x00204411, 0x000 }, | ||
10864 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10865 | { 0x0000a1f4, 0x00204411, 0x000 }, | ||
10866 | { 0x00000000, 0x00204810, 0x000 }, | ||
10867 | { 0x00000000, 0x00200c11, 0x000 }, | ||
10868 | { 0x00000030, 0x00203623, 0x000 }, | ||
10869 | { 0x9d000000, 0x00204411, 0x000 }, | ||
10870 | { 0x0000001f, 0x40214a20, 0x000 }, | ||
10871 | { 0x96000000, 0x00204411, 0x000 }, | ||
10872 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10873 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
10874 | { 0x00000000, 0xc0201000, 0x000 }, | ||
10875 | { 0x0000001f, 0x00211624, 0x000 }, | ||
10876 | { 0x00000000, 0x14c00000, 0x000 }, | ||
10877 | { 0x0000001d, 0x00203623, 0x000 }, | ||
10878 | { 0x00000003, 0x00281e23, 0x000 }, | ||
10879 | { 0x00000008, 0x00222223, 0x000 }, | ||
10880 | { 0xfffff000, 0x00282228, 0x000 }, | ||
10881 | { 0x00000000, 0x002920e8, 0x000 }, | ||
10882 | { 0x0000001f, 0x00203628, 0x000 }, | ||
10883 | { 0x00000018, 0x00211e23, 0x000 }, | ||
10884 | { 0x00000020, 0x00203627, 0x000 }, | ||
10885 | { 0x00000002, 0x00221624, 0x000 }, | ||
10886 | { 0x00000000, 0x003014a8, 0x000 }, | ||
10887 | { 0x0000001e, 0x00203625, 0x000 }, | ||
10888 | { 0x00000003, 0x00211a24, 0x000 }, | ||
10889 | { 0x10000000, 0x00281a26, 0x000 }, | ||
10890 | { 0xefffffff, 0x00283a2e, 0x000 }, | ||
10891 | { 0x00000000, 0x004938ce, 0x678 }, | ||
10892 | { 0x00000001, 0x40280a20, 0x000 }, | ||
10893 | { 0x00000006, 0x40280e20, 0x000 }, | ||
10894 | { 0x00000300, 0xc0281220, 0x000 }, | ||
10895 | { 0x00000008, 0x00211224, 0x000 }, | ||
10896 | { 0x00000000, 0xc0201620, 0x000 }, | ||
10897 | { 0x00000000, 0xc0201a20, 0x000 }, | ||
10898 | { 0x00000000, 0x00210222, 0x000 }, | ||
10899 | { 0x00000000, 0x14c00000, 0x563 }, | ||
10900 | { 0x81000000, 0x00204411, 0x000 }, | ||
10901 | { 0x00000001, 0x00204811, 0x000 }, | ||
10902 | { 0x00002258, 0x00300a24, 0x000 }, | ||
10903 | { 0x00040000, 0x00694622, 0x68a }, | ||
10904 | { 0x00002169, 0x00204411, 0x000 }, | ||
10905 | { 0x00000000, 0x00204805, 0x000 }, | ||
10906 | { 0x00020000, 0x00294a26, 0x000 }, | ||
10907 | { 0x00000000, 0x00204810, 0x000 }, | ||
10908 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
10909 | { 0x00000002, 0x002f0223, 0x000 }, | ||
10910 | { 0x00000000, 0x0cc00000, 0x56b }, | ||
10911 | { 0x00000000, 0xc0201c10, 0x000 }, | ||
10912 | { 0x00000000, 0xc0400000, 0x579 }, | ||
10913 | { 0x00000002, 0x002f0223, 0x000 }, | ||
10914 | { 0x00000000, 0x0cc00000, 0x56b }, | ||
10915 | { 0x81000000, 0x00204411, 0x000 }, | ||
10916 | { 0x00000001, 0x00204811, 0x000 }, | ||
10917 | { 0x00002258, 0x00300a24, 0x000 }, | ||
10918 | { 0x00040000, 0x00694622, 0x68a }, | ||
10919 | { 0x00000000, 0xc0201c10, 0x000 }, | ||
10920 | { 0x00000000, 0xc0400000, 0x579 }, | ||
10921 | { 0x00000000, 0x002f0223, 0x000 }, | ||
10922 | { 0x00000000, 0x0cc00000, 0x56f }, | ||
10923 | { 0x00000000, 0xc0201c00, 0x000 }, | ||
10924 | { 0x00000000, 0xc0400000, 0x579 }, | ||
10925 | { 0x00000004, 0x002f0223, 0x000 }, | ||
10926 | { 0x00000000, 0x0cc00000, 0x577 }, | ||
10927 | { 0x81000000, 0x00204411, 0x000 }, | ||
10928 | { 0x00000000, 0x00204811, 0x000 }, | ||
10929 | { 0x0000216d, 0x00204411, 0x000 }, | ||
10930 | { 0x00000000, 0xc0204800, 0x000 }, | ||
10931 | { 0x00000000, 0xc0604800, 0x68f }, | ||
10932 | { 0x00000000, 0x00401c10, 0x579 }, | ||
10933 | { 0x00000000, 0xc0200000, 0x000 }, | ||
10934 | { 0x00000000, 0xc0400000, 0x000 }, | ||
10935 | { 0x00000000, 0x0ee00000, 0x57b }, | ||
10936 | { 0x00000000, 0x00600000, 0x5c6 }, | ||
10937 | { 0x00000000, 0x002f0224, 0x000 }, | ||
10938 | { 0x00000000, 0x0cc00000, 0x58c }, | ||
10939 | { 0x0000a2b7, 0x00204411, 0x000 }, | ||
10940 | { 0x00000000, 0x00204807, 0x000 }, | ||
10941 | { 0x81000000, 0x00204411, 0x000 }, | ||
10942 | { 0x00000001, 0x00204811, 0x000 }, | ||
10943 | { 0x0004a2b6, 0x00604411, 0x68a }, | ||
10944 | { 0x0000001a, 0x00212230, 0x000 }, | ||
10945 | { 0x00000006, 0x00222630, 0x000 }, | ||
10946 | { 0x00042004, 0x00604411, 0x68a }, | ||
10947 | { 0x0000a2c4, 0x00204411, 0x000 }, | ||
10948 | { 0x00000000, 0x003048e9, 0x000 }, | ||
10949 | { 0x00000000, 0x00e00000, 0x58a }, | ||
10950 | { 0x0000a2d1, 0x00204411, 0x000 }, | ||
10951 | { 0x00000000, 0x00404808, 0x000 }, | ||
10952 | { 0x0000a2d1, 0x00204411, 0x000 }, | ||
10953 | { 0x00000001, 0x00504a28, 0x000 }, | ||
10954 | { 0x00000001, 0x002f0224, 0x000 }, | ||
10955 | { 0x00000000, 0x0cc00000, 0x59d }, | ||
10956 | { 0x0000a2bb, 0x00204411, 0x000 }, | ||
10957 | { 0x00000000, 0x00204807, 0x000 }, | ||
10958 | { 0x81000000, 0x00204411, 0x000 }, | ||
10959 | { 0x00000001, 0x00204811, 0x000 }, | ||
10960 | { 0x0004a2ba, 0x00604411, 0x68a }, | ||
10961 | { 0x0000001a, 0x00212230, 0x000 }, | ||
10962 | { 0x00000006, 0x00222630, 0x000 }, | ||
10963 | { 0x00042004, 0x00604411, 0x68a }, | ||
10964 | { 0x0000a2c5, 0x00204411, 0x000 }, | ||
10965 | { 0x00000000, 0x003048e9, 0x000 }, | ||
10966 | { 0x00000000, 0x00e00000, 0x59b }, | ||
10967 | { 0x0000a2d2, 0x00204411, 0x000 }, | ||
10968 | { 0x00000000, 0x00404808, 0x000 }, | ||
10969 | { 0x0000a2d2, 0x00204411, 0x000 }, | ||
10970 | { 0x00000001, 0x00504a28, 0x000 }, | ||
10971 | { 0x00000002, 0x002f0224, 0x000 }, | ||
10972 | { 0x00000000, 0x0cc00000, 0x5ae }, | ||
10973 | { 0x0000a2bf, 0x00204411, 0x000 }, | ||
10974 | { 0x00000000, 0x00204807, 0x000 }, | ||
10975 | { 0x81000000, 0x00204411, 0x000 }, | ||
10976 | { 0x00000001, 0x00204811, 0x000 }, | ||
10977 | { 0x0004a2be, 0x00604411, 0x68a }, | ||
10978 | { 0x0000001a, 0x00212230, 0x000 }, | ||
10979 | { 0x00000006, 0x00222630, 0x000 }, | ||
10980 | { 0x00042004, 0x00604411, 0x68a }, | ||
10981 | { 0x0000a2c6, 0x00204411, 0x000 }, | ||
10982 | { 0x00000000, 0x003048e9, 0x000 }, | ||
10983 | { 0x00000000, 0x00e00000, 0x5ac }, | ||
10984 | { 0x0000a2d3, 0x00204411, 0x000 }, | ||
10985 | { 0x00000000, 0x00404808, 0x000 }, | ||
10986 | { 0x0000a2d3, 0x00204411, 0x000 }, | ||
10987 | { 0x00000001, 0x00504a28, 0x000 }, | ||
10988 | { 0x0000a2c3, 0x00204411, 0x000 }, | ||
10989 | { 0x00000000, 0x00204807, 0x000 }, | ||
10990 | { 0x81000000, 0x00204411, 0x000 }, | ||
10991 | { 0x00000001, 0x00204811, 0x000 }, | ||
10992 | { 0x0004a2c2, 0x00604411, 0x68a }, | ||
10993 | { 0x0000001a, 0x00212230, 0x000 }, | ||
10994 | { 0x00000006, 0x00222630, 0x000 }, | ||
10995 | { 0x00042004, 0x00604411, 0x68a }, | ||
10996 | { 0x0000a2c7, 0x00204411, 0x000 }, | ||
10997 | { 0x00000000, 0x003048e9, 0x000 }, | ||
10998 | { 0x00000000, 0x00e00000, 0x5bb }, | ||
10999 | { 0x0000a2d4, 0x00204411, 0x000 }, | ||
11000 | { 0x00000000, 0x00404808, 0x000 }, | ||
11001 | { 0x0000a2d4, 0x00204411, 0x000 }, | ||
11002 | { 0x00000001, 0x00504a28, 0x000 }, | ||
11003 | { 0x85000000, 0x00204411, 0x000 }, | ||
11004 | { 0x00000000, 0x00204801, 0x000 }, | ||
11005 | { 0x0000304a, 0x00204411, 0x000 }, | ||
11006 | { 0x01000000, 0x00204811, 0x000 }, | ||
11007 | { 0x00000000, 0x00400000, 0x5c1 }, | ||
11008 | { 0xa4000000, 0xc0204411, 0x000 }, | ||
11009 | { 0x00000000, 0xc0404800, 0x000 }, | ||
11010 | { 0x00000000, 0xc0600000, 0x5c6 }, | ||
11011 | { 0x00000000, 0xc0400400, 0x001 }, | ||
11012 | { 0x0000002c, 0x00203621, 0x000 }, | ||
11013 | { 0x81000000, 0x00204411, 0x000 }, | ||
11014 | { 0x00000006, 0x00204811, 0x000 }, | ||
11015 | { 0x00000000, 0x002f0230, 0x000 }, | ||
11016 | { 0x00000000, 0x0cc00000, 0x5cd }, | ||
11017 | { 0x00000000, 0x00200411, 0x000 }, | ||
11018 | { 0x00000030, 0x00403621, 0x5e0 }, | ||
11019 | { 0x00000030, 0x0020062d, 0x000 }, | ||
11020 | { 0x00007e00, 0x00280621, 0x000 }, | ||
11021 | { 0x00000000, 0x002f0221, 0x000 }, | ||
11022 | { 0x00000000, 0x0ce00000, 0x5e0 }, | ||
11023 | { 0x81000000, 0x00204411, 0x000 }, | ||
11024 | { 0x00000001, 0x00204811, 0x000 }, | ||
11025 | { 0x0004a092, 0x00604411, 0x68a }, | ||
11026 | { 0x00000031, 0x00203630, 0x000 }, | ||
11027 | { 0x0004a093, 0x00604411, 0x68a }, | ||
11028 | { 0x00000032, 0x00203630, 0x000 }, | ||
11029 | { 0x0004a2b6, 0x00604411, 0x68a }, | ||
11030 | { 0x00000033, 0x00203630, 0x000 }, | ||
11031 | { 0x0004a2ba, 0x00604411, 0x68a }, | ||
11032 | { 0x00000034, 0x00203630, 0x000 }, | ||
11033 | { 0x0004a2be, 0x00604411, 0x68a }, | ||
11034 | { 0x00000035, 0x00203630, 0x000 }, | ||
11035 | { 0x0004a2c2, 0x00604411, 0x68a }, | ||
11036 | { 0x00000036, 0x00203630, 0x000 }, | ||
11037 | { 0x00042004, 0x00604411, 0x68a }, | ||
11038 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
11039 | { 0x0000003f, 0x00204811, 0x000 }, | ||
11040 | { 0x0000003f, 0x00204811, 0x000 }, | ||
11041 | { 0x0000003f, 0x00204811, 0x000 }, | ||
11042 | { 0x0000003f, 0x00204811, 0x000 }, | ||
11043 | { 0x00000005, 0x00204811, 0x000 }, | ||
11044 | { 0x0000a1f4, 0x00204411, 0x000 }, | ||
11045 | { 0x00000000, 0x00204811, 0x000 }, | ||
11046 | { 0x88000000, 0x00204411, 0x000 }, | ||
11047 | { 0x00000001, 0x00204811, 0x000 }, | ||
11048 | { 0x81000000, 0x00204411, 0x000 }, | ||
11049 | { 0x00000006, 0x00204811, 0x000 }, | ||
11050 | { 0x00000001, 0x002f0230, 0x000 }, | ||
11051 | { 0x00000000, 0x0ce00000, 0x629 }, | ||
11052 | { 0x00000030, 0x0020062d, 0x000 }, | ||
11053 | { 0x00000000, 0x002f0221, 0x000 }, | ||
11054 | { 0x00000000, 0x0ce00000, 0x629 }, | ||
11055 | { 0x81000000, 0x00204411, 0x000 }, | ||
11056 | { 0x00000001, 0x00204811, 0x000 }, | ||
11057 | { 0x00007e00, 0x00280621, 0x000 }, | ||
11058 | { 0x00000000, 0x002f0221, 0x000 }, | ||
11059 | { 0x00000000, 0x0ce00000, 0x602 }, | ||
11060 | { 0x0000a092, 0x00204411, 0x000 }, | ||
11061 | { 0x00000031, 0x00204a2d, 0x000 }, | ||
11062 | { 0x0000a093, 0x00204411, 0x000 }, | ||
11063 | { 0x00000032, 0x00204a2d, 0x000 }, | ||
11064 | { 0x0000a2b6, 0x00204411, 0x000 }, | ||
11065 | { 0x00000033, 0x00204a2d, 0x000 }, | ||
11066 | { 0x0000a2ba, 0x00204411, 0x000 }, | ||
11067 | { 0x00000034, 0x00204a2d, 0x000 }, | ||
11068 | { 0x0000a2be, 0x00204411, 0x000 }, | ||
11069 | { 0x00000035, 0x00204a2d, 0x000 }, | ||
11070 | { 0x0000a2c2, 0x00204411, 0x000 }, | ||
11071 | { 0x00000036, 0x00204a2d, 0x000 }, | ||
11072 | { 0x00000030, 0x0020062d, 0x000 }, | ||
11073 | { 0x000001ff, 0x00280621, 0x000 }, | ||
11074 | { 0x00000000, 0x002f0221, 0x000 }, | ||
11075 | { 0x00000000, 0x0ce00000, 0x628 }, | ||
11076 | { 0x00000000, 0x00210221, 0x000 }, | ||
11077 | { 0x00000000, 0x14c00000, 0x60b }, | ||
11078 | { 0x0004a003, 0x00604411, 0x68a }, | ||
11079 | { 0x0000a003, 0x00204411, 0x000 }, | ||
11080 | { 0x00000000, 0x00204810, 0x000 }, | ||
11081 | { 0x00000001, 0x00210621, 0x000 }, | ||
11082 | { 0x00000000, 0x14c00000, 0x610 }, | ||
11083 | { 0x0004a010, 0x00604411, 0x68a }, | ||
11084 | { 0x0000a010, 0x00204411, 0x000 }, | ||
11085 | { 0x00000000, 0x00204810, 0x000 }, | ||
11086 | { 0x00000001, 0x00210621, 0x000 }, | ||
11087 | { 0x00000000, 0x002f0221, 0x000 }, | ||
11088 | { 0x00000000, 0x0ce00000, 0x628 }, | ||
11089 | { 0x0004a011, 0x00604411, 0x68a }, | ||
11090 | { 0x0000a011, 0x00204411, 0x000 }, | ||
11091 | { 0x00000000, 0x00204810, 0x000 }, | ||
11092 | { 0x0004a012, 0x00604411, 0x68a }, | ||
11093 | { 0x0000a012, 0x00204411, 0x000 }, | ||
11094 | { 0x00000000, 0x00204810, 0x000 }, | ||
11095 | { 0x0004a013, 0x00604411, 0x68a }, | ||
11096 | { 0x0000a013, 0x00204411, 0x000 }, | ||
11097 | { 0x00000000, 0x00204810, 0x000 }, | ||
11098 | { 0x0004a014, 0x00604411, 0x68a }, | ||
11099 | { 0x0000a014, 0x00204411, 0x000 }, | ||
11100 | { 0x00000000, 0x00204810, 0x000 }, | ||
11101 | { 0x0004a015, 0x00604411, 0x68a }, | ||
11102 | { 0x0000a015, 0x00204411, 0x000 }, | ||
11103 | { 0x00000000, 0x00204810, 0x000 }, | ||
11104 | { 0x0004a016, 0x00604411, 0x68a }, | ||
11105 | { 0x0000a016, 0x00204411, 0x000 }, | ||
11106 | { 0x00000000, 0x00204810, 0x000 }, | ||
11107 | { 0x0004a017, 0x00604411, 0x68a }, | ||
11108 | { 0x0000a017, 0x00204411, 0x000 }, | ||
11109 | { 0x00000000, 0x00204810, 0x000 }, | ||
11110 | { 0x00042004, 0x00604411, 0x68a }, | ||
11111 | { 0x0000002c, 0x0080062d, 0x000 }, | ||
11112 | { 0xff000000, 0x00204411, 0x000 }, | ||
11113 | { 0x00000000, 0x00204811, 0x000 }, | ||
11114 | { 0x00000001, 0x00204811, 0x000 }, | ||
11115 | { 0x00000002, 0x00804811, 0x000 }, | ||
11116 | { 0x00000000, 0x0ee00000, 0x63a }, | ||
11117 | { 0x00000030, 0x0020062d, 0x000 }, | ||
11118 | { 0x00000002, 0x00280621, 0x000 }, | ||
11119 | { 0x00000000, 0x002f0221, 0x000 }, | ||
11120 | { 0x00000000, 0x0ce00000, 0x638 }, | ||
11121 | { 0x81000000, 0x00204411, 0x000 }, | ||
11122 | { 0x00000001, 0x00204811, 0x000 }, | ||
11123 | { 0x00042004, 0x00604411, 0x68a }, | ||
11124 | { 0x00001000, 0x00200811, 0x000 }, | ||
11125 | { 0x0000002b, 0x00203622, 0x000 }, | ||
11126 | { 0x00000000, 0x00600000, 0x63e }, | ||
11127 | { 0x00000000, 0x00600000, 0x5c6 }, | ||
11128 | { 0x98000000, 0x00204411, 0x000 }, | ||
11129 | { 0x00000000, 0x00804811, 0x000 }, | ||
11130 | { 0x00000000, 0xc0600000, 0x63e }, | ||
11131 | { 0x00000000, 0xc0400400, 0x001 }, | ||
11132 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
11133 | { 0x00000022, 0x00204811, 0x000 }, | ||
11134 | { 0x89000000, 0x00204411, 0x000 }, | ||
11135 | { 0x00000001, 0x00404811, 0x62a }, | ||
11136 | { 0x97000000, 0x00204411, 0x000 }, | ||
11137 | { 0x00000000, 0x00204811, 0x000 }, | ||
11138 | { 0x8a000000, 0x00204411, 0x000 }, | ||
11139 | { 0x00000000, 0x00404811, 0x62a }, | ||
11140 | { 0x00000000, 0x00600000, 0x659 }, | ||
11141 | { 0x00002010, 0x00204411, 0x000 }, | ||
11142 | { 0x00008000, 0x00204811, 0x000 }, | ||
11143 | { 0x0001a2a4, 0xc0204411, 0x000 }, | ||
11144 | { 0x00000016, 0x00604811, 0x36e }, | ||
11145 | { 0x00002010, 0x00204411, 0x000 }, | ||
11146 | { 0x00010000, 0x00204811, 0x000 }, | ||
11147 | { 0x81000000, 0x00204411, 0x000 }, | ||
11148 | { 0x00000001, 0x00204811, 0x000 }, | ||
11149 | { 0x0000217c, 0x00204411, 0x000 }, | ||
11150 | { 0x09800000, 0x00204811, 0x000 }, | ||
11151 | { 0xffffffff, 0x00204811, 0x000 }, | ||
11152 | { 0x00000000, 0x00204811, 0x000 }, | ||
11153 | { 0x00000000, 0x17000000, 0x000 }, | ||
11154 | { 0x0004217f, 0x00604411, 0x68a }, | ||
11155 | { 0x0000001f, 0x00210230, 0x000 }, | ||
11156 | { 0x00000000, 0x14c00000, 0x000 }, | ||
11157 | { 0x00000004, 0x00404c11, 0x653 }, | ||
11158 | { 0x00000000, 0x00400000, 0x000 }, | ||
11159 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
11160 | { 0x00000004, 0x00291e27, 0x000 }, | ||
11161 | { 0x00000017, 0x00803627, 0x000 }, | ||
11162 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
11163 | { 0xfffffffb, 0x00281e27, 0x000 }, | ||
11164 | { 0x00000017, 0x00803627, 0x000 }, | ||
11165 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
11166 | { 0x00000008, 0x00291e27, 0x000 }, | ||
11167 | { 0x00000017, 0x00803627, 0x000 }, | ||
11168 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
11169 | { 0xfffffff7, 0x00281e27, 0x000 }, | ||
11170 | { 0x00000017, 0x00803627, 0x000 }, | ||
11171 | { 0x00002010, 0x00204411, 0x000 }, | ||
11172 | { 0x00008000, 0x00204811, 0x000 }, | ||
11173 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
11174 | { 0x00000016, 0x00604811, 0x36e }, | ||
11175 | { 0x00002010, 0x00204411, 0x000 }, | ||
11176 | { 0x00010000, 0x00204811, 0x000 }, | ||
11177 | { 0x0000217c, 0x00204411, 0x000 }, | ||
11178 | { 0x01800000, 0x00204811, 0x000 }, | ||
11179 | { 0xffffffff, 0x00204811, 0x000 }, | ||
11180 | { 0x00000000, 0x00204811, 0x000 }, | ||
11181 | { 0x00000000, 0x17000000, 0x000 }, | ||
11182 | { 0x81000000, 0x00204411, 0x000 }, | ||
11183 | { 0x00000001, 0x00204811, 0x000 }, | ||
11184 | { 0x0004217f, 0x00604411, 0x68a }, | ||
11185 | { 0x0000001f, 0x00210230, 0x000 }, | ||
11186 | { 0x00000000, 0x14c00000, 0x689 }, | ||
11187 | { 0x00000010, 0x00404c11, 0x66f }, | ||
11188 | { 0x00000000, 0xc0200400, 0x000 }, | ||
11189 | { 0x00000000, 0x38c00000, 0x000 }, | ||
11190 | { 0x0000001d, 0x00200a2d, 0x000 }, | ||
11191 | { 0x0000001e, 0x00200e2d, 0x000 }, | ||
11192 | { 0x0000001f, 0x0020122d, 0x000 }, | ||
11193 | { 0x00000020, 0x0020162d, 0x000 }, | ||
11194 | { 0x00002169, 0x00204411, 0x000 }, | ||
11195 | { 0x00000000, 0x00204804, 0x000 }, | ||
11196 | { 0x00000000, 0x00204805, 0x000 }, | ||
11197 | { 0x00000000, 0x00204801, 0x000 }, | ||
11198 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
11199 | { 0x00000004, 0x00301224, 0x000 }, | ||
11200 | { 0x00000000, 0x002f0064, 0x000 }, | ||
11201 | { 0x00000000, 0x0cc00000, 0x688 }, | ||
11202 | { 0x00000003, 0x00281a22, 0x000 }, | ||
11203 | { 0x00000008, 0x00221222, 0x000 }, | ||
11204 | { 0xfffff000, 0x00281224, 0x000 }, | ||
11205 | { 0x00000000, 0x002910c4, 0x000 }, | ||
11206 | { 0x0000001f, 0x00403624, 0x000 }, | ||
11207 | { 0x00000000, 0x00800000, 0x000 }, | ||
11208 | { 0x00000000, 0x1ac00000, 0x68a }, | ||
11209 | { 0x9f000000, 0x00204411, 0x000 }, | ||
11210 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
11211 | { 0x00000000, 0x1ae00000, 0x68d }, | ||
11212 | { 0x00000000, 0x00800000, 0x000 }, | ||
11213 | { 0x00000000, 0x1ac00000, 0x68f }, | ||
11214 | { 0x9e000000, 0x00204411, 0x000 }, | ||
11215 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
11216 | { 0x00000000, 0x1ae00000, 0x692 }, | ||
11217 | { 0x00000000, 0x00800000, 0x000 }, | ||
11218 | { 0x00000000, 0x00600000, 0x00b }, | ||
11219 | { 0x00001000, 0x00600411, 0x315 }, | ||
11220 | { 0x00000000, 0x00200411, 0x000 }, | ||
11221 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
11222 | { 0x0000225c, 0x00204411, 0x000 }, | ||
11223 | { 0x00000003, 0x00204811, 0x000 }, | ||
11224 | { 0x00002256, 0x00204411, 0x000 }, | ||
11225 | { 0x0000001b, 0x00204811, 0x000 }, | ||
11226 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
11227 | { 0x00000001, 0x00204811, 0x000 }, | ||
11228 | { 0x0001a1fd, 0xc0204411, 0x000 }, | ||
11229 | { 0x00000021, 0x00201e2d, 0x000 }, | ||
11230 | { 0x00000010, 0x00221e27, 0x000 }, | ||
11231 | { 0x00000024, 0x0020222d, 0x000 }, | ||
11232 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
11233 | { 0x00000000, 0x00294907, 0x000 }, | ||
11234 | { 0x00000000, 0x00204811, 0x000 }, | ||
11235 | { 0x00000022, 0x0020222d, 0x000 }, | ||
11236 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
11237 | { 0x00000000, 0x00294907, 0x000 }, | ||
11238 | { 0x00000000, 0x00204811, 0x000 }, | ||
11239 | { 0x00000023, 0x00201e2d, 0x000 }, | ||
11240 | { 0x00000010, 0x00221e27, 0x000 }, | ||
11241 | { 0x00000000, 0x00294907, 0x000 }, | ||
11242 | { 0x00000000, 0x00404811, 0x000 }, | ||
11243 | { 0x00000000, 0x00000000, 0x000 }, | ||
11244 | { 0x00000000, 0x00000000, 0x000 }, | ||
11245 | { 0x00000000, 0x00000000, 0x000 }, | ||
11246 | { 0x00000000, 0x00000000, 0x000 }, | ||
11247 | { 0x00000000, 0x00000000, 0x000 }, | ||
11248 | { 0x00000000, 0x00000000, 0x000 }, | ||
11249 | { 0x00000000, 0x00000000, 0x000 }, | ||
11250 | { 0x00000000, 0x00000000, 0x000 }, | ||
11251 | { 0x00000000, 0x00000000, 0x000 }, | ||
11252 | { 0x00000000, 0x00000000, 0x000 }, | ||
11253 | { 0x00000000, 0x00000000, 0x000 }, | ||
11254 | { 0x00000000, 0x00000000, 0x000 }, | ||
11255 | { 0x00000000, 0x00000000, 0x000 }, | ||
11256 | { 0x00000000, 0x00000000, 0x000 }, | ||
11257 | { 0x00000000, 0x00000000, 0x000 }, | ||
11258 | { 0x00000000, 0x00000000, 0x000 }, | ||
11259 | { 0x00000000, 0x00000000, 0x000 }, | ||
11260 | { 0x00000000, 0x00000000, 0x000 }, | ||
11261 | { 0x00000000, 0x00000000, 0x000 }, | ||
11262 | { 0x00000000, 0x00000000, 0x000 }, | ||
11263 | { 0x00000000, 0x00000000, 0x000 }, | ||
11264 | { 0x00000000, 0x00000000, 0x000 }, | ||
11265 | { 0x00000000, 0x00000000, 0x000 }, | ||
11266 | { 0x00000000, 0x00000000, 0x000 }, | ||
11267 | { 0x00000000, 0x00000000, 0x000 }, | ||
11268 | { 0x00000000, 0x00000000, 0x000 }, | ||
11269 | { 0x00000000, 0x00000000, 0x000 }, | ||
11270 | { 0x00000000, 0x00000000, 0x000 }, | ||
11271 | { 0x00000000, 0x00000000, 0x000 }, | ||
11272 | { 0x00000000, 0x00000000, 0x000 }, | ||
11273 | { 0x00000000, 0x00000000, 0x000 }, | ||
11274 | { 0x00000000, 0x00000000, 0x000 }, | ||
11275 | { 0x00000000, 0x00000000, 0x000 }, | ||
11276 | { 0x00000000, 0x00000000, 0x000 }, | ||
11277 | { 0x00000000, 0x00000000, 0x000 }, | ||
11278 | { 0x00000000, 0x00000000, 0x000 }, | ||
11279 | { 0x00000000, 0x00000000, 0x000 }, | ||
11280 | { 0x00000000, 0x00000000, 0x000 }, | ||
11281 | { 0x00000000, 0x00000000, 0x000 }, | ||
11282 | { 0x00000000, 0x00000000, 0x000 }, | ||
11283 | { 0x00000000, 0x00000000, 0x000 }, | ||
11284 | { 0x00000000, 0x00000000, 0x000 }, | ||
11285 | { 0x00000000, 0x00000000, 0x000 }, | ||
11286 | { 0x00000000, 0x00000000, 0x000 }, | ||
11287 | { 0x00000000, 0x00000000, 0x000 }, | ||
11288 | { 0x00000000, 0x00000000, 0x000 }, | ||
11289 | { 0x00000000, 0x00000000, 0x000 }, | ||
11290 | { 0x00000000, 0x00000000, 0x000 }, | ||
11291 | { 0x00000000, 0x00000000, 0x000 }, | ||
11292 | { 0x00000000, 0x00000000, 0x000 }, | ||
11293 | { 0x00000000, 0x00000000, 0x000 }, | ||
11294 | { 0x00000000, 0x00000000, 0x000 }, | ||
11295 | { 0x00000000, 0x00000000, 0x000 }, | ||
11296 | { 0x00000000, 0x00000000, 0x000 }, | ||
11297 | { 0x00000000, 0x00000000, 0x000 }, | ||
11298 | { 0x014204ff, 0x05bd0250, 0x000 }, | ||
11299 | { 0x01c30168, 0x043f05bd, 0x000 }, | ||
11300 | { 0x02250209, 0x02500151, 0x000 }, | ||
11301 | { 0x02230245, 0x02a00241, 0x000 }, | ||
11302 | { 0x03d705bd, 0x05bd05bd, 0x000 }, | ||
11303 | { 0x06460647, 0x031f05bd, 0x000 }, | ||
11304 | { 0x05bd05c2, 0x03200340, 0x000 }, | ||
11305 | { 0x032a0282, 0x03420334, 0x000 }, | ||
11306 | { 0x05bd05bd, 0x05bd05bd, 0x000 }, | ||
11307 | { 0x05bd054e, 0x05bd05bd, 0x000 }, | ||
11308 | { 0x03ba05bd, 0x04b80344, 0x000 }, | ||
11309 | { 0x0497044d, 0x043d05bd, 0x000 }, | ||
11310 | { 0x04cd05bd, 0x044104da, 0x000 }, | ||
11311 | { 0x044d0504, 0x03510375, 0x000 }, | ||
11312 | { 0x05bd05bd, 0x05bd05bd, 0x000 }, | ||
11313 | { 0x05bd05bd, 0x05bd05bd, 0x000 }, | ||
11314 | { 0x05bd05bd, 0x063c05c4, 0x000 }, | ||
11315 | { 0x05bd05bd, 0x000705bd, 0x000 }, | ||
11316 | { 0x05bd05bd, 0x05bd05bd, 0x000 }, | ||
11317 | { 0x05bd05bd, 0x05bd05bd, 0x000 }, | ||
11318 | { 0x03f803ed, 0x04080406, 0x000 }, | ||
11319 | { 0x040e040a, 0x040c0410, 0x000 }, | ||
11320 | { 0x041c0418, 0x04240420, 0x000 }, | ||
11321 | { 0x042c0428, 0x04340430, 0x000 }, | ||
11322 | { 0x05bd05bd, 0x043805bd, 0x000 }, | ||
11323 | { 0x05bd05bd, 0x05bd05bd, 0x000 }, | ||
11324 | { 0x05bd05bd, 0x05bd05bd, 0x000 }, | ||
11325 | { 0x00020676, 0x06940006, 0x000 }, | ||
11326 | }; | ||
11327 | |||
11328 | static const u32 RV635_pfp_microcode[] = { | ||
11329 | 0xca0400, | ||
11330 | 0xa00000, | ||
11331 | 0x7e828b, | ||
11332 | 0x7c038b, | ||
11333 | 0x8001b8, | ||
11334 | 0x7c038b, | ||
11335 | 0xd4401e, | ||
11336 | 0xee001e, | ||
11337 | 0xca0400, | ||
11338 | 0xa00000, | ||
11339 | 0x7e828b, | ||
11340 | 0xc41838, | ||
11341 | 0xca2400, | ||
11342 | 0xca2800, | ||
11343 | 0x9581a8, | ||
11344 | 0xc41c3a, | ||
11345 | 0xc3c000, | ||
11346 | 0xca0800, | ||
11347 | 0xca0c00, | ||
11348 | 0x7c744b, | ||
11349 | 0xc20005, | ||
11350 | 0x99c000, | ||
11351 | 0xc41c3a, | ||
11352 | 0x7c744c, | ||
11353 | 0xc0fff0, | ||
11354 | 0x042c04, | ||
11355 | 0x309002, | ||
11356 | 0x7d2500, | ||
11357 | 0x351402, | ||
11358 | 0x7d350b, | ||
11359 | 0x255403, | ||
11360 | 0x7cd580, | ||
11361 | 0x259c03, | ||
11362 | 0x95c004, | ||
11363 | 0xd5001b, | ||
11364 | 0x7eddc1, | ||
11365 | 0x7d9d80, | ||
11366 | 0xd6801b, | ||
11367 | 0xd5801b, | ||
11368 | 0xd4401e, | ||
11369 | 0xd5401e, | ||
11370 | 0xd6401e, | ||
11371 | 0xd6801e, | ||
11372 | 0xd4801e, | ||
11373 | 0xd4c01e, | ||
11374 | 0x9783d3, | ||
11375 | 0xd5c01e, | ||
11376 | 0xca0800, | ||
11377 | 0x80001a, | ||
11378 | 0xca0c00, | ||
11379 | 0xe4011e, | ||
11380 | 0xd4001e, | ||
11381 | 0x80000c, | ||
11382 | 0xc41838, | ||
11383 | 0xe4013e, | ||
11384 | 0xd4001e, | ||
11385 | 0x80000c, | ||
11386 | 0xc41838, | ||
11387 | 0xd4401e, | ||
11388 | 0xee001e, | ||
11389 | 0xca0400, | ||
11390 | 0xa00000, | ||
11391 | 0x7e828b, | ||
11392 | 0xe4011e, | ||
11393 | 0xd4001e, | ||
11394 | 0xd4401e, | ||
11395 | 0xee001e, | ||
11396 | 0xca0400, | ||
11397 | 0xa00000, | ||
11398 | 0x7e828b, | ||
11399 | 0xe4013e, | ||
11400 | 0xd4001e, | ||
11401 | 0xd4401e, | ||
11402 | 0xee001e, | ||
11403 | 0xca0400, | ||
11404 | 0xa00000, | ||
11405 | 0x7e828b, | ||
11406 | 0xca1800, | ||
11407 | 0xd4401e, | ||
11408 | 0xd5801e, | ||
11409 | 0x800053, | ||
11410 | 0xd40075, | ||
11411 | 0xd4401e, | ||
11412 | 0xca0800, | ||
11413 | 0xca0c00, | ||
11414 | 0xca1000, | ||
11415 | 0xd48019, | ||
11416 | 0xd4c018, | ||
11417 | 0xd50017, | ||
11418 | 0xd4801e, | ||
11419 | 0xd4c01e, | ||
11420 | 0xd5001e, | ||
11421 | 0xe2001e, | ||
11422 | 0xca0400, | ||
11423 | 0xa00000, | ||
11424 | 0x7e828b, | ||
11425 | 0xca0800, | ||
11426 | 0xd48060, | ||
11427 | 0xd4401e, | ||
11428 | 0x800000, | ||
11429 | 0xd4801e, | ||
11430 | 0xca0800, | ||
11431 | 0xd48061, | ||
11432 | 0xd4401e, | ||
11433 | 0x800000, | ||
11434 | 0xd4801e, | ||
11435 | 0xca0800, | ||
11436 | 0xca0c00, | ||
11437 | 0xd4401e, | ||
11438 | 0xd48016, | ||
11439 | 0xd4c016, | ||
11440 | 0xd4801e, | ||
11441 | 0x8001b8, | ||
11442 | 0xd4c01e, | ||
11443 | 0xc60843, | ||
11444 | 0xca0c00, | ||
11445 | 0xca1000, | ||
11446 | 0x948004, | ||
11447 | 0xca1400, | ||
11448 | 0xe420f3, | ||
11449 | 0xd42013, | ||
11450 | 0xd56065, | ||
11451 | 0xd4e01c, | ||
11452 | 0xd5201c, | ||
11453 | 0xd5601c, | ||
11454 | 0x800000, | ||
11455 | 0x062001, | ||
11456 | 0xc60843, | ||
11457 | 0xca0c00, | ||
11458 | 0xca1000, | ||
11459 | 0x9483f7, | ||
11460 | 0xca1400, | ||
11461 | 0xe420f3, | ||
11462 | 0x800079, | ||
11463 | 0xd42013, | ||
11464 | 0xc60843, | ||
11465 | 0xca0c00, | ||
11466 | 0xca1000, | ||
11467 | 0x9883ef, | ||
11468 | 0xca1400, | ||
11469 | 0xd40064, | ||
11470 | 0x80008d, | ||
11471 | 0x000000, | ||
11472 | 0xc41432, | ||
11473 | 0xc61843, | ||
11474 | 0xc4082f, | ||
11475 | 0x954005, | ||
11476 | 0xc40c30, | ||
11477 | 0xd4401e, | ||
11478 | 0x800000, | ||
11479 | 0xee001e, | ||
11480 | 0x9583f5, | ||
11481 | 0xc41031, | ||
11482 | 0xd44033, | ||
11483 | 0xd52065, | ||
11484 | 0xd4a01c, | ||
11485 | 0xd4e01c, | ||
11486 | 0xd5201c, | ||
11487 | 0xe4015e, | ||
11488 | 0xd4001e, | ||
11489 | 0x800000, | ||
11490 | 0x062001, | ||
11491 | 0xca1800, | ||
11492 | 0x0a2001, | ||
11493 | 0xd60076, | ||
11494 | 0xc40836, | ||
11495 | 0x988007, | ||
11496 | 0xc61045, | ||
11497 | 0x950110, | ||
11498 | 0xd4001f, | ||
11499 | 0xd46062, | ||
11500 | 0x800000, | ||
11501 | 0xd42062, | ||
11502 | 0xcc3835, | ||
11503 | 0xcc1433, | ||
11504 | 0x8401bb, | ||
11505 | 0xd40072, | ||
11506 | 0xd5401e, | ||
11507 | 0x800000, | ||
11508 | 0xee001e, | ||
11509 | 0xe2001a, | ||
11510 | 0x8401bb, | ||
11511 | 0xe2001a, | ||
11512 | 0xcc104b, | ||
11513 | 0xcc0447, | ||
11514 | 0x2c9401, | ||
11515 | 0x7d098b, | ||
11516 | 0x984005, | ||
11517 | 0x7d15cb, | ||
11518 | 0xd4001a, | ||
11519 | 0x8001b8, | ||
11520 | 0xd4006d, | ||
11521 | 0x344401, | ||
11522 | 0xcc0c48, | ||
11523 | 0x98403a, | ||
11524 | 0xcc2c4a, | ||
11525 | 0x958004, | ||
11526 | 0xcc0449, | ||
11527 | 0x8001b8, | ||
11528 | 0xd4001a, | ||
11529 | 0xd4c01a, | ||
11530 | 0x282801, | ||
11531 | 0x8400f0, | ||
11532 | 0xcc1003, | ||
11533 | 0x98801b, | ||
11534 | 0x04380c, | ||
11535 | 0x8400f0, | ||
11536 | 0xcc1003, | ||
11537 | 0x988017, | ||
11538 | 0x043808, | ||
11539 | 0x8400f0, | ||
11540 | 0xcc1003, | ||
11541 | 0x988013, | ||
11542 | 0x043804, | ||
11543 | 0x8400f0, | ||
11544 | 0xcc1003, | ||
11545 | 0x988014, | ||
11546 | 0xcc104c, | ||
11547 | 0x9a8009, | ||
11548 | 0xcc144d, | ||
11549 | 0x9840dc, | ||
11550 | 0xd4006d, | ||
11551 | 0xcc1848, | ||
11552 | 0xd5001a, | ||
11553 | 0xd5401a, | ||
11554 | 0x8000c9, | ||
11555 | 0xd5801a, | ||
11556 | 0x96c0d5, | ||
11557 | 0xd4006d, | ||
11558 | 0x8001b8, | ||
11559 | 0xd4006e, | ||
11560 | 0x9ac003, | ||
11561 | 0xd4006d, | ||
11562 | 0xd4006e, | ||
11563 | 0x800000, | ||
11564 | 0xec007f, | ||
11565 | 0x9ac0cc, | ||
11566 | 0xd4006d, | ||
11567 | 0x8001b8, | ||
11568 | 0xd4006e, | ||
11569 | 0xcc1403, | ||
11570 | 0xcc1803, | ||
11571 | 0xcc1c03, | ||
11572 | 0x7d9103, | ||
11573 | 0x7dd583, | ||
11574 | 0x7d190c, | ||
11575 | 0x35cc1f, | ||
11576 | 0x35701f, | ||
11577 | 0x7cf0cb, | ||
11578 | 0x7cd08b, | ||
11579 | 0x880000, | ||
11580 | 0x7e8e8b, | ||
11581 | 0x95c004, | ||
11582 | 0xd4006e, | ||
11583 | 0x8001b8, | ||
11584 | 0xd4001a, | ||
11585 | 0xd4c01a, | ||
11586 | 0xcc0803, | ||
11587 | 0xcc0c03, | ||
11588 | 0xcc1003, | ||
11589 | 0xcc1403, | ||
11590 | 0xcc1803, | ||
11591 | 0xcc1c03, | ||
11592 | 0xcc2403, | ||
11593 | 0xcc2803, | ||
11594 | 0x35c41f, | ||
11595 | 0x36b01f, | ||
11596 | 0x7c704b, | ||
11597 | 0x34f01f, | ||
11598 | 0x7c704b, | ||
11599 | 0x35701f, | ||
11600 | 0x7c704b, | ||
11601 | 0x7d8881, | ||
11602 | 0x7dccc1, | ||
11603 | 0x7e5101, | ||
11604 | 0x7e9541, | ||
11605 | 0x7c9082, | ||
11606 | 0x7cd4c2, | ||
11607 | 0x7c848b, | ||
11608 | 0x9ac003, | ||
11609 | 0x7c8c8b, | ||
11610 | 0x2c8801, | ||
11611 | 0x98809e, | ||
11612 | 0xd4006d, | ||
11613 | 0x98409c, | ||
11614 | 0xd4006e, | ||
11615 | 0xcc084c, | ||
11616 | 0xcc0c4d, | ||
11617 | 0xcc1048, | ||
11618 | 0xd4801a, | ||
11619 | 0xd4c01a, | ||
11620 | 0x800101, | ||
11621 | 0xd5001a, | ||
11622 | 0xcc0832, | ||
11623 | 0xd40032, | ||
11624 | 0x9482d9, | ||
11625 | 0xca0c00, | ||
11626 | 0xd4401e, | ||
11627 | 0x800000, | ||
11628 | 0xd4001e, | ||
11629 | 0xe4011e, | ||
11630 | 0xd4001e, | ||
11631 | 0xca0800, | ||
11632 | 0xca0c00, | ||
11633 | 0xca1000, | ||
11634 | 0xd4401e, | ||
11635 | 0xca1400, | ||
11636 | 0xd4801e, | ||
11637 | 0xd4c01e, | ||
11638 | 0xd5001e, | ||
11639 | 0xd5401e, | ||
11640 | 0xd54034, | ||
11641 | 0x800000, | ||
11642 | 0xee001e, | ||
11643 | 0x280404, | ||
11644 | 0xe2001a, | ||
11645 | 0xe2001a, | ||
11646 | 0xd4401a, | ||
11647 | 0xca3800, | ||
11648 | 0xcc0803, | ||
11649 | 0xcc0c03, | ||
11650 | 0xcc0c03, | ||
11651 | 0xcc0c03, | ||
11652 | 0x9882bd, | ||
11653 | 0x000000, | ||
11654 | 0x8401bb, | ||
11655 | 0xd7a06f, | ||
11656 | 0x800000, | ||
11657 | 0xee001f, | ||
11658 | 0xca0400, | ||
11659 | 0xc2ff00, | ||
11660 | 0xcc0834, | ||
11661 | 0xc13fff, | ||
11662 | 0x7c74cb, | ||
11663 | 0x7cc90b, | ||
11664 | 0x7d010f, | ||
11665 | 0x9902b0, | ||
11666 | 0x7c738b, | ||
11667 | 0x8401bb, | ||
11668 | 0xd7a06f, | ||
11669 | 0x800000, | ||
11670 | 0xee001f, | ||
11671 | 0xca0800, | ||
11672 | 0x281900, | ||
11673 | 0x7d898b, | ||
11674 | 0x958014, | ||
11675 | 0x281404, | ||
11676 | 0xca0c00, | ||
11677 | 0xca1000, | ||
11678 | 0xca1c00, | ||
11679 | 0xca2400, | ||
11680 | 0xe2001f, | ||
11681 | 0xd4c01a, | ||
11682 | 0xd5001a, | ||
11683 | 0xd5401a, | ||
11684 | 0xcc1803, | ||
11685 | 0xcc2c03, | ||
11686 | 0xcc2c03, | ||
11687 | 0xcc2c03, | ||
11688 | 0x7da58b, | ||
11689 | 0x7d9c47, | ||
11690 | 0x984297, | ||
11691 | 0x000000, | ||
11692 | 0x800161, | ||
11693 | 0xd4c01a, | ||
11694 | 0xd4401e, | ||
11695 | 0xd4801e, | ||
11696 | 0x800000, | ||
11697 | 0xee001e, | ||
11698 | 0xe4011e, | ||
11699 | 0xd4001e, | ||
11700 | 0xd4401e, | ||
11701 | 0xee001e, | ||
11702 | 0xca0400, | ||
11703 | 0xa00000, | ||
11704 | 0x7e828b, | ||
11705 | 0xe4013e, | ||
11706 | 0xd4001e, | ||
11707 | 0xd4401e, | ||
11708 | 0xee001e, | ||
11709 | 0xca0400, | ||
11710 | 0xa00000, | ||
11711 | 0x7e828b, | ||
11712 | 0xca0800, | ||
11713 | 0x248c06, | ||
11714 | 0x0ccc06, | ||
11715 | 0x98c006, | ||
11716 | 0xcc104e, | ||
11717 | 0x990004, | ||
11718 | 0xd40073, | ||
11719 | 0xe4011e, | ||
11720 | 0xd4001e, | ||
11721 | 0xd4401e, | ||
11722 | 0xd4801e, | ||
11723 | 0x800000, | ||
11724 | 0xee001e, | ||
11725 | 0xca0800, | ||
11726 | 0xca0c00, | ||
11727 | 0x34d018, | ||
11728 | 0x251001, | ||
11729 | 0x950021, | ||
11730 | 0xc17fff, | ||
11731 | 0xca1000, | ||
11732 | 0xca1400, | ||
11733 | 0xca1800, | ||
11734 | 0xd4801d, | ||
11735 | 0xd4c01d, | ||
11736 | 0x7db18b, | ||
11737 | 0xc14202, | ||
11738 | 0xc2c001, | ||
11739 | 0xd5801d, | ||
11740 | 0x34dc0e, | ||
11741 | 0x7d5d4c, | ||
11742 | 0x7f734c, | ||
11743 | 0xd7401e, | ||
11744 | 0xd5001e, | ||
11745 | 0xd5401e, | ||
11746 | 0xc14200, | ||
11747 | 0xc2c000, | ||
11748 | 0x099c01, | ||
11749 | 0x31dc10, | ||
11750 | 0x7f5f4c, | ||
11751 | 0x7f734c, | ||
11752 | 0x042802, | ||
11753 | 0x7d8380, | ||
11754 | 0xd5a86f, | ||
11755 | 0xd58066, | ||
11756 | 0xd7401e, | ||
11757 | 0xec005e, | ||
11758 | 0xc82402, | ||
11759 | 0xc82402, | ||
11760 | 0x8001b8, | ||
11761 | 0xd60076, | ||
11762 | 0xd4401e, | ||
11763 | 0xd4801e, | ||
11764 | 0xd4c01e, | ||
11765 | 0x800000, | ||
11766 | 0xee001e, | ||
11767 | 0x800000, | ||
11768 | 0xee001f, | ||
11769 | 0xd4001f, | ||
11770 | 0x800000, | ||
11771 | 0xd4001f, | ||
11772 | 0xd4001f, | ||
11773 | 0x880000, | ||
11774 | 0xd4001f, | ||
11775 | 0x000000, | ||
11776 | 0x000000, | ||
11777 | 0x000000, | ||
11778 | 0x000000, | ||
11779 | 0x000000, | ||
11780 | 0x000000, | ||
11781 | 0x000000, | ||
11782 | 0x000000, | ||
11783 | 0x000000, | ||
11784 | 0x000000, | ||
11785 | 0x000000, | ||
11786 | 0x000000, | ||
11787 | 0x000000, | ||
11788 | 0x000000, | ||
11789 | 0x000000, | ||
11790 | 0x000000, | ||
11791 | 0x000000, | ||
11792 | 0x000000, | ||
11793 | 0x000000, | ||
11794 | 0x000000, | ||
11795 | 0x000000, | ||
11796 | 0x000000, | ||
11797 | 0x000000, | ||
11798 | 0x000000, | ||
11799 | 0x000000, | ||
11800 | 0x000000, | ||
11801 | 0x000000, | ||
11802 | 0x000000, | ||
11803 | 0x000000, | ||
11804 | 0x000000, | ||
11805 | 0x000000, | ||
11806 | 0x000000, | ||
11807 | 0x000000, | ||
11808 | 0x000000, | ||
11809 | 0x000000, | ||
11810 | 0x000000, | ||
11811 | 0x000000, | ||
11812 | 0x000000, | ||
11813 | 0x000000, | ||
11814 | 0x000000, | ||
11815 | 0x000000, | ||
11816 | 0x000000, | ||
11817 | 0x000000, | ||
11818 | 0x000000, | ||
11819 | 0x000000, | ||
11820 | 0x000000, | ||
11821 | 0x000000, | ||
11822 | 0x000000, | ||
11823 | 0x000000, | ||
11824 | 0x000000, | ||
11825 | 0x000000, | ||
11826 | 0x000000, | ||
11827 | 0x000000, | ||
11828 | 0x000000, | ||
11829 | 0x000000, | ||
11830 | 0x000000, | ||
11831 | 0x000000, | ||
11832 | 0x000000, | ||
11833 | 0x000000, | ||
11834 | 0x000000, | ||
11835 | 0x000000, | ||
11836 | 0x000000, | ||
11837 | 0x000000, | ||
11838 | 0x000000, | ||
11839 | 0x000000, | ||
11840 | 0x000000, | ||
11841 | 0x010171, | ||
11842 | 0x020178, | ||
11843 | 0x03008f, | ||
11844 | 0x04007f, | ||
11845 | 0x050003, | ||
11846 | 0x06003f, | ||
11847 | 0x070032, | ||
11848 | 0x08012c, | ||
11849 | 0x090046, | ||
11850 | 0x0a0036, | ||
11851 | 0x1001b6, | ||
11852 | 0x1700a2, | ||
11853 | 0x22013a, | ||
11854 | 0x230149, | ||
11855 | 0x2000b4, | ||
11856 | 0x240125, | ||
11857 | 0x27004d, | ||
11858 | 0x28006a, | ||
11859 | 0x2a0060, | ||
11860 | 0x2b0052, | ||
11861 | 0x2f0065, | ||
11862 | 0x320087, | ||
11863 | 0x34017f, | ||
11864 | 0x3c0156, | ||
11865 | 0x3f0072, | ||
11866 | 0x41018c, | ||
11867 | 0x44012e, | ||
11868 | 0x550173, | ||
11869 | 0x56017a, | ||
11870 | 0x60000b, | ||
11871 | 0x610034, | ||
11872 | 0x620038, | ||
11873 | 0x630038, | ||
11874 | 0x640038, | ||
11875 | 0x650038, | ||
11876 | 0x660038, | ||
11877 | 0x670038, | ||
11878 | 0x68003a, | ||
11879 | 0x690041, | ||
11880 | 0x6a0048, | ||
11881 | 0x6b0048, | ||
11882 | 0x6c0048, | ||
11883 | 0x6d0048, | ||
11884 | 0x6e0048, | ||
11885 | 0x6f0048, | ||
11886 | 0x000006, | ||
11887 | 0x000006, | ||
11888 | 0x000006, | ||
11889 | 0x000006, | ||
11890 | 0x000006, | ||
11891 | 0x000006, | ||
11892 | 0x000006, | ||
11893 | 0x000006, | ||
11894 | 0x000006, | ||
11895 | 0x000006, | ||
11896 | 0x000006, | ||
11897 | 0x000006, | ||
11898 | 0x000006, | ||
11899 | 0x000006, | ||
11900 | 0x000006, | ||
11901 | 0x000006, | ||
11902 | 0x000006, | ||
11903 | 0x000006, | ||
11904 | 0x000006, | ||
11905 | }; | ||
11906 | |||
11907 | static const u32 RV670_cp_microcode[][3] = { | ||
11908 | { 0x00000000, 0xc0200400, 0x000 }, | ||
11909 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
11910 | { 0x0000ffff, 0x00284621, 0x000 }, | ||
11911 | { 0x00000000, 0xd9004800, 0x000 }, | ||
11912 | { 0x00000000, 0xc0200400, 0x000 }, | ||
11913 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
11914 | { 0x00000000, 0x00e00000, 0x000 }, | ||
11915 | { 0x00010000, 0xc0294620, 0x000 }, | ||
11916 | { 0x00000000, 0xd9004800, 0x000 }, | ||
11917 | { 0x00000000, 0xc0200400, 0x000 }, | ||
11918 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
11919 | { 0x81000000, 0x00204411, 0x000 }, | ||
11920 | { 0x00000001, 0x00204811, 0x000 }, | ||
11921 | { 0x00042004, 0x00604411, 0x67c }, | ||
11922 | { 0x00000000, 0x00600000, 0x624 }, | ||
11923 | { 0x00000000, 0x00600000, 0x638 }, | ||
11924 | { 0x00000000, 0xc0200800, 0x000 }, | ||
11925 | { 0x00000f00, 0x00281622, 0x000 }, | ||
11926 | { 0x00000008, 0x00211625, 0x000 }, | ||
11927 | { 0x00000018, 0x00203625, 0x000 }, | ||
11928 | { 0x8d000000, 0x00204411, 0x000 }, | ||
11929 | { 0x00000004, 0x002f0225, 0x000 }, | ||
11930 | { 0x00000000, 0x0ce00000, 0x018 }, | ||
11931 | { 0x00412000, 0x00404811, 0x019 }, | ||
11932 | { 0x00422000, 0x00204811, 0x000 }, | ||
11933 | { 0x8e000000, 0x00204411, 0x000 }, | ||
11934 | { 0x00000028, 0x00204a2d, 0x000 }, | ||
11935 | { 0x90000000, 0x00204411, 0x000 }, | ||
11936 | { 0x00000000, 0x00204805, 0x000 }, | ||
11937 | { 0x0000000c, 0x00211622, 0x000 }, | ||
11938 | { 0x00000003, 0x00281625, 0x000 }, | ||
11939 | { 0x00000019, 0x00211a22, 0x000 }, | ||
11940 | { 0x00000004, 0x00281a26, 0x000 }, | ||
11941 | { 0x00000000, 0x002914c5, 0x000 }, | ||
11942 | { 0x00000019, 0x00203625, 0x000 }, | ||
11943 | { 0x00000000, 0x003a1402, 0x000 }, | ||
11944 | { 0x00000016, 0x00211625, 0x000 }, | ||
11945 | { 0x00000003, 0x00281625, 0x000 }, | ||
11946 | { 0x00000017, 0x00200e2d, 0x000 }, | ||
11947 | { 0xfffffffc, 0x00280e23, 0x000 }, | ||
11948 | { 0x00000000, 0x002914a3, 0x000 }, | ||
11949 | { 0x00000017, 0x00203625, 0x000 }, | ||
11950 | { 0x00008000, 0x00280e22, 0x000 }, | ||
11951 | { 0x00000007, 0x00220e23, 0x000 }, | ||
11952 | { 0x00000000, 0x0029386e, 0x000 }, | ||
11953 | { 0x20000000, 0x00280e22, 0x000 }, | ||
11954 | { 0x00000006, 0x00210e23, 0x000 }, | ||
11955 | { 0x00000000, 0x0029386e, 0x000 }, | ||
11956 | { 0x00000000, 0x00220222, 0x000 }, | ||
11957 | { 0x00000000, 0x14e00000, 0x038 }, | ||
11958 | { 0x00000000, 0x2ee00000, 0x035 }, | ||
11959 | { 0x00000000, 0x2ce00000, 0x037 }, | ||
11960 | { 0x00000000, 0x00400e2d, 0x039 }, | ||
11961 | { 0x00000008, 0x00200e2d, 0x000 }, | ||
11962 | { 0x00000009, 0x0040122d, 0x046 }, | ||
11963 | { 0x00000001, 0x00400e2d, 0x039 }, | ||
11964 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
11965 | { 0x003ffffc, 0x00281223, 0x000 }, | ||
11966 | { 0x00000002, 0x00221224, 0x000 }, | ||
11967 | { 0x0000001f, 0x00211e23, 0x000 }, | ||
11968 | { 0x00000000, 0x14e00000, 0x03e }, | ||
11969 | { 0x00000008, 0x00401c11, 0x041 }, | ||
11970 | { 0x0000000d, 0x00201e2d, 0x000 }, | ||
11971 | { 0x0000000f, 0x00281e27, 0x000 }, | ||
11972 | { 0x00000003, 0x00221e27, 0x000 }, | ||
11973 | { 0x7fc00000, 0x00281a23, 0x000 }, | ||
11974 | { 0x00000014, 0x00211a26, 0x000 }, | ||
11975 | { 0x00000001, 0x00331a26, 0x000 }, | ||
11976 | { 0x00000008, 0x00221a26, 0x000 }, | ||
11977 | { 0x00000000, 0x00290cc7, 0x000 }, | ||
11978 | { 0x00000027, 0x00203624, 0x000 }, | ||
11979 | { 0x00007f00, 0x00281221, 0x000 }, | ||
11980 | { 0x00001400, 0x002f0224, 0x000 }, | ||
11981 | { 0x00000000, 0x0ce00000, 0x04b }, | ||
11982 | { 0x00000001, 0x00290e23, 0x000 }, | ||
11983 | { 0x0000000e, 0x00203623, 0x000 }, | ||
11984 | { 0x0000e000, 0x00204411, 0x000 }, | ||
11985 | { 0xfff80000, 0x00294a23, 0x000 }, | ||
11986 | { 0x00000000, 0x003a2c02, 0x000 }, | ||
11987 | { 0x00000002, 0x00220e2b, 0x000 }, | ||
11988 | { 0xfc000000, 0x00280e23, 0x000 }, | ||
11989 | { 0x0000000f, 0x00203623, 0x000 }, | ||
11990 | { 0x00001fff, 0x00294a23, 0x000 }, | ||
11991 | { 0x00000027, 0x00204a2d, 0x000 }, | ||
11992 | { 0x00000000, 0x00204811, 0x000 }, | ||
11993 | { 0x00000029, 0x00200e2d, 0x000 }, | ||
11994 | { 0x060a0200, 0x00294a23, 0x000 }, | ||
11995 | { 0x00000000, 0x00204811, 0x000 }, | ||
11996 | { 0x00000000, 0x00204811, 0x000 }, | ||
11997 | { 0x00000001, 0x00210222, 0x000 }, | ||
11998 | { 0x00000000, 0x14e00000, 0x061 }, | ||
11999 | { 0x00000000, 0x2ee00000, 0x05f }, | ||
12000 | { 0x00000000, 0x2ce00000, 0x05e }, | ||
12001 | { 0x00000000, 0x00400e2d, 0x062 }, | ||
12002 | { 0x00000001, 0x00400e2d, 0x062 }, | ||
12003 | { 0x0000000a, 0x00200e2d, 0x000 }, | ||
12004 | { 0x0000000b, 0x0040122d, 0x06a }, | ||
12005 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
12006 | { 0x003ffffc, 0x00281223, 0x000 }, | ||
12007 | { 0x00000002, 0x00221224, 0x000 }, | ||
12008 | { 0x7fc00000, 0x00281623, 0x000 }, | ||
12009 | { 0x00000014, 0x00211625, 0x000 }, | ||
12010 | { 0x00000001, 0x00331625, 0x000 }, | ||
12011 | { 0x80000000, 0x00280e23, 0x000 }, | ||
12012 | { 0x00000000, 0x00290ca3, 0x000 }, | ||
12013 | { 0x3ffffc00, 0x00290e23, 0x000 }, | ||
12014 | { 0x0000001f, 0x00211e23, 0x000 }, | ||
12015 | { 0x00000000, 0x14e00000, 0x06d }, | ||
12016 | { 0x00000100, 0x00401c11, 0x070 }, | ||
12017 | { 0x0000000d, 0x00201e2d, 0x000 }, | ||
12018 | { 0x000000f0, 0x00281e27, 0x000 }, | ||
12019 | { 0x00000004, 0x00221e27, 0x000 }, | ||
12020 | { 0x81000000, 0x00204411, 0x000 }, | ||
12021 | { 0x0000000d, 0x00204811, 0x000 }, | ||
12022 | { 0xfffff0ff, 0x00281a30, 0x000 }, | ||
12023 | { 0x0000a028, 0x00204411, 0x000 }, | ||
12024 | { 0x00000000, 0x002948e6, 0x000 }, | ||
12025 | { 0x0000a018, 0x00204411, 0x000 }, | ||
12026 | { 0x3fffffff, 0x00284a23, 0x000 }, | ||
12027 | { 0x0000a010, 0x00204411, 0x000 }, | ||
12028 | { 0x00000000, 0x00204804, 0x000 }, | ||
12029 | { 0x00000030, 0x0020162d, 0x000 }, | ||
12030 | { 0x00000002, 0x00291625, 0x000 }, | ||
12031 | { 0x00000030, 0x00203625, 0x000 }, | ||
12032 | { 0x00000025, 0x0020162d, 0x000 }, | ||
12033 | { 0x00000000, 0x002f00a3, 0x000 }, | ||
12034 | { 0x00000000, 0x0cc00000, 0x083 }, | ||
12035 | { 0x00000026, 0x0020162d, 0x000 }, | ||
12036 | { 0x00000000, 0x002f00a4, 0x000 }, | ||
12037 | { 0x00000000, 0x0cc00000, 0x084 }, | ||
12038 | { 0x00000000, 0x00400000, 0x08a }, | ||
12039 | { 0x00000025, 0x00203623, 0x000 }, | ||
12040 | { 0x00000026, 0x00203624, 0x000 }, | ||
12041 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
12042 | { 0x00000002, 0x00210227, 0x000 }, | ||
12043 | { 0x00000000, 0x14e00000, 0x08a }, | ||
12044 | { 0x00000000, 0x00600000, 0x659 }, | ||
12045 | { 0x00000000, 0x00600000, 0x64d }, | ||
12046 | { 0x00000002, 0x00210e22, 0x000 }, | ||
12047 | { 0x00000000, 0x14c00000, 0x08d }, | ||
12048 | { 0x00000012, 0xc0403620, 0x093 }, | ||
12049 | { 0x00000000, 0x2ee00000, 0x091 }, | ||
12050 | { 0x00000000, 0x2ce00000, 0x090 }, | ||
12051 | { 0x00000002, 0x00400e2d, 0x092 }, | ||
12052 | { 0x00000003, 0x00400e2d, 0x092 }, | ||
12053 | { 0x0000000c, 0x00200e2d, 0x000 }, | ||
12054 | { 0x00000012, 0x00203623, 0x000 }, | ||
12055 | { 0x00000003, 0x00210e22, 0x000 }, | ||
12056 | { 0x00000000, 0x14c00000, 0x098 }, | ||
12057 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
12058 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12059 | { 0x00000000, 0xc0404800, 0x0a0 }, | ||
12060 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
12061 | { 0x00000000, 0x00204811, 0x000 }, | ||
12062 | { 0x00000000, 0x2ee00000, 0x09e }, | ||
12063 | { 0x00000000, 0x2ce00000, 0x09d }, | ||
12064 | { 0x00000002, 0x00400e2d, 0x09f }, | ||
12065 | { 0x00000003, 0x00400e2d, 0x09f }, | ||
12066 | { 0x0000000c, 0x00200e2d, 0x000 }, | ||
12067 | { 0x00000000, 0x00204803, 0x000 }, | ||
12068 | { 0x00000000, 0x003a0c02, 0x000 }, | ||
12069 | { 0x003f0000, 0x00280e23, 0x000 }, | ||
12070 | { 0x00000010, 0x00210e23, 0x000 }, | ||
12071 | { 0x00000011, 0x00203623, 0x000 }, | ||
12072 | { 0x0000001e, 0x0021022b, 0x000 }, | ||
12073 | { 0x00000000, 0x14c00000, 0x0a7 }, | ||
12074 | { 0x00000016, 0xc0203620, 0x000 }, | ||
12075 | { 0x0000001f, 0x0021022b, 0x000 }, | ||
12076 | { 0x00000000, 0x14c00000, 0x0aa }, | ||
12077 | { 0x00000015, 0xc0203620, 0x000 }, | ||
12078 | { 0x00000008, 0x00210e2b, 0x000 }, | ||
12079 | { 0x0000007f, 0x00280e23, 0x000 }, | ||
12080 | { 0x00000000, 0x002f0223, 0x000 }, | ||
12081 | { 0x00000000, 0x0ce00000, 0x0e1 }, | ||
12082 | { 0x00000000, 0x27000000, 0x000 }, | ||
12083 | { 0x00000000, 0x00600000, 0x2a3 }, | ||
12084 | { 0x00000001, 0x002f0223, 0x000 }, | ||
12085 | { 0x00000000, 0x0ae00000, 0x0b3 }, | ||
12086 | { 0x00000000, 0x00600000, 0x13a }, | ||
12087 | { 0x81000000, 0x00204411, 0x000 }, | ||
12088 | { 0x00000006, 0x00204811, 0x000 }, | ||
12089 | { 0x0000000c, 0x00221e30, 0x000 }, | ||
12090 | { 0x99800000, 0x00204411, 0x000 }, | ||
12091 | { 0x00000004, 0x0020122d, 0x000 }, | ||
12092 | { 0x00000008, 0x00221224, 0x000 }, | ||
12093 | { 0x00000010, 0x00201811, 0x000 }, | ||
12094 | { 0x00000000, 0x00291ce4, 0x000 }, | ||
12095 | { 0x00000000, 0x00604807, 0x12f }, | ||
12096 | { 0x9b000000, 0x00204411, 0x000 }, | ||
12097 | { 0x00000000, 0x00204802, 0x000 }, | ||
12098 | { 0x9c000000, 0x00204411, 0x000 }, | ||
12099 | { 0x00000000, 0x0033146f, 0x000 }, | ||
12100 | { 0x00000001, 0x00333e23, 0x000 }, | ||
12101 | { 0x00000000, 0xd9004800, 0x000 }, | ||
12102 | { 0x00000000, 0x00203c05, 0x000 }, | ||
12103 | { 0x81000000, 0x00204411, 0x000 }, | ||
12104 | { 0x0000000e, 0x00204811, 0x000 }, | ||
12105 | { 0x00000000, 0x00201010, 0x000 }, | ||
12106 | { 0x0000e007, 0x00204411, 0x000 }, | ||
12107 | { 0x0000000f, 0x0021022b, 0x000 }, | ||
12108 | { 0x00000000, 0x14c00000, 0x0cb }, | ||
12109 | { 0x00f8ff08, 0x00204811, 0x000 }, | ||
12110 | { 0x98000000, 0x00404811, 0x0dc }, | ||
12111 | { 0x000000f0, 0x00280e22, 0x000 }, | ||
12112 | { 0x000000a0, 0x002f0223, 0x000 }, | ||
12113 | { 0x00000000, 0x0cc00000, 0x0da }, | ||
12114 | { 0x00000011, 0x00200e2d, 0x000 }, | ||
12115 | { 0x00000001, 0x002f0223, 0x000 }, | ||
12116 | { 0x00000000, 0x0ce00000, 0x0d5 }, | ||
12117 | { 0x00000002, 0x002f0223, 0x000 }, | ||
12118 | { 0x00000000, 0x0ce00000, 0x0d4 }, | ||
12119 | { 0x00003f00, 0x00400c11, 0x0d6 }, | ||
12120 | { 0x00001f00, 0x00400c11, 0x0d6 }, | ||
12121 | { 0x00000f00, 0x00200c11, 0x000 }, | ||
12122 | { 0x00380009, 0x00294a23, 0x000 }, | ||
12123 | { 0x3f000000, 0x00280e2b, 0x000 }, | ||
12124 | { 0x00000002, 0x00220e23, 0x000 }, | ||
12125 | { 0x00000007, 0x00494a23, 0x0dc }, | ||
12126 | { 0x00380f09, 0x00204811, 0x000 }, | ||
12127 | { 0x68000007, 0x00204811, 0x000 }, | ||
12128 | { 0x00000008, 0x00214a27, 0x000 }, | ||
12129 | { 0x00000000, 0x00204811, 0x000 }, | ||
12130 | { 0x060a0200, 0x00294a24, 0x000 }, | ||
12131 | { 0x00000000, 0x00204811, 0x000 }, | ||
12132 | { 0x00000000, 0x00204811, 0x000 }, | ||
12133 | { 0x0000a202, 0x00204411, 0x000 }, | ||
12134 | { 0x00ff0000, 0x00280e22, 0x000 }, | ||
12135 | { 0x00000080, 0x00294a23, 0x000 }, | ||
12136 | { 0x00000027, 0x00200e2d, 0x000 }, | ||
12137 | { 0x00000026, 0x0020122d, 0x000 }, | ||
12138 | { 0x00000000, 0x002f0083, 0x000 }, | ||
12139 | { 0x00000000, 0x0ce00000, 0x0ea }, | ||
12140 | { 0x00000000, 0x00600000, 0x653 }, | ||
12141 | { 0x00000000, 0x00400000, 0x0eb }, | ||
12142 | { 0x00000000, 0x00600000, 0x656 }, | ||
12143 | { 0x00000007, 0x0020222d, 0x000 }, | ||
12144 | { 0x00000005, 0x00220e22, 0x000 }, | ||
12145 | { 0x00100000, 0x00280e23, 0x000 }, | ||
12146 | { 0x00000000, 0x00292068, 0x000 }, | ||
12147 | { 0x00000000, 0x003a0c02, 0x000 }, | ||
12148 | { 0x000000ef, 0x00280e23, 0x000 }, | ||
12149 | { 0x00000000, 0x00292068, 0x000 }, | ||
12150 | { 0x00000017, 0x00200e2d, 0x000 }, | ||
12151 | { 0x00000003, 0x00210223, 0x000 }, | ||
12152 | { 0x00000000, 0x14e00000, 0x0f8 }, | ||
12153 | { 0x0000000b, 0x00210228, 0x000 }, | ||
12154 | { 0x00000000, 0x14c00000, 0x0f8 }, | ||
12155 | { 0x00000400, 0x00292228, 0x000 }, | ||
12156 | { 0x00000014, 0x00203628, 0x000 }, | ||
12157 | { 0x0000001c, 0x00210e22, 0x000 }, | ||
12158 | { 0x00000000, 0x14c00000, 0x0fd }, | ||
12159 | { 0x0000a30c, 0x00204411, 0x000 }, | ||
12160 | { 0x00000000, 0x00204811, 0x000 }, | ||
12161 | { 0x0000001e, 0x00210e22, 0x000 }, | ||
12162 | { 0x00000000, 0x14c00000, 0x10b }, | ||
12163 | { 0x0000a30f, 0x00204411, 0x000 }, | ||
12164 | { 0x00000011, 0x00200e2d, 0x000 }, | ||
12165 | { 0x00000001, 0x002f0223, 0x000 }, | ||
12166 | { 0x00000000, 0x0cc00000, 0x104 }, | ||
12167 | { 0xffffffff, 0x00404811, 0x10b }, | ||
12168 | { 0x00000002, 0x002f0223, 0x000 }, | ||
12169 | { 0x00000000, 0x0cc00000, 0x107 }, | ||
12170 | { 0x0000ffff, 0x00404811, 0x10b }, | ||
12171 | { 0x00000004, 0x002f0223, 0x000 }, | ||
12172 | { 0x00000000, 0x0cc00000, 0x10a }, | ||
12173 | { 0x000000ff, 0x00404811, 0x10b }, | ||
12174 | { 0x00000001, 0x00204811, 0x000 }, | ||
12175 | { 0x0002c400, 0x00204411, 0x000 }, | ||
12176 | { 0x0000001f, 0x00210e22, 0x000 }, | ||
12177 | { 0x00000000, 0x14c00000, 0x112 }, | ||
12178 | { 0x00000010, 0x40210e20, 0x000 }, | ||
12179 | { 0x00000013, 0x00203623, 0x000 }, | ||
12180 | { 0x00000018, 0x40224a20, 0x000 }, | ||
12181 | { 0x00000010, 0xc0424a20, 0x114 }, | ||
12182 | { 0x00000000, 0x00200c11, 0x000 }, | ||
12183 | { 0x00000013, 0x00203623, 0x000 }, | ||
12184 | { 0x00000000, 0x00204811, 0x000 }, | ||
12185 | { 0x00000000, 0x00204811, 0x000 }, | ||
12186 | { 0x0000000a, 0x00201011, 0x000 }, | ||
12187 | { 0x00000000, 0x002f0224, 0x000 }, | ||
12188 | { 0x00000000, 0x0ce00000, 0x11b }, | ||
12189 | { 0x00000000, 0x00204811, 0x000 }, | ||
12190 | { 0x00000001, 0x00531224, 0x117 }, | ||
12191 | { 0xffbfffff, 0x00283a2e, 0x000 }, | ||
12192 | { 0x0000001b, 0x00210222, 0x000 }, | ||
12193 | { 0x00000000, 0x14c00000, 0x12e }, | ||
12194 | { 0x81000000, 0x00204411, 0x000 }, | ||
12195 | { 0x0000000d, 0x00204811, 0x000 }, | ||
12196 | { 0x00000018, 0x00220e30, 0x000 }, | ||
12197 | { 0xfc000000, 0x00280e23, 0x000 }, | ||
12198 | { 0x81000000, 0x00204411, 0x000 }, | ||
12199 | { 0x0000000e, 0x00204811, 0x000 }, | ||
12200 | { 0x00000000, 0x00201010, 0x000 }, | ||
12201 | { 0x0000e00e, 0x00204411, 0x000 }, | ||
12202 | { 0x07f8ff08, 0x00204811, 0x000 }, | ||
12203 | { 0x00000000, 0x00294a23, 0x000 }, | ||
12204 | { 0x0000001c, 0x00201e2d, 0x000 }, | ||
12205 | { 0x00000008, 0x00214a27, 0x000 }, | ||
12206 | { 0x00000000, 0x00204811, 0x000 }, | ||
12207 | { 0x060a0200, 0x00294a24, 0x000 }, | ||
12208 | { 0x00000000, 0x00204811, 0x000 }, | ||
12209 | { 0x00000000, 0x00204811, 0x000 }, | ||
12210 | { 0x00000000, 0x00800000, 0x000 }, | ||
12211 | { 0x81000000, 0x00204411, 0x000 }, | ||
12212 | { 0x00000001, 0x00204811, 0x000 }, | ||
12213 | { 0x0000217c, 0x00204411, 0x000 }, | ||
12214 | { 0x00800000, 0x00204811, 0x000 }, | ||
12215 | { 0x00000000, 0x00204806, 0x000 }, | ||
12216 | { 0x00000008, 0x00214a27, 0x000 }, | ||
12217 | { 0x00000000, 0x17000000, 0x000 }, | ||
12218 | { 0x0004217f, 0x00604411, 0x67c }, | ||
12219 | { 0x0000001f, 0x00210230, 0x000 }, | ||
12220 | { 0x00000000, 0x14c00000, 0x67b }, | ||
12221 | { 0x00000004, 0x00404c11, 0x135 }, | ||
12222 | { 0x81000000, 0x00204411, 0x000 }, | ||
12223 | { 0x00000001, 0x00204811, 0x000 }, | ||
12224 | { 0x000021f8, 0x00204411, 0x000 }, | ||
12225 | { 0x0000001c, 0x00204811, 0x000 }, | ||
12226 | { 0x000421f9, 0x00604411, 0x67c }, | ||
12227 | { 0x00000011, 0x00210230, 0x000 }, | ||
12228 | { 0x00000000, 0x14e00000, 0x13c }, | ||
12229 | { 0x00000000, 0x00800000, 0x000 }, | ||
12230 | { 0x00000000, 0x00600000, 0x00b }, | ||
12231 | { 0x00000000, 0x00600411, 0x315 }, | ||
12232 | { 0x00000000, 0x00200411, 0x000 }, | ||
12233 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
12234 | { 0x00000000, 0x00600000, 0x160 }, | ||
12235 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
12236 | { 0x00000010, 0xc0211220, 0x000 }, | ||
12237 | { 0x0000ffff, 0x40280620, 0x000 }, | ||
12238 | { 0x00000010, 0xc0210a20, 0x000 }, | ||
12239 | { 0x00000000, 0x00341461, 0x000 }, | ||
12240 | { 0x00000000, 0x00741882, 0x2bb }, | ||
12241 | { 0x0001a1fd, 0x00604411, 0x2e0 }, | ||
12242 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
12243 | { 0x00000000, 0x0cc00000, 0x147 }, | ||
12244 | { 0x00000000, 0xc0400400, 0x001 }, | ||
12245 | { 0x00000000, 0x00600000, 0x00b }, | ||
12246 | { 0x00000000, 0x00600411, 0x315 }, | ||
12247 | { 0x00000000, 0x00200411, 0x000 }, | ||
12248 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
12249 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
12250 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
12251 | { 0x00000000, 0x00600000, 0x160 }, | ||
12252 | { 0x00000010, 0x40210e20, 0x000 }, | ||
12253 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
12254 | { 0x00000010, 0x40211620, 0x000 }, | ||
12255 | { 0x0000ffff, 0xc0681a20, 0x2bb }, | ||
12256 | { 0x0001a1fd, 0x00604411, 0x2e0 }, | ||
12257 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
12258 | { 0x00000000, 0x0cc00000, 0x158 }, | ||
12259 | { 0x00000000, 0xc0400400, 0x001 }, | ||
12260 | { 0x0000225c, 0x00204411, 0x000 }, | ||
12261 | { 0x00000001, 0x00300a2f, 0x000 }, | ||
12262 | { 0x00000001, 0x00210a22, 0x000 }, | ||
12263 | { 0x00000003, 0x00384a22, 0x000 }, | ||
12264 | { 0x00002256, 0x00204411, 0x000 }, | ||
12265 | { 0x0000001a, 0x00204811, 0x000 }, | ||
12266 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
12267 | { 0x00000001, 0x00804811, 0x000 }, | ||
12268 | { 0x00000000, 0x00600000, 0x00b }, | ||
12269 | { 0x00000000, 0x00600000, 0x18f }, | ||
12270 | { 0x00000000, 0x00600000, 0x1a0 }, | ||
12271 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
12272 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
12273 | { 0x00000000, 0x00202c08, 0x000 }, | ||
12274 | { 0x00000000, 0x00202411, 0x000 }, | ||
12275 | { 0x00000000, 0x00202811, 0x000 }, | ||
12276 | { 0x00002256, 0x00204411, 0x000 }, | ||
12277 | { 0x00000016, 0x00204811, 0x000 }, | ||
12278 | { 0x0000225c, 0x00204411, 0x000 }, | ||
12279 | { 0x00000003, 0x00204811, 0x000 }, | ||
12280 | { 0x93800000, 0x00204411, 0x000 }, | ||
12281 | { 0x00000002, 0x00221e29, 0x000 }, | ||
12282 | { 0x00000000, 0x007048eb, 0x19c }, | ||
12283 | { 0x00000000, 0x00600000, 0x2bb }, | ||
12284 | { 0x00000001, 0x40330620, 0x000 }, | ||
12285 | { 0x00000000, 0xc0302409, 0x000 }, | ||
12286 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
12287 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
12288 | { 0x00000000, 0x00600000, 0x2a3 }, | ||
12289 | { 0x00000000, 0x002f0221, 0x000 }, | ||
12290 | { 0x00000000, 0x0ae00000, 0x181 }, | ||
12291 | { 0x00000000, 0x00600000, 0x13a }, | ||
12292 | { 0x00000000, 0x00400000, 0x186 }, | ||
12293 | { 0x95000000, 0x00204411, 0x000 }, | ||
12294 | { 0x00000000, 0x002f0221, 0x000 }, | ||
12295 | { 0x00000000, 0x0ce00000, 0x186 }, | ||
12296 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12297 | { 0x00000001, 0x00530621, 0x182 }, | ||
12298 | { 0x92000000, 0x00204411, 0x000 }, | ||
12299 | { 0x00000000, 0xc0604800, 0x197 }, | ||
12300 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
12301 | { 0x00000011, 0x0020062d, 0x000 }, | ||
12302 | { 0x00000000, 0x0078042a, 0x2fb }, | ||
12303 | { 0x00000000, 0x00202809, 0x000 }, | ||
12304 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
12305 | { 0x00000000, 0x0cc00000, 0x174 }, | ||
12306 | { 0x00000000, 0xc0400400, 0x001 }, | ||
12307 | { 0x00000210, 0x00600411, 0x315 }, | ||
12308 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
12309 | { 0x00000000, 0x0ce00000, 0x194 }, | ||
12310 | { 0x00000015, 0xc0203620, 0x000 }, | ||
12311 | { 0x00000016, 0xc0203620, 0x000 }, | ||
12312 | { 0x3f800000, 0x00200411, 0x000 }, | ||
12313 | { 0x46000000, 0x00600811, 0x1b2 }, | ||
12314 | { 0x00000000, 0x00800000, 0x000 }, | ||
12315 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
12316 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
12317 | { 0x00000000, 0x0cc00000, 0x19b }, | ||
12318 | { 0x00000001, 0x00804811, 0x000 }, | ||
12319 | { 0x00000021, 0x00804811, 0x000 }, | ||
12320 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
12321 | { 0x00000010, 0xc0211220, 0x000 }, | ||
12322 | { 0x0000ffff, 0x40281620, 0x000 }, | ||
12323 | { 0x00000010, 0xc0811a20, 0x000 }, | ||
12324 | { 0x81000000, 0x00204411, 0x000 }, | ||
12325 | { 0x00000006, 0x00204811, 0x000 }, | ||
12326 | { 0x00000008, 0x00221e30, 0x000 }, | ||
12327 | { 0x00000029, 0x00201a2d, 0x000 }, | ||
12328 | { 0x0000e000, 0x00204411, 0x000 }, | ||
12329 | { 0xfffbff09, 0x00204811, 0x000 }, | ||
12330 | { 0x0000000f, 0x0020222d, 0x000 }, | ||
12331 | { 0x00001fff, 0x00294a28, 0x000 }, | ||
12332 | { 0x00000006, 0x0020222d, 0x000 }, | ||
12333 | { 0x00000000, 0x002920e8, 0x000 }, | ||
12334 | { 0x00000000, 0x00204808, 0x000 }, | ||
12335 | { 0x00000000, 0x00204811, 0x000 }, | ||
12336 | { 0x060a0200, 0x00294a26, 0x000 }, | ||
12337 | { 0x00000000, 0x00204811, 0x000 }, | ||
12338 | { 0x00000000, 0x00204811, 0x000 }, | ||
12339 | { 0x00000100, 0x00201811, 0x000 }, | ||
12340 | { 0x00000008, 0x00621e28, 0x12f }, | ||
12341 | { 0x00000008, 0x00822228, 0x000 }, | ||
12342 | { 0x0002c000, 0x00204411, 0x000 }, | ||
12343 | { 0x00000015, 0x00600e2d, 0x1bd }, | ||
12344 | { 0x00000016, 0x00600e2d, 0x1bd }, | ||
12345 | { 0x0000c008, 0x00204411, 0x000 }, | ||
12346 | { 0x00000017, 0x00200e2d, 0x000 }, | ||
12347 | { 0x00000000, 0x14c00000, 0x1b9 }, | ||
12348 | { 0x00000000, 0x00200411, 0x000 }, | ||
12349 | { 0x00000000, 0x00204801, 0x000 }, | ||
12350 | { 0x39000000, 0x00204811, 0x000 }, | ||
12351 | { 0x00000000, 0x00204811, 0x000 }, | ||
12352 | { 0x00000000, 0x00804802, 0x000 }, | ||
12353 | { 0x00000018, 0x00202e2d, 0x000 }, | ||
12354 | { 0x00000000, 0x003b0d63, 0x000 }, | ||
12355 | { 0x00000008, 0x00224a23, 0x000 }, | ||
12356 | { 0x00000010, 0x00224a23, 0x000 }, | ||
12357 | { 0x00000018, 0x00224a23, 0x000 }, | ||
12358 | { 0x00000000, 0x00804803, 0x000 }, | ||
12359 | { 0x00000000, 0x00600000, 0x00b }, | ||
12360 | { 0x00001000, 0x00600411, 0x315 }, | ||
12361 | { 0x00000000, 0x00200411, 0x000 }, | ||
12362 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
12363 | { 0x00000007, 0x0021062f, 0x000 }, | ||
12364 | { 0x00000013, 0x00200a2d, 0x000 }, | ||
12365 | { 0x00000001, 0x00202c11, 0x000 }, | ||
12366 | { 0x0000ffff, 0x40282220, 0x000 }, | ||
12367 | { 0x0000000f, 0x00262228, 0x000 }, | ||
12368 | { 0x00000010, 0x40212620, 0x000 }, | ||
12369 | { 0x0000000f, 0x00262629, 0x000 }, | ||
12370 | { 0x00000000, 0x00202802, 0x000 }, | ||
12371 | { 0x00002256, 0x00204411, 0x000 }, | ||
12372 | { 0x0000001b, 0x00204811, 0x000 }, | ||
12373 | { 0x00000000, 0x002f0221, 0x000 }, | ||
12374 | { 0x00000000, 0x0ce00000, 0x1e0 }, | ||
12375 | { 0x0000225c, 0x00204411, 0x000 }, | ||
12376 | { 0x00000081, 0x00204811, 0x000 }, | ||
12377 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
12378 | { 0x00000001, 0x00204811, 0x000 }, | ||
12379 | { 0x00000080, 0x00201c11, 0x000 }, | ||
12380 | { 0x00000000, 0x002f0227, 0x000 }, | ||
12381 | { 0x00000000, 0x0ce00000, 0x1dc }, | ||
12382 | { 0x00000000, 0x00600000, 0x1e9 }, | ||
12383 | { 0x00000001, 0x00531e27, 0x1d8 }, | ||
12384 | { 0x00000001, 0x00202c11, 0x000 }, | ||
12385 | { 0x0000001f, 0x00280a22, 0x000 }, | ||
12386 | { 0x0000001f, 0x00282a2a, 0x000 }, | ||
12387 | { 0x00000001, 0x00530621, 0x1d1 }, | ||
12388 | { 0x0000225c, 0x00204411, 0x000 }, | ||
12389 | { 0x00000002, 0x00304a2f, 0x000 }, | ||
12390 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
12391 | { 0x00000001, 0x00204811, 0x000 }, | ||
12392 | { 0x00000001, 0x00301e2f, 0x000 }, | ||
12393 | { 0x00000000, 0x002f0227, 0x000 }, | ||
12394 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
12395 | { 0x00000000, 0x00600000, 0x1e9 }, | ||
12396 | { 0x00000001, 0x00531e27, 0x1e5 }, | ||
12397 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
12398 | { 0x0000000f, 0x00260e23, 0x000 }, | ||
12399 | { 0x00000010, 0xc0211220, 0x000 }, | ||
12400 | { 0x0000000f, 0x00261224, 0x000 }, | ||
12401 | { 0x00000000, 0x00201411, 0x000 }, | ||
12402 | { 0x00000000, 0x00601811, 0x2bb }, | ||
12403 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
12404 | { 0x00000000, 0x002f022b, 0x000 }, | ||
12405 | { 0x00000000, 0x0ce00000, 0x1f8 }, | ||
12406 | { 0x00000010, 0x00221628, 0x000 }, | ||
12407 | { 0xffff0000, 0x00281625, 0x000 }, | ||
12408 | { 0x0000ffff, 0x00281a29, 0x000 }, | ||
12409 | { 0x00000000, 0x002948c5, 0x000 }, | ||
12410 | { 0x00000000, 0x0020480a, 0x000 }, | ||
12411 | { 0x00000000, 0x00202c11, 0x000 }, | ||
12412 | { 0x00000010, 0x00221623, 0x000 }, | ||
12413 | { 0xffff0000, 0x00281625, 0x000 }, | ||
12414 | { 0x0000ffff, 0x00281a24, 0x000 }, | ||
12415 | { 0x00000000, 0x002948c5, 0x000 }, | ||
12416 | { 0x00000000, 0x00731503, 0x205 }, | ||
12417 | { 0x00000000, 0x00201805, 0x000 }, | ||
12418 | { 0x00000000, 0x00731524, 0x205 }, | ||
12419 | { 0x00000000, 0x002d14c5, 0x000 }, | ||
12420 | { 0x00000000, 0x003008a2, 0x000 }, | ||
12421 | { 0x00000000, 0x00204802, 0x000 }, | ||
12422 | { 0x00000000, 0x00202802, 0x000 }, | ||
12423 | { 0x00000000, 0x00202003, 0x000 }, | ||
12424 | { 0x00000000, 0x00802404, 0x000 }, | ||
12425 | { 0x0000000f, 0x00210225, 0x000 }, | ||
12426 | { 0x00000000, 0x14c00000, 0x67b }, | ||
12427 | { 0x00000000, 0x002b1405, 0x000 }, | ||
12428 | { 0x00000001, 0x00901625, 0x000 }, | ||
12429 | { 0x00000000, 0x00600000, 0x00b }, | ||
12430 | { 0x00000000, 0x00600411, 0x315 }, | ||
12431 | { 0x00000000, 0x00200411, 0x000 }, | ||
12432 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
12433 | { 0x00002256, 0x00204411, 0x000 }, | ||
12434 | { 0x0000001a, 0x00294a22, 0x000 }, | ||
12435 | { 0x00000000, 0xc0200000, 0x000 }, | ||
12436 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
12437 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
12438 | { 0x00000000, 0xc0200400, 0x000 }, | ||
12439 | { 0x0000225c, 0x00204411, 0x000 }, | ||
12440 | { 0x00000003, 0x00384a21, 0x000 }, | ||
12441 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
12442 | { 0x00000001, 0x00204811, 0x000 }, | ||
12443 | { 0x0000ffff, 0x40281220, 0x000 }, | ||
12444 | { 0x00000010, 0xc0211a20, 0x000 }, | ||
12445 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
12446 | { 0x00000010, 0xc0211620, 0x000 }, | ||
12447 | { 0x00000000, 0x00741465, 0x2bb }, | ||
12448 | { 0x0001a1fd, 0x00604411, 0x2e0 }, | ||
12449 | { 0x00000001, 0x00330621, 0x000 }, | ||
12450 | { 0x00000000, 0x002f0221, 0x000 }, | ||
12451 | { 0x00000000, 0x0cc00000, 0x219 }, | ||
12452 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
12453 | { 0x00000000, 0x0cc00000, 0x212 }, | ||
12454 | { 0x00000000, 0xc0400400, 0x001 }, | ||
12455 | { 0x00000000, 0x00600000, 0x638 }, | ||
12456 | { 0x00000000, 0x0040040f, 0x213 }, | ||
12457 | { 0x00000000, 0x00600000, 0x624 }, | ||
12458 | { 0x00000000, 0x00600000, 0x638 }, | ||
12459 | { 0x00000210, 0x00600411, 0x315 }, | ||
12460 | { 0x00000000, 0x00600000, 0x1a0 }, | ||
12461 | { 0x00000000, 0x00600000, 0x19c }, | ||
12462 | { 0x00000000, 0x00600000, 0x2bb }, | ||
12463 | { 0x00000000, 0x00600000, 0x2a3 }, | ||
12464 | { 0x93800000, 0x00204411, 0x000 }, | ||
12465 | { 0x00000000, 0x00204808, 0x000 }, | ||
12466 | { 0x00000000, 0x002f022f, 0x000 }, | ||
12467 | { 0x00000000, 0x0ae00000, 0x232 }, | ||
12468 | { 0x00000000, 0x00600000, 0x13a }, | ||
12469 | { 0x00000000, 0x00400000, 0x236 }, | ||
12470 | { 0x95000000, 0x00204411, 0x000 }, | ||
12471 | { 0x00000000, 0x002f022f, 0x000 }, | ||
12472 | { 0x00000000, 0x0ce00000, 0x236 }, | ||
12473 | { 0x00000000, 0xc0404800, 0x233 }, | ||
12474 | { 0x92000000, 0x00204411, 0x000 }, | ||
12475 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12476 | { 0x00002256, 0x00204411, 0x000 }, | ||
12477 | { 0x00000016, 0x00204811, 0x000 }, | ||
12478 | { 0x0000225c, 0x00204411, 0x000 }, | ||
12479 | { 0x00000003, 0x00204811, 0x000 }, | ||
12480 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
12481 | { 0x00000001, 0x00204811, 0x000 }, | ||
12482 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
12483 | { 0x00000000, 0x00600411, 0x2fb }, | ||
12484 | { 0x00000000, 0xc0400400, 0x001 }, | ||
12485 | { 0x00000000, 0x00600000, 0x624 }, | ||
12486 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
12487 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12488 | { 0x00000000, 0xc0404800, 0x000 }, | ||
12489 | { 0x00000000, 0x00600000, 0x00b }, | ||
12490 | { 0x00000018, 0x40210a20, 0x000 }, | ||
12491 | { 0x00000003, 0x002f0222, 0x000 }, | ||
12492 | { 0x00000000, 0x0ae00000, 0x24c }, | ||
12493 | { 0x00000014, 0x0020222d, 0x000 }, | ||
12494 | { 0x00080101, 0x00292228, 0x000 }, | ||
12495 | { 0x00000014, 0x00203628, 0x000 }, | ||
12496 | { 0x0000a30c, 0x00204411, 0x000 }, | ||
12497 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12498 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12499 | { 0x00000000, 0xc0404800, 0x251 }, | ||
12500 | { 0x00000000, 0x00600000, 0x00b }, | ||
12501 | { 0x00000010, 0x00600411, 0x315 }, | ||
12502 | { 0x3f800000, 0x00200411, 0x000 }, | ||
12503 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
12504 | { 0x0000225c, 0x00204411, 0x000 }, | ||
12505 | { 0x00000003, 0x00204811, 0x000 }, | ||
12506 | { 0x00000000, 0x00600000, 0x27c }, | ||
12507 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
12508 | { 0x00000001, 0x00211e27, 0x000 }, | ||
12509 | { 0x00000000, 0x14e00000, 0x26a }, | ||
12510 | { 0x00000012, 0x00201e2d, 0x000 }, | ||
12511 | { 0x0000ffff, 0x00281e27, 0x000 }, | ||
12512 | { 0x00000000, 0x00341c27, 0x000 }, | ||
12513 | { 0x00000000, 0x12c00000, 0x25f }, | ||
12514 | { 0x00000000, 0x00201c11, 0x000 }, | ||
12515 | { 0x00000000, 0x002f00e5, 0x000 }, | ||
12516 | { 0x00000000, 0x08c00000, 0x262 }, | ||
12517 | { 0x00000000, 0x00201407, 0x000 }, | ||
12518 | { 0x00000012, 0x00201e2d, 0x000 }, | ||
12519 | { 0x00000010, 0x00211e27, 0x000 }, | ||
12520 | { 0x00000000, 0x00341c47, 0x000 }, | ||
12521 | { 0x00000000, 0x12c00000, 0x267 }, | ||
12522 | { 0x00000000, 0x00201c11, 0x000 }, | ||
12523 | { 0x00000000, 0x002f00e6, 0x000 }, | ||
12524 | { 0x00000000, 0x08c00000, 0x26a }, | ||
12525 | { 0x00000000, 0x00201807, 0x000 }, | ||
12526 | { 0x00000000, 0x00600000, 0x2c1 }, | ||
12527 | { 0x00002256, 0x00204411, 0x000 }, | ||
12528 | { 0x00000000, 0x00342023, 0x000 }, | ||
12529 | { 0x00000000, 0x12c00000, 0x272 }, | ||
12530 | { 0x00000000, 0x00342044, 0x000 }, | ||
12531 | { 0x00000000, 0x12c00000, 0x271 }, | ||
12532 | { 0x00000016, 0x00404811, 0x276 }, | ||
12533 | { 0x00000018, 0x00404811, 0x276 }, | ||
12534 | { 0x00000000, 0x00342044, 0x000 }, | ||
12535 | { 0x00000000, 0x12c00000, 0x275 }, | ||
12536 | { 0x00000017, 0x00404811, 0x276 }, | ||
12537 | { 0x00000019, 0x00204811, 0x000 }, | ||
12538 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
12539 | { 0x00000001, 0x00204811, 0x000 }, | ||
12540 | { 0x0001a1fd, 0x00604411, 0x2e9 }, | ||
12541 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
12542 | { 0x00000000, 0x0cc00000, 0x256 }, | ||
12543 | { 0x00000000, 0xc0400400, 0x001 }, | ||
12544 | { 0x00000010, 0x40210620, 0x000 }, | ||
12545 | { 0x0000ffff, 0xc0280a20, 0x000 }, | ||
12546 | { 0x00000010, 0x40210e20, 0x000 }, | ||
12547 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
12548 | { 0x00000010, 0x40211620, 0x000 }, | ||
12549 | { 0x0000ffff, 0xc0881a20, 0x000 }, | ||
12550 | { 0x81000000, 0x00204411, 0x000 }, | ||
12551 | { 0x00000001, 0x00204811, 0x000 }, | ||
12552 | { 0x00042004, 0x00604411, 0x67c }, | ||
12553 | { 0x00000000, 0x00600000, 0x624 }, | ||
12554 | { 0x00000000, 0xc0600000, 0x2a3 }, | ||
12555 | { 0x00000005, 0x00200a2d, 0x000 }, | ||
12556 | { 0x00000008, 0x00220a22, 0x000 }, | ||
12557 | { 0x0000002b, 0x00201a2d, 0x000 }, | ||
12558 | { 0x0000001c, 0x00201e2d, 0x000 }, | ||
12559 | { 0x00007000, 0x00281e27, 0x000 }, | ||
12560 | { 0x00000000, 0x00311ce6, 0x000 }, | ||
12561 | { 0x0000002a, 0x00201a2d, 0x000 }, | ||
12562 | { 0x0000000c, 0x00221a26, 0x000 }, | ||
12563 | { 0x00000000, 0x002f00e6, 0x000 }, | ||
12564 | { 0x00000000, 0x06e00000, 0x292 }, | ||
12565 | { 0x00000000, 0x00201c11, 0x000 }, | ||
12566 | { 0x00000000, 0x00200c11, 0x000 }, | ||
12567 | { 0x0000002b, 0x00203623, 0x000 }, | ||
12568 | { 0x00000010, 0x00201811, 0x000 }, | ||
12569 | { 0x00000000, 0x00691ce2, 0x12f }, | ||
12570 | { 0x93800000, 0x00204411, 0x000 }, | ||
12571 | { 0x00000000, 0x00204807, 0x000 }, | ||
12572 | { 0x95000000, 0x00204411, 0x000 }, | ||
12573 | { 0x00000000, 0x002f022f, 0x000 }, | ||
12574 | { 0x00000000, 0x0ce00000, 0x29d }, | ||
12575 | { 0x00000001, 0x00333e2f, 0x000 }, | ||
12576 | { 0x00000000, 0xd9004800, 0x000 }, | ||
12577 | { 0x92000000, 0x00204411, 0x000 }, | ||
12578 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12579 | { 0x0000001c, 0x00403627, 0x000 }, | ||
12580 | { 0x0000000c, 0xc0220a20, 0x000 }, | ||
12581 | { 0x00000029, 0x00203622, 0x000 }, | ||
12582 | { 0x00000028, 0xc0403620, 0x000 }, | ||
12583 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
12584 | { 0x00000009, 0x00204811, 0x000 }, | ||
12585 | { 0xa1000000, 0x00204411, 0x000 }, | ||
12586 | { 0x00000001, 0x00804811, 0x000 }, | ||
12587 | { 0x00000021, 0x00201e2d, 0x000 }, | ||
12588 | { 0x00000000, 0x002c1ce3, 0x000 }, | ||
12589 | { 0x00000021, 0x00203627, 0x000 }, | ||
12590 | { 0x00000022, 0x00201e2d, 0x000 }, | ||
12591 | { 0x00000000, 0x002c1ce4, 0x000 }, | ||
12592 | { 0x00000022, 0x00203627, 0x000 }, | ||
12593 | { 0x00000023, 0x00201e2d, 0x000 }, | ||
12594 | { 0x00000000, 0x003120a3, 0x000 }, | ||
12595 | { 0x00000000, 0x002d1d07, 0x000 }, | ||
12596 | { 0x00000023, 0x00203627, 0x000 }, | ||
12597 | { 0x00000024, 0x00201e2d, 0x000 }, | ||
12598 | { 0x00000000, 0x003120c4, 0x000 }, | ||
12599 | { 0x00000000, 0x002d1d07, 0x000 }, | ||
12600 | { 0x00000024, 0x00803627, 0x000 }, | ||
12601 | { 0x00000021, 0x00203623, 0x000 }, | ||
12602 | { 0x00000022, 0x00203624, 0x000 }, | ||
12603 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
12604 | { 0x00000023, 0x00203627, 0x000 }, | ||
12605 | { 0x00000000, 0x00311cc4, 0x000 }, | ||
12606 | { 0x00000024, 0x00803627, 0x000 }, | ||
12607 | { 0x0000001a, 0x00203627, 0x000 }, | ||
12608 | { 0x0000001b, 0x00203628, 0x000 }, | ||
12609 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
12610 | { 0x00000002, 0x00210227, 0x000 }, | ||
12611 | { 0x00000000, 0x14c00000, 0x2dc }, | ||
12612 | { 0x00000000, 0x00400000, 0x2d9 }, | ||
12613 | { 0x0000001a, 0x00203627, 0x000 }, | ||
12614 | { 0x0000001b, 0x00203628, 0x000 }, | ||
12615 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
12616 | { 0x00000002, 0x00210227, 0x000 }, | ||
12617 | { 0x00000000, 0x14e00000, 0x2d9 }, | ||
12618 | { 0x00000003, 0x00210227, 0x000 }, | ||
12619 | { 0x00000000, 0x14e00000, 0x2dc }, | ||
12620 | { 0x00000023, 0x00201e2d, 0x000 }, | ||
12621 | { 0x00000000, 0x002e00e1, 0x000 }, | ||
12622 | { 0x00000000, 0x02c00000, 0x2dc }, | ||
12623 | { 0x00000021, 0x00201e2d, 0x000 }, | ||
12624 | { 0x00000000, 0x003120a1, 0x000 }, | ||
12625 | { 0x00000000, 0x002e00e8, 0x000 }, | ||
12626 | { 0x00000000, 0x06c00000, 0x2dc }, | ||
12627 | { 0x00000024, 0x00201e2d, 0x000 }, | ||
12628 | { 0x00000000, 0x002e00e2, 0x000 }, | ||
12629 | { 0x00000000, 0x02c00000, 0x2dc }, | ||
12630 | { 0x00000022, 0x00201e2d, 0x000 }, | ||
12631 | { 0x00000000, 0x003120c2, 0x000 }, | ||
12632 | { 0x00000000, 0x002e00e8, 0x000 }, | ||
12633 | { 0x00000000, 0x06c00000, 0x2dc }, | ||
12634 | { 0x00000000, 0x00600000, 0x659 }, | ||
12635 | { 0x00000000, 0x00600000, 0x2b5 }, | ||
12636 | { 0x00000000, 0x00400000, 0x2de }, | ||
12637 | { 0x00000000, 0x00600000, 0x2b5 }, | ||
12638 | { 0x00000000, 0x00600000, 0x650 }, | ||
12639 | { 0x00000000, 0x00400000, 0x2de }, | ||
12640 | { 0x00000000, 0x00600000, 0x2a7 }, | ||
12641 | { 0x00000000, 0x00400000, 0x2de }, | ||
12642 | { 0x0000001a, 0x00201e2d, 0x000 }, | ||
12643 | { 0x0000001b, 0x0080222d, 0x000 }, | ||
12644 | { 0x00000010, 0x00221e23, 0x000 }, | ||
12645 | { 0x00000000, 0x00294887, 0x000 }, | ||
12646 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
12647 | { 0x00000010, 0x00221e27, 0x000 }, | ||
12648 | { 0x00000000, 0x00294887, 0x000 }, | ||
12649 | { 0x00000010, 0x00221e23, 0x000 }, | ||
12650 | { 0x00000000, 0x003120c4, 0x000 }, | ||
12651 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
12652 | { 0x00000000, 0x00894907, 0x000 }, | ||
12653 | { 0x00000010, 0x00221e23, 0x000 }, | ||
12654 | { 0x00000000, 0x00294887, 0x000 }, | ||
12655 | { 0x00000010, 0x00221e21, 0x000 }, | ||
12656 | { 0x00000000, 0x00294847, 0x000 }, | ||
12657 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
12658 | { 0x00000010, 0x00221e27, 0x000 }, | ||
12659 | { 0x00000000, 0x00294887, 0x000 }, | ||
12660 | { 0x00000000, 0x00311ca1, 0x000 }, | ||
12661 | { 0x00000010, 0x00221e27, 0x000 }, | ||
12662 | { 0x00000000, 0x00294847, 0x000 }, | ||
12663 | { 0x00000010, 0x00221e23, 0x000 }, | ||
12664 | { 0x00000000, 0x003120c4, 0x000 }, | ||
12665 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
12666 | { 0x00000000, 0x00294907, 0x000 }, | ||
12667 | { 0x00000010, 0x00221e21, 0x000 }, | ||
12668 | { 0x00000000, 0x003120c2, 0x000 }, | ||
12669 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
12670 | { 0x00000000, 0x00894907, 0x000 }, | ||
12671 | { 0x00000010, 0x00221e23, 0x000 }, | ||
12672 | { 0x00000000, 0x00294887, 0x000 }, | ||
12673 | { 0x00000001, 0x00220a21, 0x000 }, | ||
12674 | { 0x00000000, 0x003308a2, 0x000 }, | ||
12675 | { 0x00000010, 0x00221e22, 0x000 }, | ||
12676 | { 0x00000010, 0x00212222, 0x000 }, | ||
12677 | { 0x00000000, 0x00294907, 0x000 }, | ||
12678 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
12679 | { 0x00000010, 0x00221e27, 0x000 }, | ||
12680 | { 0x00000000, 0x00294887, 0x000 }, | ||
12681 | { 0x00000001, 0x00220a21, 0x000 }, | ||
12682 | { 0x00000000, 0x003008a2, 0x000 }, | ||
12683 | { 0x00000010, 0x00221e22, 0x000 }, | ||
12684 | { 0x00000010, 0x00212222, 0x000 }, | ||
12685 | { 0x00000000, 0x00294907, 0x000 }, | ||
12686 | { 0x00000010, 0x00221e23, 0x000 }, | ||
12687 | { 0x00000000, 0x003120c4, 0x000 }, | ||
12688 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
12689 | { 0x00000000, 0x00294907, 0x000 }, | ||
12690 | { 0x00000000, 0x003808c5, 0x000 }, | ||
12691 | { 0x00000000, 0x00300841, 0x000 }, | ||
12692 | { 0x00000001, 0x00220a22, 0x000 }, | ||
12693 | { 0x00000000, 0x003308a2, 0x000 }, | ||
12694 | { 0x00000010, 0x00221e22, 0x000 }, | ||
12695 | { 0x00000010, 0x00212222, 0x000 }, | ||
12696 | { 0x00000000, 0x00894907, 0x000 }, | ||
12697 | { 0x00000017, 0x0020222d, 0x000 }, | ||
12698 | { 0x00000000, 0x14c00000, 0x318 }, | ||
12699 | { 0xffffffef, 0x00280621, 0x000 }, | ||
12700 | { 0x00000014, 0x0020222d, 0x000 }, | ||
12701 | { 0x0000f8e0, 0x00204411, 0x000 }, | ||
12702 | { 0x00000000, 0x00294901, 0x000 }, | ||
12703 | { 0x00000000, 0x00894901, 0x000 }, | ||
12704 | { 0x00000000, 0x00204811, 0x000 }, | ||
12705 | { 0x00000000, 0x00204811, 0x000 }, | ||
12706 | { 0x060a0200, 0x00804811, 0x000 }, | ||
12707 | { 0x00000000, 0xc0200000, 0x000 }, | ||
12708 | { 0x97000000, 0xc0204411, 0x000 }, | ||
12709 | { 0x00000000, 0xc0204811, 0x000 }, | ||
12710 | { 0x8a000000, 0x00204411, 0x000 }, | ||
12711 | { 0x00000000, 0x00204811, 0x000 }, | ||
12712 | { 0x0000225c, 0x00204411, 0x000 }, | ||
12713 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12714 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
12715 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12716 | { 0x00000000, 0xc0200400, 0x000 }, | ||
12717 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
12718 | { 0x97000000, 0x00204411, 0x000 }, | ||
12719 | { 0x00000000, 0x00204811, 0x000 }, | ||
12720 | { 0x8a000000, 0x00204411, 0x000 }, | ||
12721 | { 0x00000000, 0x00204811, 0x000 }, | ||
12722 | { 0x0000225c, 0x00204411, 0x000 }, | ||
12723 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12724 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
12725 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12726 | { 0x00000000, 0xc0200400, 0x000 }, | ||
12727 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
12728 | { 0x97000000, 0x00204411, 0x000 }, | ||
12729 | { 0x00000000, 0x00204811, 0x000 }, | ||
12730 | { 0x8a000000, 0x00204411, 0x000 }, | ||
12731 | { 0x00000000, 0x00204811, 0x000 }, | ||
12732 | { 0x0000225c, 0x00204411, 0x000 }, | ||
12733 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12734 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
12735 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12736 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
12737 | { 0x00000000, 0xd9004800, 0x000 }, | ||
12738 | { 0x00000000, 0xc0200400, 0x000 }, | ||
12739 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
12740 | { 0x00002257, 0x00204411, 0x000 }, | ||
12741 | { 0x00000003, 0xc0484a20, 0x000 }, | ||
12742 | { 0x0000225d, 0x00204411, 0x000 }, | ||
12743 | { 0x00000000, 0xc0404800, 0x000 }, | ||
12744 | { 0x00000000, 0x00600000, 0x638 }, | ||
12745 | { 0x00000000, 0xc0200800, 0x000 }, | ||
12746 | { 0x0000225c, 0x00204411, 0x000 }, | ||
12747 | { 0x00000003, 0x00384a22, 0x000 }, | ||
12748 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
12749 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12750 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
12751 | { 0x00000000, 0x002f0222, 0x000 }, | ||
12752 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
12753 | { 0x00000000, 0x40204800, 0x000 }, | ||
12754 | { 0x00000001, 0x40304a20, 0x000 }, | ||
12755 | { 0x00000002, 0xc0304a20, 0x000 }, | ||
12756 | { 0x00000001, 0x00530a22, 0x34b }, | ||
12757 | { 0x0000003f, 0xc0280a20, 0x000 }, | ||
12758 | { 0x81000000, 0x00204411, 0x000 }, | ||
12759 | { 0x00000001, 0x00204811, 0x000 }, | ||
12760 | { 0x000021f8, 0x00204411, 0x000 }, | ||
12761 | { 0x00000018, 0x00204811, 0x000 }, | ||
12762 | { 0x000421f9, 0x00604411, 0x67c }, | ||
12763 | { 0x00000011, 0x00210230, 0x000 }, | ||
12764 | { 0x00000000, 0x14e00000, 0x354 }, | ||
12765 | { 0x00000014, 0x002f0222, 0x000 }, | ||
12766 | { 0x00000000, 0x0cc00000, 0x362 }, | ||
12767 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
12768 | { 0x00000000, 0x00604802, 0x36a }, | ||
12769 | { 0x00002100, 0x00204411, 0x000 }, | ||
12770 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12771 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12772 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12773 | { 0x00000000, 0xc0404800, 0x000 }, | ||
12774 | { 0x00000004, 0x002f0222, 0x000 }, | ||
12775 | { 0x00000000, 0x0cc00000, 0x366 }, | ||
12776 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
12777 | { 0x00000000, 0x00404802, 0x35d }, | ||
12778 | { 0x00000028, 0x002f0222, 0x000 }, | ||
12779 | { 0x00000000, 0x0cc00000, 0x5b3 }, | ||
12780 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
12781 | { 0x00000000, 0x00404802, 0x35d }, | ||
12782 | { 0x0000002c, 0x00203626, 0x000 }, | ||
12783 | { 0x00000049, 0x00201811, 0x000 }, | ||
12784 | { 0x0000003f, 0x00204811, 0x000 }, | ||
12785 | { 0x00000001, 0x00331a26, 0x000 }, | ||
12786 | { 0x00000000, 0x002f0226, 0x000 }, | ||
12787 | { 0x00000000, 0x0cc00000, 0x36c }, | ||
12788 | { 0x0000002c, 0x00801a2d, 0x000 }, | ||
12789 | { 0x0000003f, 0xc0280a20, 0x000 }, | ||
12790 | { 0x00000015, 0x002f0222, 0x000 }, | ||
12791 | { 0x00000000, 0x0ce00000, 0x382 }, | ||
12792 | { 0x00000006, 0x002f0222, 0x000 }, | ||
12793 | { 0x00000000, 0x0ce00000, 0x3ad }, | ||
12794 | { 0x00000016, 0x002f0222, 0x000 }, | ||
12795 | { 0x00000000, 0x0ce00000, 0x3af }, | ||
12796 | { 0x00000020, 0x002f0222, 0x000 }, | ||
12797 | { 0x00000000, 0x0ce00000, 0x398 }, | ||
12798 | { 0x0000000f, 0x002f0222, 0x000 }, | ||
12799 | { 0x00000000, 0x0ce00000, 0x3a4 }, | ||
12800 | { 0x00000010, 0x002f0222, 0x000 }, | ||
12801 | { 0x00000000, 0x0ce00000, 0x3a4 }, | ||
12802 | { 0x0000001e, 0x002f0222, 0x000 }, | ||
12803 | { 0x00000000, 0x0ce00000, 0x38c }, | ||
12804 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
12805 | { 0x00000000, 0x00404802, 0x000 }, | ||
12806 | { 0x08000000, 0x00290a22, 0x000 }, | ||
12807 | { 0x00000003, 0x40210e20, 0x000 }, | ||
12808 | { 0x0000000c, 0xc0211220, 0x000 }, | ||
12809 | { 0x00080000, 0x00281224, 0x000 }, | ||
12810 | { 0x00000014, 0xc0221620, 0x000 }, | ||
12811 | { 0x00000000, 0x002914a4, 0x000 }, | ||
12812 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
12813 | { 0x00000000, 0x002948a2, 0x000 }, | ||
12814 | { 0x0000a1fe, 0x00204411, 0x000 }, | ||
12815 | { 0x00000000, 0x00404803, 0x000 }, | ||
12816 | { 0x81000000, 0x00204411, 0x000 }, | ||
12817 | { 0x00000001, 0x00204811, 0x000 }, | ||
12818 | { 0x000021f8, 0x00204411, 0x000 }, | ||
12819 | { 0x00000016, 0x00204811, 0x000 }, | ||
12820 | { 0x000421f9, 0x00604411, 0x67c }, | ||
12821 | { 0x00000015, 0x00210230, 0x000 }, | ||
12822 | { 0x00000000, 0x14e00000, 0x38e }, | ||
12823 | { 0x0000210e, 0x00204411, 0x000 }, | ||
12824 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12825 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12826 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
12827 | { 0x00000000, 0x00404802, 0x000 }, | ||
12828 | { 0x81000000, 0x00204411, 0x000 }, | ||
12829 | { 0x00000001, 0x00204811, 0x000 }, | ||
12830 | { 0x000021f8, 0x00204411, 0x000 }, | ||
12831 | { 0x00000017, 0x00204811, 0x000 }, | ||
12832 | { 0x000421f9, 0x00604411, 0x67c }, | ||
12833 | { 0x00000003, 0x00210230, 0x000 }, | ||
12834 | { 0x00000000, 0x14e00000, 0x39a }, | ||
12835 | { 0x00002108, 0x00204411, 0x000 }, | ||
12836 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12837 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12838 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
12839 | { 0x00000000, 0x00404802, 0x000 }, | ||
12840 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
12841 | { 0x00000000, 0x00204802, 0x000 }, | ||
12842 | { 0x80000000, 0x00204411, 0x000 }, | ||
12843 | { 0x00000000, 0x00204811, 0x000 }, | ||
12844 | { 0x81000000, 0x00204411, 0x000 }, | ||
12845 | { 0x00000010, 0x00204811, 0x000 }, | ||
12846 | { 0x00000000, 0x00200010, 0x000 }, | ||
12847 | { 0x00000000, 0x14c00000, 0x3aa }, | ||
12848 | { 0x00000000, 0x00400000, 0x000 }, | ||
12849 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
12850 | { 0x00000006, 0x00404811, 0x000 }, | ||
12851 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
12852 | { 0x00000016, 0x00604811, 0x36a }, | ||
12853 | { 0x00000000, 0x00400000, 0x000 }, | ||
12854 | { 0x00000000, 0xc0200800, 0x000 }, | ||
12855 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
12856 | { 0x0000001d, 0x00210223, 0x000 }, | ||
12857 | { 0x00000000, 0x14e00000, 0x3c4 }, | ||
12858 | { 0x81000000, 0x00204411, 0x000 }, | ||
12859 | { 0x00000001, 0x00204811, 0x000 }, | ||
12860 | { 0x000021f8, 0x00204411, 0x000 }, | ||
12861 | { 0x00000018, 0x00204811, 0x000 }, | ||
12862 | { 0x000421f9, 0x00604411, 0x67c }, | ||
12863 | { 0x00000011, 0x00210230, 0x000 }, | ||
12864 | { 0x00000000, 0x14e00000, 0x3b8 }, | ||
12865 | { 0x00002100, 0x00204411, 0x000 }, | ||
12866 | { 0x00000000, 0x00204802, 0x000 }, | ||
12867 | { 0x00000000, 0x00204803, 0x000 }, | ||
12868 | { 0xbabecafe, 0x00204811, 0x000 }, | ||
12869 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
12870 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
12871 | { 0x00000004, 0x00404811, 0x000 }, | ||
12872 | { 0x00002170, 0x00204411, 0x000 }, | ||
12873 | { 0x00000000, 0x00204802, 0x000 }, | ||
12874 | { 0x00000000, 0x00204803, 0x000 }, | ||
12875 | { 0x81000000, 0x00204411, 0x000 }, | ||
12876 | { 0x0000000a, 0x00204811, 0x000 }, | ||
12877 | { 0x00000000, 0x00200010, 0x000 }, | ||
12878 | { 0x00000000, 0x14c00000, 0x3c9 }, | ||
12879 | { 0x8c000000, 0x00204411, 0x000 }, | ||
12880 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
12881 | { 0x81000000, 0x00204411, 0x000 }, | ||
12882 | { 0x00000001, 0x00204811, 0x000 }, | ||
12883 | { 0x00003fff, 0x40280a20, 0x000 }, | ||
12884 | { 0x80000000, 0x40280e20, 0x000 }, | ||
12885 | { 0x40000000, 0xc0281220, 0x000 }, | ||
12886 | { 0x00040000, 0x00694622, 0x67c }, | ||
12887 | { 0x00000000, 0x00201410, 0x000 }, | ||
12888 | { 0x00000000, 0x002f0223, 0x000 }, | ||
12889 | { 0x00000000, 0x0cc00000, 0x3d7 }, | ||
12890 | { 0x00000000, 0xc0401800, 0x3da }, | ||
12891 | { 0x00003fff, 0xc0281a20, 0x000 }, | ||
12892 | { 0x00040000, 0x00694626, 0x67c }, | ||
12893 | { 0x00000000, 0x00201810, 0x000 }, | ||
12894 | { 0x00000000, 0x002f0224, 0x000 }, | ||
12895 | { 0x00000000, 0x0cc00000, 0x3dd }, | ||
12896 | { 0x00000000, 0xc0401c00, 0x3e0 }, | ||
12897 | { 0x00003fff, 0xc0281e20, 0x000 }, | ||
12898 | { 0x00040000, 0x00694627, 0x67c }, | ||
12899 | { 0x00000000, 0x00201c10, 0x000 }, | ||
12900 | { 0x00000000, 0x00204402, 0x000 }, | ||
12901 | { 0x00000000, 0x002820c5, 0x000 }, | ||
12902 | { 0x00000000, 0x004948e8, 0x000 }, | ||
12903 | { 0xa5800000, 0x00200811, 0x000 }, | ||
12904 | { 0x00002000, 0x00200c11, 0x000 }, | ||
12905 | { 0x83000000, 0x00604411, 0x408 }, | ||
12906 | { 0x00000000, 0x00204402, 0x000 }, | ||
12907 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12908 | { 0x00000000, 0x40204800, 0x000 }, | ||
12909 | { 0x0000001f, 0xc0210220, 0x000 }, | ||
12910 | { 0x00000000, 0x14c00000, 0x3ed }, | ||
12911 | { 0x00002010, 0x00204411, 0x000 }, | ||
12912 | { 0x00008000, 0x00204811, 0x000 }, | ||
12913 | { 0x0000ffff, 0xc0481220, 0x3f5 }, | ||
12914 | { 0xa7800000, 0x00200811, 0x000 }, | ||
12915 | { 0x0000a000, 0x00200c11, 0x000 }, | ||
12916 | { 0x83000000, 0x00604411, 0x408 }, | ||
12917 | { 0x00000000, 0x00204402, 0x000 }, | ||
12918 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12919 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12920 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
12921 | { 0x83000000, 0x00204411, 0x000 }, | ||
12922 | { 0x00000000, 0x00304883, 0x000 }, | ||
12923 | { 0x84000000, 0x00204411, 0x000 }, | ||
12924 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12925 | { 0x00000000, 0x1d000000, 0x000 }, | ||
12926 | { 0x83000000, 0x00604411, 0x408 }, | ||
12927 | { 0x00000000, 0xc0400400, 0x001 }, | ||
12928 | { 0xa9800000, 0x00200811, 0x000 }, | ||
12929 | { 0x0000c000, 0x00400c11, 0x3f0 }, | ||
12930 | { 0xab800000, 0x00200811, 0x000 }, | ||
12931 | { 0x0000f8e0, 0x00400c11, 0x3f0 }, | ||
12932 | { 0xad800000, 0x00200811, 0x000 }, | ||
12933 | { 0x0000f880, 0x00400c11, 0x3f0 }, | ||
12934 | { 0xb3800000, 0x00200811, 0x000 }, | ||
12935 | { 0x0000f3fc, 0x00400c11, 0x3f0 }, | ||
12936 | { 0xaf800000, 0x00200811, 0x000 }, | ||
12937 | { 0x0000e000, 0x00400c11, 0x3f0 }, | ||
12938 | { 0xb1800000, 0x00200811, 0x000 }, | ||
12939 | { 0x0000f000, 0x00400c11, 0x3f0 }, | ||
12940 | { 0x83000000, 0x00204411, 0x000 }, | ||
12941 | { 0x00002148, 0x00204811, 0x000 }, | ||
12942 | { 0x84000000, 0x00204411, 0x000 }, | ||
12943 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12944 | { 0x00000000, 0x1d000000, 0x000 }, | ||
12945 | { 0x00000000, 0x00800000, 0x000 }, | ||
12946 | { 0x01182000, 0xc0304620, 0x000 }, | ||
12947 | { 0x00000000, 0xd9004800, 0x000 }, | ||
12948 | { 0x00000000, 0xc0200400, 0x000 }, | ||
12949 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
12950 | { 0x0218a000, 0xc0304620, 0x000 }, | ||
12951 | { 0x00000000, 0xd9004800, 0x000 }, | ||
12952 | { 0x00000000, 0xc0200400, 0x000 }, | ||
12953 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
12954 | { 0x0318c000, 0xc0304620, 0x000 }, | ||
12955 | { 0x00000000, 0xd9004800, 0x000 }, | ||
12956 | { 0x00000000, 0xc0200400, 0x000 }, | ||
12957 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
12958 | { 0x0418f8e0, 0xc0304620, 0x000 }, | ||
12959 | { 0x00000000, 0xd9004800, 0x000 }, | ||
12960 | { 0x00000000, 0xc0200400, 0x000 }, | ||
12961 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
12962 | { 0x0518f880, 0xc0304620, 0x000 }, | ||
12963 | { 0x00000000, 0xd9004800, 0x000 }, | ||
12964 | { 0x00000000, 0xc0200400, 0x000 }, | ||
12965 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
12966 | { 0x0618e000, 0xc0304620, 0x000 }, | ||
12967 | { 0x00000000, 0xd9004800, 0x000 }, | ||
12968 | { 0x00000000, 0xc0200400, 0x000 }, | ||
12969 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
12970 | { 0x0718f000, 0xc0304620, 0x000 }, | ||
12971 | { 0x00000000, 0xd9004800, 0x000 }, | ||
12972 | { 0x00000000, 0xc0200400, 0x000 }, | ||
12973 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
12974 | { 0x0818f3fc, 0xc0304620, 0x000 }, | ||
12975 | { 0x00000000, 0xd9004800, 0x000 }, | ||
12976 | { 0x00000000, 0xc0200400, 0x000 }, | ||
12977 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
12978 | { 0x00000030, 0x00200a2d, 0x000 }, | ||
12979 | { 0x00000000, 0xc0290c40, 0x000 }, | ||
12980 | { 0x00000030, 0x00203623, 0x000 }, | ||
12981 | { 0x00000000, 0xc0200400, 0x000 }, | ||
12982 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
12983 | { 0x86000000, 0x00204411, 0x000 }, | ||
12984 | { 0x00000000, 0x00404801, 0x000 }, | ||
12985 | { 0x85000000, 0xc0204411, 0x000 }, | ||
12986 | { 0x00000000, 0x00404801, 0x000 }, | ||
12987 | { 0x0000217c, 0x00204411, 0x000 }, | ||
12988 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12989 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12990 | { 0x00000000, 0xc0204800, 0x000 }, | ||
12991 | { 0x81000000, 0x00204411, 0x000 }, | ||
12992 | { 0x00000001, 0x00204811, 0x000 }, | ||
12993 | { 0x00000000, 0xc0200800, 0x000 }, | ||
12994 | { 0x00000000, 0x17000000, 0x000 }, | ||
12995 | { 0x0004217f, 0x00604411, 0x67c }, | ||
12996 | { 0x0000001f, 0x00210230, 0x000 }, | ||
12997 | { 0x00000000, 0x14c00000, 0x000 }, | ||
12998 | { 0x00000000, 0x00404c02, 0x43e }, | ||
12999 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
13000 | { 0x00000000, 0xc0201000, 0x000 }, | ||
13001 | { 0x00000000, 0xc0201400, 0x000 }, | ||
13002 | { 0x00000000, 0xc0201800, 0x000 }, | ||
13003 | { 0x00000000, 0xc0201c00, 0x000 }, | ||
13004 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
13005 | { 0x00004500, 0x002f0222, 0x000 }, | ||
13006 | { 0x00000000, 0x0ce00000, 0x44c }, | ||
13007 | { 0x00000000, 0xc0202000, 0x000 }, | ||
13008 | { 0x00000000, 0x17000000, 0x000 }, | ||
13009 | { 0x00000010, 0x00280a23, 0x000 }, | ||
13010 | { 0x00000010, 0x002f0222, 0x000 }, | ||
13011 | { 0x00000000, 0x0ce00000, 0x454 }, | ||
13012 | { 0x81000000, 0x00204411, 0x000 }, | ||
13013 | { 0x00000001, 0x00204811, 0x000 }, | ||
13014 | { 0x00040000, 0x00694624, 0x67c }, | ||
13015 | { 0x00000000, 0x00400000, 0x459 }, | ||
13016 | { 0x81000000, 0x00204411, 0x000 }, | ||
13017 | { 0x00000000, 0x00204811, 0x000 }, | ||
13018 | { 0x0000216d, 0x00204411, 0x000 }, | ||
13019 | { 0x00000000, 0x00204804, 0x000 }, | ||
13020 | { 0x00000000, 0x00604805, 0x681 }, | ||
13021 | { 0x00000000, 0x002824f0, 0x000 }, | ||
13022 | { 0x00000007, 0x00280a23, 0x000 }, | ||
13023 | { 0x00000001, 0x002f0222, 0x000 }, | ||
13024 | { 0x00000000, 0x0ae00000, 0x460 }, | ||
13025 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
13026 | { 0x00000000, 0x04e00000, 0x479 }, | ||
13027 | { 0x00000000, 0x00400000, 0x486 }, | ||
13028 | { 0x00000002, 0x002f0222, 0x000 }, | ||
13029 | { 0x00000000, 0x0ae00000, 0x465 }, | ||
13030 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
13031 | { 0x00000000, 0x02e00000, 0x479 }, | ||
13032 | { 0x00000000, 0x00400000, 0x486 }, | ||
13033 | { 0x00000003, 0x002f0222, 0x000 }, | ||
13034 | { 0x00000000, 0x0ae00000, 0x46a }, | ||
13035 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
13036 | { 0x00000000, 0x0ce00000, 0x479 }, | ||
13037 | { 0x00000000, 0x00400000, 0x486 }, | ||
13038 | { 0x00000004, 0x002f0222, 0x000 }, | ||
13039 | { 0x00000000, 0x0ae00000, 0x46f }, | ||
13040 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
13041 | { 0x00000000, 0x0ae00000, 0x479 }, | ||
13042 | { 0x00000000, 0x00400000, 0x486 }, | ||
13043 | { 0x00000005, 0x002f0222, 0x000 }, | ||
13044 | { 0x00000000, 0x0ae00000, 0x474 }, | ||
13045 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
13046 | { 0x00000000, 0x06e00000, 0x479 }, | ||
13047 | { 0x00000000, 0x00400000, 0x486 }, | ||
13048 | { 0x00000006, 0x002f0222, 0x000 }, | ||
13049 | { 0x00000000, 0x0ae00000, 0x479 }, | ||
13050 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
13051 | { 0x00000000, 0x08e00000, 0x479 }, | ||
13052 | { 0x00000000, 0x00400000, 0x486 }, | ||
13053 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
13054 | { 0x00004500, 0x002f0222, 0x000 }, | ||
13055 | { 0x00000000, 0x0ae00000, 0x000 }, | ||
13056 | { 0x00000008, 0x00210a23, 0x000 }, | ||
13057 | { 0x00000000, 0x14c00000, 0x483 }, | ||
13058 | { 0x00002169, 0x00204411, 0x000 }, | ||
13059 | { 0x00000000, 0xc0204800, 0x000 }, | ||
13060 | { 0x00000000, 0xc0204800, 0x000 }, | ||
13061 | { 0x00000000, 0xc0204800, 0x000 }, | ||
13062 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
13063 | { 0x00000000, 0xc0204400, 0x000 }, | ||
13064 | { 0x00000000, 0xc0200000, 0x000 }, | ||
13065 | { 0x00000000, 0xc0404800, 0x000 }, | ||
13066 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
13067 | { 0x00004500, 0x002f0222, 0x000 }, | ||
13068 | { 0x00000000, 0x0ae00000, 0x48c }, | ||
13069 | { 0x00000000, 0xc0200000, 0x000 }, | ||
13070 | { 0x00000000, 0xc0200000, 0x000 }, | ||
13071 | { 0x00000000, 0xc0400000, 0x000 }, | ||
13072 | { 0x00000000, 0x00404c08, 0x44c }, | ||
13073 | { 0x00000000, 0xc0200800, 0x000 }, | ||
13074 | { 0x00000010, 0x40210e20, 0x000 }, | ||
13075 | { 0x00000011, 0x40211220, 0x000 }, | ||
13076 | { 0x00000012, 0x40211620, 0x000 }, | ||
13077 | { 0x00002169, 0x00204411, 0x000 }, | ||
13078 | { 0x00000000, 0x00204802, 0x000 }, | ||
13079 | { 0x00000000, 0x00210225, 0x000 }, | ||
13080 | { 0x00000000, 0x14e00000, 0x496 }, | ||
13081 | { 0x00040000, 0xc0494a20, 0x497 }, | ||
13082 | { 0xfffbffff, 0xc0284a20, 0x000 }, | ||
13083 | { 0x00000000, 0x00210223, 0x000 }, | ||
13084 | { 0x00000000, 0x14e00000, 0x4a3 }, | ||
13085 | { 0x00000000, 0xc0204800, 0x000 }, | ||
13086 | { 0x00000000, 0xc0204800, 0x000 }, | ||
13087 | { 0x00000000, 0x00210224, 0x000 }, | ||
13088 | { 0x00000000, 0x14c00000, 0x000 }, | ||
13089 | { 0x81000000, 0x00204411, 0x000 }, | ||
13090 | { 0x0000000c, 0x00204811, 0x000 }, | ||
13091 | { 0x00000000, 0x00200010, 0x000 }, | ||
13092 | { 0x00000000, 0x14c00000, 0x49f }, | ||
13093 | { 0xa0000000, 0x00204411, 0x000 }, | ||
13094 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
13095 | { 0x81000000, 0x00204411, 0x000 }, | ||
13096 | { 0x00000004, 0x00204811, 0x000 }, | ||
13097 | { 0x0000216b, 0x00204411, 0x000 }, | ||
13098 | { 0x00000000, 0xc0204810, 0x000 }, | ||
13099 | { 0x81000000, 0x00204411, 0x000 }, | ||
13100 | { 0x00000005, 0x00204811, 0x000 }, | ||
13101 | { 0x0000216c, 0x00204411, 0x000 }, | ||
13102 | { 0x00000000, 0xc0204810, 0x000 }, | ||
13103 | { 0x00000000, 0x002f0224, 0x000 }, | ||
13104 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
13105 | { 0x00000000, 0x00400000, 0x49d }, | ||
13106 | { 0x00000000, 0xc0210a20, 0x000 }, | ||
13107 | { 0x00000000, 0x14c00000, 0x4b6 }, | ||
13108 | { 0x81000000, 0x00204411, 0x000 }, | ||
13109 | { 0x00000000, 0x00204811, 0x000 }, | ||
13110 | { 0x0000216d, 0x00204411, 0x000 }, | ||
13111 | { 0x00000000, 0xc0204800, 0x000 }, | ||
13112 | { 0x00000000, 0xc0604800, 0x681 }, | ||
13113 | { 0x00000000, 0x00400000, 0x4ba }, | ||
13114 | { 0x81000000, 0x00204411, 0x000 }, | ||
13115 | { 0x00000001, 0x00204811, 0x000 }, | ||
13116 | { 0x00040000, 0xc0294620, 0x000 }, | ||
13117 | { 0x00000000, 0xc0600000, 0x67c }, | ||
13118 | { 0x00000001, 0x00210222, 0x000 }, | ||
13119 | { 0x00000000, 0x14c00000, 0x4c1 }, | ||
13120 | { 0x00002169, 0x00204411, 0x000 }, | ||
13121 | { 0x00000000, 0xc0204800, 0x000 }, | ||
13122 | { 0x00000000, 0xc0204800, 0x000 }, | ||
13123 | { 0x00000000, 0x00204810, 0x000 }, | ||
13124 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
13125 | { 0x00000000, 0xc0204400, 0x000 }, | ||
13126 | { 0x00000000, 0xc0404810, 0x000 }, | ||
13127 | { 0x81000000, 0x00204411, 0x000 }, | ||
13128 | { 0x00000001, 0x00204811, 0x000 }, | ||
13129 | { 0x000021f8, 0x00204411, 0x000 }, | ||
13130 | { 0x0000000e, 0x00204811, 0x000 }, | ||
13131 | { 0x000421f9, 0x00604411, 0x67c }, | ||
13132 | { 0x00000000, 0x00210230, 0x000 }, | ||
13133 | { 0x00000000, 0x14c00000, 0x4c3 }, | ||
13134 | { 0x00002180, 0x00204411, 0x000 }, | ||
13135 | { 0x00000000, 0xc0204800, 0x000 }, | ||
13136 | { 0x00000000, 0xc0200000, 0x000 }, | ||
13137 | { 0x00000000, 0xc0204800, 0x000 }, | ||
13138 | { 0x00000000, 0xc0200000, 0x000 }, | ||
13139 | { 0x00000000, 0xc0404800, 0x000 }, | ||
13140 | { 0x00000003, 0x00333e2f, 0x000 }, | ||
13141 | { 0x00000001, 0x00210221, 0x000 }, | ||
13142 | { 0x00000000, 0x14e00000, 0x4f3 }, | ||
13143 | { 0x0000002c, 0x00200a2d, 0x000 }, | ||
13144 | { 0x00040000, 0x18e00c11, 0x4e2 }, | ||
13145 | { 0x00000001, 0x00333e2f, 0x000 }, | ||
13146 | { 0x00002169, 0x00204411, 0x000 }, | ||
13147 | { 0x00000000, 0x00204802, 0x000 }, | ||
13148 | { 0x00000000, 0x00204803, 0x000 }, | ||
13149 | { 0x00000008, 0x00300a22, 0x000 }, | ||
13150 | { 0x00000000, 0xc0204800, 0x000 }, | ||
13151 | { 0x00000000, 0xc0204800, 0x000 }, | ||
13152 | { 0x00002169, 0x00204411, 0x000 }, | ||
13153 | { 0x00000000, 0x00204802, 0x000 }, | ||
13154 | { 0x00000000, 0x00204803, 0x000 }, | ||
13155 | { 0x00000008, 0x00300a22, 0x000 }, | ||
13156 | { 0x00000000, 0xc0204800, 0x000 }, | ||
13157 | { 0x00000000, 0xd8c04800, 0x4d6 }, | ||
13158 | { 0x00002169, 0x00204411, 0x000 }, | ||
13159 | { 0x00000000, 0x00204802, 0x000 }, | ||
13160 | { 0x00000000, 0x00204803, 0x000 }, | ||
13161 | { 0x00000008, 0x00300a22, 0x000 }, | ||
13162 | { 0x00000000, 0xc0204800, 0x000 }, | ||
13163 | { 0x00000000, 0xc0204800, 0x000 }, | ||
13164 | { 0x0000002d, 0x0020122d, 0x000 }, | ||
13165 | { 0x00000000, 0x00290c83, 0x000 }, | ||
13166 | { 0x00002169, 0x00204411, 0x000 }, | ||
13167 | { 0x00000000, 0x00204802, 0x000 }, | ||
13168 | { 0x00000000, 0x00204803, 0x000 }, | ||
13169 | { 0x00000008, 0x00300a22, 0x000 }, | ||
13170 | { 0x00000000, 0xc0204800, 0x000 }, | ||
13171 | { 0x00000000, 0xc0204800, 0x000 }, | ||
13172 | { 0x00000011, 0x00210224, 0x000 }, | ||
13173 | { 0x00000000, 0x14c00000, 0x000 }, | ||
13174 | { 0x00000000, 0x00400000, 0x49d }, | ||
13175 | { 0x0000002c, 0xc0203620, 0x000 }, | ||
13176 | { 0x0000002d, 0xc0403620, 0x000 }, | ||
13177 | { 0x0000000f, 0x00210221, 0x000 }, | ||
13178 | { 0x00000000, 0x14c00000, 0x4f8 }, | ||
13179 | { 0x00000000, 0x00600000, 0x00b }, | ||
13180 | { 0x00000000, 0xd9000000, 0x000 }, | ||
13181 | { 0x00000000, 0xc0400400, 0x001 }, | ||
13182 | { 0xb5000000, 0x00204411, 0x000 }, | ||
13183 | { 0x00002000, 0x00204811, 0x000 }, | ||
13184 | { 0xb6000000, 0x00204411, 0x000 }, | ||
13185 | { 0x0000a000, 0x00204811, 0x000 }, | ||
13186 | { 0xb7000000, 0x00204411, 0x000 }, | ||
13187 | { 0x0000c000, 0x00204811, 0x000 }, | ||
13188 | { 0xb8000000, 0x00204411, 0x000 }, | ||
13189 | { 0x0000f8e0, 0x00204811, 0x000 }, | ||
13190 | { 0xb9000000, 0x00204411, 0x000 }, | ||
13191 | { 0x0000f880, 0x00204811, 0x000 }, | ||
13192 | { 0xba000000, 0x00204411, 0x000 }, | ||
13193 | { 0x0000e000, 0x00204811, 0x000 }, | ||
13194 | { 0xbb000000, 0x00204411, 0x000 }, | ||
13195 | { 0x0000f000, 0x00204811, 0x000 }, | ||
13196 | { 0xbc000000, 0x00204411, 0x000 }, | ||
13197 | { 0x0000f3fc, 0x00204811, 0x000 }, | ||
13198 | { 0x81000000, 0x00204411, 0x000 }, | ||
13199 | { 0x00000002, 0x00204811, 0x000 }, | ||
13200 | { 0x000000ff, 0x00280e30, 0x000 }, | ||
13201 | { 0x00000000, 0x002f0223, 0x000 }, | ||
13202 | { 0x00000000, 0x0cc00000, 0x50c }, | ||
13203 | { 0x00000000, 0xc0200800, 0x000 }, | ||
13204 | { 0x00000000, 0x14c00000, 0x521 }, | ||
13205 | { 0x00000000, 0x00200c11, 0x000 }, | ||
13206 | { 0x0000001c, 0x00203623, 0x000 }, | ||
13207 | { 0x0000002b, 0x00203623, 0x000 }, | ||
13208 | { 0x00000029, 0x00203623, 0x000 }, | ||
13209 | { 0x00000028, 0x00203623, 0x000 }, | ||
13210 | { 0x00000017, 0x00203623, 0x000 }, | ||
13211 | { 0x00000025, 0x00203623, 0x000 }, | ||
13212 | { 0x00000026, 0x00203623, 0x000 }, | ||
13213 | { 0x00000015, 0x00203623, 0x000 }, | ||
13214 | { 0x00000016, 0x00203623, 0x000 }, | ||
13215 | { 0xffffe000, 0x00200c11, 0x000 }, | ||
13216 | { 0x00000021, 0x00203623, 0x000 }, | ||
13217 | { 0x00000022, 0x00203623, 0x000 }, | ||
13218 | { 0x00001fff, 0x00200c11, 0x000 }, | ||
13219 | { 0x00000023, 0x00203623, 0x000 }, | ||
13220 | { 0x00000024, 0x00203623, 0x000 }, | ||
13221 | { 0xf1ffffff, 0x00283a2e, 0x000 }, | ||
13222 | { 0x0000001a, 0xc0220e20, 0x000 }, | ||
13223 | { 0x00000000, 0x0029386e, 0x000 }, | ||
13224 | { 0x81000000, 0x00204411, 0x000 }, | ||
13225 | { 0x00000006, 0x00204811, 0x000 }, | ||
13226 | { 0x0000002a, 0x40203620, 0x000 }, | ||
13227 | { 0x87000000, 0x00204411, 0x000 }, | ||
13228 | { 0x00000000, 0xc0204800, 0x000 }, | ||
13229 | { 0x0000a1f4, 0x00204411, 0x000 }, | ||
13230 | { 0x00000000, 0x00204810, 0x000 }, | ||
13231 | { 0x00000000, 0x00200c11, 0x000 }, | ||
13232 | { 0x00000030, 0x00203623, 0x000 }, | ||
13233 | { 0x9d000000, 0x00204411, 0x000 }, | ||
13234 | { 0x0000001f, 0x40214a20, 0x000 }, | ||
13235 | { 0x96000000, 0x00204411, 0x000 }, | ||
13236 | { 0x00000000, 0xc0204800, 0x000 }, | ||
13237 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
13238 | { 0x00000000, 0xc0201000, 0x000 }, | ||
13239 | { 0x0000001f, 0x00211624, 0x000 }, | ||
13240 | { 0x00000000, 0x14c00000, 0x000 }, | ||
13241 | { 0x0000001d, 0x00203623, 0x000 }, | ||
13242 | { 0x00000003, 0x00281e23, 0x000 }, | ||
13243 | { 0x00000008, 0x00222223, 0x000 }, | ||
13244 | { 0xfffff000, 0x00282228, 0x000 }, | ||
13245 | { 0x00000000, 0x002920e8, 0x000 }, | ||
13246 | { 0x0000001f, 0x00203628, 0x000 }, | ||
13247 | { 0x00000018, 0x00211e23, 0x000 }, | ||
13248 | { 0x00000020, 0x00203627, 0x000 }, | ||
13249 | { 0x00000002, 0x00221624, 0x000 }, | ||
13250 | { 0x00000000, 0x003014a8, 0x000 }, | ||
13251 | { 0x0000001e, 0x00203625, 0x000 }, | ||
13252 | { 0x00000003, 0x00211a24, 0x000 }, | ||
13253 | { 0x10000000, 0x00281a26, 0x000 }, | ||
13254 | { 0xefffffff, 0x00283a2e, 0x000 }, | ||
13255 | { 0x00000000, 0x004938ce, 0x66a }, | ||
13256 | { 0x00000001, 0x40280a20, 0x000 }, | ||
13257 | { 0x00000006, 0x40280e20, 0x000 }, | ||
13258 | { 0x00000300, 0xc0281220, 0x000 }, | ||
13259 | { 0x00000008, 0x00211224, 0x000 }, | ||
13260 | { 0x00000000, 0xc0201620, 0x000 }, | ||
13261 | { 0x00000000, 0xc0201a20, 0x000 }, | ||
13262 | { 0x00000000, 0x00210222, 0x000 }, | ||
13263 | { 0x00000000, 0x14c00000, 0x559 }, | ||
13264 | { 0x81000000, 0x00204411, 0x000 }, | ||
13265 | { 0x00000001, 0x00204811, 0x000 }, | ||
13266 | { 0x00002258, 0x00300a24, 0x000 }, | ||
13267 | { 0x00040000, 0x00694622, 0x67c }, | ||
13268 | { 0x00002169, 0x00204411, 0x000 }, | ||
13269 | { 0x00000000, 0x00204805, 0x000 }, | ||
13270 | { 0x00020000, 0x00294a26, 0x000 }, | ||
13271 | { 0x00000000, 0x00204810, 0x000 }, | ||
13272 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
13273 | { 0x00000002, 0x002f0223, 0x000 }, | ||
13274 | { 0x00000000, 0x0cc00000, 0x561 }, | ||
13275 | { 0x00000000, 0xc0201c10, 0x000 }, | ||
13276 | { 0x00000000, 0xc0400000, 0x56f }, | ||
13277 | { 0x00000002, 0x002f0223, 0x000 }, | ||
13278 | { 0x00000000, 0x0cc00000, 0x561 }, | ||
13279 | { 0x81000000, 0x00204411, 0x000 }, | ||
13280 | { 0x00000001, 0x00204811, 0x000 }, | ||
13281 | { 0x00002258, 0x00300a24, 0x000 }, | ||
13282 | { 0x00040000, 0x00694622, 0x67c }, | ||
13283 | { 0x00000000, 0xc0201c10, 0x000 }, | ||
13284 | { 0x00000000, 0xc0400000, 0x56f }, | ||
13285 | { 0x00000000, 0x002f0223, 0x000 }, | ||
13286 | { 0x00000000, 0x0cc00000, 0x565 }, | ||
13287 | { 0x00000000, 0xc0201c00, 0x000 }, | ||
13288 | { 0x00000000, 0xc0400000, 0x56f }, | ||
13289 | { 0x00000004, 0x002f0223, 0x000 }, | ||
13290 | { 0x00000000, 0x0cc00000, 0x56d }, | ||
13291 | { 0x81000000, 0x00204411, 0x000 }, | ||
13292 | { 0x00000000, 0x00204811, 0x000 }, | ||
13293 | { 0x0000216d, 0x00204411, 0x000 }, | ||
13294 | { 0x00000000, 0xc0204800, 0x000 }, | ||
13295 | { 0x00000000, 0xc0604800, 0x681 }, | ||
13296 | { 0x00000000, 0x00401c10, 0x56f }, | ||
13297 | { 0x00000000, 0xc0200000, 0x000 }, | ||
13298 | { 0x00000000, 0xc0400000, 0x000 }, | ||
13299 | { 0x00000000, 0x0ee00000, 0x571 }, | ||
13300 | { 0x00000000, 0x00600000, 0x5bc }, | ||
13301 | { 0x00000000, 0x002f0224, 0x000 }, | ||
13302 | { 0x00000000, 0x0cc00000, 0x582 }, | ||
13303 | { 0x0000a2b7, 0x00204411, 0x000 }, | ||
13304 | { 0x00000000, 0x00204807, 0x000 }, | ||
13305 | { 0x81000000, 0x00204411, 0x000 }, | ||
13306 | { 0x00000001, 0x00204811, 0x000 }, | ||
13307 | { 0x0004a2b6, 0x00604411, 0x67c }, | ||
13308 | { 0x0000001a, 0x00212230, 0x000 }, | ||
13309 | { 0x00000006, 0x00222630, 0x000 }, | ||
13310 | { 0x00042004, 0x00604411, 0x67c }, | ||
13311 | { 0x0000a2c4, 0x00204411, 0x000 }, | ||
13312 | { 0x00000000, 0x003048e9, 0x000 }, | ||
13313 | { 0x00000000, 0x00e00000, 0x580 }, | ||
13314 | { 0x0000a2d1, 0x00204411, 0x000 }, | ||
13315 | { 0x00000000, 0x00404808, 0x000 }, | ||
13316 | { 0x0000a2d1, 0x00204411, 0x000 }, | ||
13317 | { 0x00000001, 0x00504a28, 0x000 }, | ||
13318 | { 0x00000001, 0x002f0224, 0x000 }, | ||
13319 | { 0x00000000, 0x0cc00000, 0x593 }, | ||
13320 | { 0x0000a2bb, 0x00204411, 0x000 }, | ||
13321 | { 0x00000000, 0x00204807, 0x000 }, | ||
13322 | { 0x81000000, 0x00204411, 0x000 }, | ||
13323 | { 0x00000001, 0x00204811, 0x000 }, | ||
13324 | { 0x0004a2ba, 0x00604411, 0x67c }, | ||
13325 | { 0x0000001a, 0x00212230, 0x000 }, | ||
13326 | { 0x00000006, 0x00222630, 0x000 }, | ||
13327 | { 0x00042004, 0x00604411, 0x67c }, | ||
13328 | { 0x0000a2c5, 0x00204411, 0x000 }, | ||
13329 | { 0x00000000, 0x003048e9, 0x000 }, | ||
13330 | { 0x00000000, 0x00e00000, 0x591 }, | ||
13331 | { 0x0000a2d2, 0x00204411, 0x000 }, | ||
13332 | { 0x00000000, 0x00404808, 0x000 }, | ||
13333 | { 0x0000a2d2, 0x00204411, 0x000 }, | ||
13334 | { 0x00000001, 0x00504a28, 0x000 }, | ||
13335 | { 0x00000002, 0x002f0224, 0x000 }, | ||
13336 | { 0x00000000, 0x0cc00000, 0x5a4 }, | ||
13337 | { 0x0000a2bf, 0x00204411, 0x000 }, | ||
13338 | { 0x00000000, 0x00204807, 0x000 }, | ||
13339 | { 0x81000000, 0x00204411, 0x000 }, | ||
13340 | { 0x00000001, 0x00204811, 0x000 }, | ||
13341 | { 0x0004a2be, 0x00604411, 0x67c }, | ||
13342 | { 0x0000001a, 0x00212230, 0x000 }, | ||
13343 | { 0x00000006, 0x00222630, 0x000 }, | ||
13344 | { 0x00042004, 0x00604411, 0x67c }, | ||
13345 | { 0x0000a2c6, 0x00204411, 0x000 }, | ||
13346 | { 0x00000000, 0x003048e9, 0x000 }, | ||
13347 | { 0x00000000, 0x00e00000, 0x5a2 }, | ||
13348 | { 0x0000a2d3, 0x00204411, 0x000 }, | ||
13349 | { 0x00000000, 0x00404808, 0x000 }, | ||
13350 | { 0x0000a2d3, 0x00204411, 0x000 }, | ||
13351 | { 0x00000001, 0x00504a28, 0x000 }, | ||
13352 | { 0x0000a2c3, 0x00204411, 0x000 }, | ||
13353 | { 0x00000000, 0x00204807, 0x000 }, | ||
13354 | { 0x81000000, 0x00204411, 0x000 }, | ||
13355 | { 0x00000001, 0x00204811, 0x000 }, | ||
13356 | { 0x0004a2c2, 0x00604411, 0x67c }, | ||
13357 | { 0x0000001a, 0x00212230, 0x000 }, | ||
13358 | { 0x00000006, 0x00222630, 0x000 }, | ||
13359 | { 0x00042004, 0x00604411, 0x67c }, | ||
13360 | { 0x0000a2c7, 0x00204411, 0x000 }, | ||
13361 | { 0x00000000, 0x003048e9, 0x000 }, | ||
13362 | { 0x00000000, 0x00e00000, 0x5b1 }, | ||
13363 | { 0x0000a2d4, 0x00204411, 0x000 }, | ||
13364 | { 0x00000000, 0x00404808, 0x000 }, | ||
13365 | { 0x0000a2d4, 0x00204411, 0x000 }, | ||
13366 | { 0x00000001, 0x00504a28, 0x000 }, | ||
13367 | { 0x85000000, 0x00204411, 0x000 }, | ||
13368 | { 0x00000000, 0x00204801, 0x000 }, | ||
13369 | { 0x0000304a, 0x00204411, 0x000 }, | ||
13370 | { 0x01000000, 0x00204811, 0x000 }, | ||
13371 | { 0x00000000, 0x00400000, 0x5b7 }, | ||
13372 | { 0xa4000000, 0xc0204411, 0x000 }, | ||
13373 | { 0x00000000, 0xc0404800, 0x000 }, | ||
13374 | { 0x00000000, 0xc0600000, 0x5bc }, | ||
13375 | { 0x00000000, 0xc0400400, 0x001 }, | ||
13376 | { 0x0000002c, 0x00203621, 0x000 }, | ||
13377 | { 0x81000000, 0x00204411, 0x000 }, | ||
13378 | { 0x00000006, 0x00204811, 0x000 }, | ||
13379 | { 0x00000000, 0x002f0230, 0x000 }, | ||
13380 | { 0x00000000, 0x0cc00000, 0x5c3 }, | ||
13381 | { 0x00000000, 0x00200411, 0x000 }, | ||
13382 | { 0x00000030, 0x00403621, 0x5d6 }, | ||
13383 | { 0x00000030, 0x0020062d, 0x000 }, | ||
13384 | { 0x00007e00, 0x00280621, 0x000 }, | ||
13385 | { 0x00000000, 0x002f0221, 0x000 }, | ||
13386 | { 0x00000000, 0x0ce00000, 0x5d6 }, | ||
13387 | { 0x81000000, 0x00204411, 0x000 }, | ||
13388 | { 0x00000001, 0x00204811, 0x000 }, | ||
13389 | { 0x0004a092, 0x00604411, 0x67c }, | ||
13390 | { 0x00000031, 0x00203630, 0x000 }, | ||
13391 | { 0x0004a093, 0x00604411, 0x67c }, | ||
13392 | { 0x00000032, 0x00203630, 0x000 }, | ||
13393 | { 0x0004a2b6, 0x00604411, 0x67c }, | ||
13394 | { 0x00000033, 0x00203630, 0x000 }, | ||
13395 | { 0x0004a2ba, 0x00604411, 0x67c }, | ||
13396 | { 0x00000034, 0x00203630, 0x000 }, | ||
13397 | { 0x0004a2be, 0x00604411, 0x67c }, | ||
13398 | { 0x00000035, 0x00203630, 0x000 }, | ||
13399 | { 0x0004a2c2, 0x00604411, 0x67c }, | ||
13400 | { 0x00000036, 0x00203630, 0x000 }, | ||
13401 | { 0x00042004, 0x00604411, 0x67c }, | ||
13402 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
13403 | { 0x0000003f, 0x00204811, 0x000 }, | ||
13404 | { 0x0000003f, 0x00204811, 0x000 }, | ||
13405 | { 0x0000003f, 0x00204811, 0x000 }, | ||
13406 | { 0x0000003f, 0x00204811, 0x000 }, | ||
13407 | { 0x00000005, 0x00204811, 0x000 }, | ||
13408 | { 0x0000a1f4, 0x00204411, 0x000 }, | ||
13409 | { 0x00000000, 0x00204811, 0x000 }, | ||
13410 | { 0x88000000, 0x00204411, 0x000 }, | ||
13411 | { 0x00000001, 0x00204811, 0x000 }, | ||
13412 | { 0x81000000, 0x00204411, 0x000 }, | ||
13413 | { 0x00000006, 0x00204811, 0x000 }, | ||
13414 | { 0x00000001, 0x002f0230, 0x000 }, | ||
13415 | { 0x00000000, 0x0ce00000, 0x61f }, | ||
13416 | { 0x00000030, 0x0020062d, 0x000 }, | ||
13417 | { 0x00000000, 0x002f0221, 0x000 }, | ||
13418 | { 0x00000000, 0x0ce00000, 0x61f }, | ||
13419 | { 0x81000000, 0x00204411, 0x000 }, | ||
13420 | { 0x00000001, 0x00204811, 0x000 }, | ||
13421 | { 0x00007e00, 0x00280621, 0x000 }, | ||
13422 | { 0x00000000, 0x002f0221, 0x000 }, | ||
13423 | { 0x00000000, 0x0ce00000, 0x5f8 }, | ||
13424 | { 0x0000a092, 0x00204411, 0x000 }, | ||
13425 | { 0x00000031, 0x00204a2d, 0x000 }, | ||
13426 | { 0x0000a093, 0x00204411, 0x000 }, | ||
13427 | { 0x00000032, 0x00204a2d, 0x000 }, | ||
13428 | { 0x0000a2b6, 0x00204411, 0x000 }, | ||
13429 | { 0x00000033, 0x00204a2d, 0x000 }, | ||
13430 | { 0x0000a2ba, 0x00204411, 0x000 }, | ||
13431 | { 0x00000034, 0x00204a2d, 0x000 }, | ||
13432 | { 0x0000a2be, 0x00204411, 0x000 }, | ||
13433 | { 0x00000035, 0x00204a2d, 0x000 }, | ||
13434 | { 0x0000a2c2, 0x00204411, 0x000 }, | ||
13435 | { 0x00000036, 0x00204a2d, 0x000 }, | ||
13436 | { 0x00000030, 0x0020062d, 0x000 }, | ||
13437 | { 0x000001ff, 0x00280621, 0x000 }, | ||
13438 | { 0x00000000, 0x002f0221, 0x000 }, | ||
13439 | { 0x00000000, 0x0ce00000, 0x61e }, | ||
13440 | { 0x00000000, 0x00210221, 0x000 }, | ||
13441 | { 0x00000000, 0x14c00000, 0x601 }, | ||
13442 | { 0x0004a003, 0x00604411, 0x67c }, | ||
13443 | { 0x0000a003, 0x00204411, 0x000 }, | ||
13444 | { 0x00000000, 0x00204810, 0x000 }, | ||
13445 | { 0x00000001, 0x00210621, 0x000 }, | ||
13446 | { 0x00000000, 0x14c00000, 0x606 }, | ||
13447 | { 0x0004a010, 0x00604411, 0x67c }, | ||
13448 | { 0x0000a010, 0x00204411, 0x000 }, | ||
13449 | { 0x00000000, 0x00204810, 0x000 }, | ||
13450 | { 0x00000001, 0x00210621, 0x000 }, | ||
13451 | { 0x00000000, 0x002f0221, 0x000 }, | ||
13452 | { 0x00000000, 0x0ce00000, 0x61e }, | ||
13453 | { 0x0004a011, 0x00604411, 0x67c }, | ||
13454 | { 0x0000a011, 0x00204411, 0x000 }, | ||
13455 | { 0x00000000, 0x00204810, 0x000 }, | ||
13456 | { 0x0004a012, 0x00604411, 0x67c }, | ||
13457 | { 0x0000a012, 0x00204411, 0x000 }, | ||
13458 | { 0x00000000, 0x00204810, 0x000 }, | ||
13459 | { 0x0004a013, 0x00604411, 0x67c }, | ||
13460 | { 0x0000a013, 0x00204411, 0x000 }, | ||
13461 | { 0x00000000, 0x00204810, 0x000 }, | ||
13462 | { 0x0004a014, 0x00604411, 0x67c }, | ||
13463 | { 0x0000a014, 0x00204411, 0x000 }, | ||
13464 | { 0x00000000, 0x00204810, 0x000 }, | ||
13465 | { 0x0004a015, 0x00604411, 0x67c }, | ||
13466 | { 0x0000a015, 0x00204411, 0x000 }, | ||
13467 | { 0x00000000, 0x00204810, 0x000 }, | ||
13468 | { 0x0004a016, 0x00604411, 0x67c }, | ||
13469 | { 0x0000a016, 0x00204411, 0x000 }, | ||
13470 | { 0x00000000, 0x00204810, 0x000 }, | ||
13471 | { 0x0004a017, 0x00604411, 0x67c }, | ||
13472 | { 0x0000a017, 0x00204411, 0x000 }, | ||
13473 | { 0x00000000, 0x00204810, 0x000 }, | ||
13474 | { 0x00042004, 0x00604411, 0x67c }, | ||
13475 | { 0x0000002c, 0x0080062d, 0x000 }, | ||
13476 | { 0xff000000, 0x00204411, 0x000 }, | ||
13477 | { 0x00000000, 0x00204811, 0x000 }, | ||
13478 | { 0x00000001, 0x00204811, 0x000 }, | ||
13479 | { 0x00000002, 0x00804811, 0x000 }, | ||
13480 | { 0x00000000, 0x0ee00000, 0x630 }, | ||
13481 | { 0x00000030, 0x0020062d, 0x000 }, | ||
13482 | { 0x00000002, 0x00280621, 0x000 }, | ||
13483 | { 0x00000000, 0x002f0221, 0x000 }, | ||
13484 | { 0x00000000, 0x0ce00000, 0x62e }, | ||
13485 | { 0x81000000, 0x00204411, 0x000 }, | ||
13486 | { 0x00000001, 0x00204811, 0x000 }, | ||
13487 | { 0x00042004, 0x00604411, 0x67c }, | ||
13488 | { 0x00001000, 0x00200811, 0x000 }, | ||
13489 | { 0x0000002b, 0x00203622, 0x000 }, | ||
13490 | { 0x00000000, 0x00600000, 0x634 }, | ||
13491 | { 0x00000000, 0x00600000, 0x5bc }, | ||
13492 | { 0x98000000, 0x00204411, 0x000 }, | ||
13493 | { 0x00000000, 0x00804811, 0x000 }, | ||
13494 | { 0x00000000, 0xc0600000, 0x634 }, | ||
13495 | { 0x00000000, 0xc0400400, 0x001 }, | ||
13496 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
13497 | { 0x00000022, 0x00204811, 0x000 }, | ||
13498 | { 0x89000000, 0x00204411, 0x000 }, | ||
13499 | { 0x00000001, 0x00404811, 0x620 }, | ||
13500 | { 0x97000000, 0x00204411, 0x000 }, | ||
13501 | { 0x00000000, 0x00204811, 0x000 }, | ||
13502 | { 0x8a000000, 0x00204411, 0x000 }, | ||
13503 | { 0x00000000, 0x00404811, 0x620 }, | ||
13504 | { 0x00000000, 0x00600000, 0x64d }, | ||
13505 | { 0x0001a2a4, 0xc0204411, 0x000 }, | ||
13506 | { 0x00000016, 0x00604811, 0x36a }, | ||
13507 | { 0x00002010, 0x00204411, 0x000 }, | ||
13508 | { 0x00010000, 0x00204811, 0x000 }, | ||
13509 | { 0x81000000, 0x00204411, 0x000 }, | ||
13510 | { 0x00000001, 0x00204811, 0x000 }, | ||
13511 | { 0x0000217c, 0x00204411, 0x000 }, | ||
13512 | { 0x09800000, 0x00204811, 0x000 }, | ||
13513 | { 0xffffffff, 0x00204811, 0x000 }, | ||
13514 | { 0x00000000, 0x00204811, 0x000 }, | ||
13515 | { 0x00000000, 0x17000000, 0x000 }, | ||
13516 | { 0x0004217f, 0x00604411, 0x67c }, | ||
13517 | { 0x0000001f, 0x00210230, 0x000 }, | ||
13518 | { 0x00000000, 0x14c00000, 0x000 }, | ||
13519 | { 0x00000004, 0x00404c11, 0x647 }, | ||
13520 | { 0x00000000, 0x00400000, 0x000 }, | ||
13521 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
13522 | { 0x00000004, 0x00291e27, 0x000 }, | ||
13523 | { 0x00000017, 0x00803627, 0x000 }, | ||
13524 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
13525 | { 0xfffffffb, 0x00281e27, 0x000 }, | ||
13526 | { 0x00000017, 0x00803627, 0x000 }, | ||
13527 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
13528 | { 0x00000008, 0x00291e27, 0x000 }, | ||
13529 | { 0x00000017, 0x00803627, 0x000 }, | ||
13530 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
13531 | { 0xfffffff7, 0x00281e27, 0x000 }, | ||
13532 | { 0x00000017, 0x00803627, 0x000 }, | ||
13533 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
13534 | { 0x00000016, 0x00604811, 0x36a }, | ||
13535 | { 0x00002010, 0x00204411, 0x000 }, | ||
13536 | { 0x00010000, 0x00204811, 0x000 }, | ||
13537 | { 0x0000217c, 0x00204411, 0x000 }, | ||
13538 | { 0x01800000, 0x00204811, 0x000 }, | ||
13539 | { 0xffffffff, 0x00204811, 0x000 }, | ||
13540 | { 0x00000000, 0x00204811, 0x000 }, | ||
13541 | { 0x00000000, 0x17000000, 0x000 }, | ||
13542 | { 0x81000000, 0x00204411, 0x000 }, | ||
13543 | { 0x00000001, 0x00204811, 0x000 }, | ||
13544 | { 0x0004217f, 0x00604411, 0x67c }, | ||
13545 | { 0x0000001f, 0x00210230, 0x000 }, | ||
13546 | { 0x00000000, 0x14c00000, 0x67b }, | ||
13547 | { 0x00000010, 0x00404c11, 0x661 }, | ||
13548 | { 0x00000000, 0xc0200400, 0x000 }, | ||
13549 | { 0x00000000, 0x38c00000, 0x000 }, | ||
13550 | { 0x0000001d, 0x00200a2d, 0x000 }, | ||
13551 | { 0x0000001e, 0x00200e2d, 0x000 }, | ||
13552 | { 0x0000001f, 0x0020122d, 0x000 }, | ||
13553 | { 0x00000020, 0x0020162d, 0x000 }, | ||
13554 | { 0x00002169, 0x00204411, 0x000 }, | ||
13555 | { 0x00000000, 0x00204804, 0x000 }, | ||
13556 | { 0x00000000, 0x00204805, 0x000 }, | ||
13557 | { 0x00000000, 0x00204801, 0x000 }, | ||
13558 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
13559 | { 0x00000004, 0x00301224, 0x000 }, | ||
13560 | { 0x00000000, 0x002f0064, 0x000 }, | ||
13561 | { 0x00000000, 0x0cc00000, 0x67a }, | ||
13562 | { 0x00000003, 0x00281a22, 0x000 }, | ||
13563 | { 0x00000008, 0x00221222, 0x000 }, | ||
13564 | { 0xfffff000, 0x00281224, 0x000 }, | ||
13565 | { 0x00000000, 0x002910c4, 0x000 }, | ||
13566 | { 0x0000001f, 0x00403624, 0x000 }, | ||
13567 | { 0x00000000, 0x00800000, 0x000 }, | ||
13568 | { 0x00000000, 0x1ac00000, 0x67c }, | ||
13569 | { 0x9f000000, 0x00204411, 0x000 }, | ||
13570 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
13571 | { 0x00000000, 0x1ae00000, 0x67f }, | ||
13572 | { 0x00000000, 0x00800000, 0x000 }, | ||
13573 | { 0x00000000, 0x1ac00000, 0x681 }, | ||
13574 | { 0x9e000000, 0x00204411, 0x000 }, | ||
13575 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
13576 | { 0x00000000, 0x1ae00000, 0x684 }, | ||
13577 | { 0x00000000, 0x00800000, 0x000 }, | ||
13578 | { 0x00000000, 0x00600000, 0x00b }, | ||
13579 | { 0x00001000, 0x00600411, 0x315 }, | ||
13580 | { 0x00000000, 0x00200411, 0x000 }, | ||
13581 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
13582 | { 0x0000225c, 0x00204411, 0x000 }, | ||
13583 | { 0x00000003, 0x00204811, 0x000 }, | ||
13584 | { 0x00002256, 0x00204411, 0x000 }, | ||
13585 | { 0x0000001b, 0x00204811, 0x000 }, | ||
13586 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
13587 | { 0x00000001, 0x00204811, 0x000 }, | ||
13588 | { 0x0001a1fd, 0xc0204411, 0x000 }, | ||
13589 | { 0x00000021, 0x00201e2d, 0x000 }, | ||
13590 | { 0x00000010, 0x00221e27, 0x000 }, | ||
13591 | { 0x00000024, 0x0020222d, 0x000 }, | ||
13592 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
13593 | { 0x00000000, 0x00294907, 0x000 }, | ||
13594 | { 0x00000000, 0x00204811, 0x000 }, | ||
13595 | { 0x00000022, 0x0020222d, 0x000 }, | ||
13596 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
13597 | { 0x00000000, 0x00294907, 0x000 }, | ||
13598 | { 0x00000000, 0x00204811, 0x000 }, | ||
13599 | { 0x00000023, 0x00201e2d, 0x000 }, | ||
13600 | { 0x00000010, 0x00221e27, 0x000 }, | ||
13601 | { 0x00000000, 0x00294907, 0x000 }, | ||
13602 | { 0x00000000, 0x00404811, 0x000 }, | ||
13603 | { 0x00000000, 0x00000000, 0x000 }, | ||
13604 | { 0x00000000, 0x00000000, 0x000 }, | ||
13605 | { 0x00000000, 0x00000000, 0x000 }, | ||
13606 | { 0x00000000, 0x00000000, 0x000 }, | ||
13607 | { 0x00000000, 0x00000000, 0x000 }, | ||
13608 | { 0x00000000, 0x00000000, 0x000 }, | ||
13609 | { 0x00000000, 0x00000000, 0x000 }, | ||
13610 | { 0x00000000, 0x00000000, 0x000 }, | ||
13611 | { 0x00000000, 0x00000000, 0x000 }, | ||
13612 | { 0x00000000, 0x00000000, 0x000 }, | ||
13613 | { 0x00000000, 0x00000000, 0x000 }, | ||
13614 | { 0x00000000, 0x00000000, 0x000 }, | ||
13615 | { 0x00000000, 0x00000000, 0x000 }, | ||
13616 | { 0x00000000, 0x00000000, 0x000 }, | ||
13617 | { 0x00000000, 0x00000000, 0x000 }, | ||
13618 | { 0x00000000, 0x00000000, 0x000 }, | ||
13619 | { 0x00000000, 0x00000000, 0x000 }, | ||
13620 | { 0x00000000, 0x00000000, 0x000 }, | ||
13621 | { 0x00000000, 0x00000000, 0x000 }, | ||
13622 | { 0x00000000, 0x00000000, 0x000 }, | ||
13623 | { 0x00000000, 0x00000000, 0x000 }, | ||
13624 | { 0x00000000, 0x00000000, 0x000 }, | ||
13625 | { 0x00000000, 0x00000000, 0x000 }, | ||
13626 | { 0x00000000, 0x00000000, 0x000 }, | ||
13627 | { 0x00000000, 0x00000000, 0x000 }, | ||
13628 | { 0x00000000, 0x00000000, 0x000 }, | ||
13629 | { 0x00000000, 0x00000000, 0x000 }, | ||
13630 | { 0x00000000, 0x00000000, 0x000 }, | ||
13631 | { 0x00000000, 0x00000000, 0x000 }, | ||
13632 | { 0x00000000, 0x00000000, 0x000 }, | ||
13633 | { 0x00000000, 0x00000000, 0x000 }, | ||
13634 | { 0x00000000, 0x00000000, 0x000 }, | ||
13635 | { 0x00000000, 0x00000000, 0x000 }, | ||
13636 | { 0x00000000, 0x00000000, 0x000 }, | ||
13637 | { 0x00000000, 0x00000000, 0x000 }, | ||
13638 | { 0x00000000, 0x00000000, 0x000 }, | ||
13639 | { 0x00000000, 0x00000000, 0x000 }, | ||
13640 | { 0x00000000, 0x00000000, 0x000 }, | ||
13641 | { 0x00000000, 0x00000000, 0x000 }, | ||
13642 | { 0x00000000, 0x00000000, 0x000 }, | ||
13643 | { 0x00000000, 0x00000000, 0x000 }, | ||
13644 | { 0x00000000, 0x00000000, 0x000 }, | ||
13645 | { 0x00000000, 0x00000000, 0x000 }, | ||
13646 | { 0x00000000, 0x00000000, 0x000 }, | ||
13647 | { 0x00000000, 0x00000000, 0x000 }, | ||
13648 | { 0x00000000, 0x00000000, 0x000 }, | ||
13649 | { 0x00000000, 0x00000000, 0x000 }, | ||
13650 | { 0x00000000, 0x00000000, 0x000 }, | ||
13651 | { 0x00000000, 0x00000000, 0x000 }, | ||
13652 | { 0x00000000, 0x00000000, 0x000 }, | ||
13653 | { 0x00000000, 0x00000000, 0x000 }, | ||
13654 | { 0x00000000, 0x00000000, 0x000 }, | ||
13655 | { 0x00000000, 0x00000000, 0x000 }, | ||
13656 | { 0x00000000, 0x00000000, 0x000 }, | ||
13657 | { 0x00000000, 0x00000000, 0x000 }, | ||
13658 | { 0x00000000, 0x00000000, 0x000 }, | ||
13659 | { 0x00000000, 0x00000000, 0x000 }, | ||
13660 | { 0x00000000, 0x00000000, 0x000 }, | ||
13661 | { 0x00000000, 0x00000000, 0x000 }, | ||
13662 | { 0x00000000, 0x00000000, 0x000 }, | ||
13663 | { 0x00000000, 0x00000000, 0x000 }, | ||
13664 | { 0x00000000, 0x00000000, 0x000 }, | ||
13665 | { 0x00000000, 0x00000000, 0x000 }, | ||
13666 | { 0x00000000, 0x00000000, 0x000 }, | ||
13667 | { 0x00000000, 0x00000000, 0x000 }, | ||
13668 | { 0x00000000, 0x00000000, 0x000 }, | ||
13669 | { 0x00000000, 0x00000000, 0x000 }, | ||
13670 | { 0x00000000, 0x00000000, 0x000 }, | ||
13671 | { 0x00000000, 0x00000000, 0x000 }, | ||
13672 | { 0x014204f5, 0x05b30250, 0x000 }, | ||
13673 | { 0x01c30168, 0x043505b3, 0x000 }, | ||
13674 | { 0x02250209, 0x02500151, 0x000 }, | ||
13675 | { 0x02230245, 0x02a00241, 0x000 }, | ||
13676 | { 0x03cd05b3, 0x05b305b3, 0x000 }, | ||
13677 | { 0x063c063d, 0x031f05b3, 0x000 }, | ||
13678 | { 0x05b305b8, 0x03200340, 0x000 }, | ||
13679 | { 0x032a0282, 0x03420334, 0x000 }, | ||
13680 | { 0x05b305b3, 0x05b305b3, 0x000 }, | ||
13681 | { 0x05b30544, 0x05b305b3, 0x000 }, | ||
13682 | { 0x03b205b3, 0x04ae0344, 0x000 }, | ||
13683 | { 0x048d0443, 0x043305b3, 0x000 }, | ||
13684 | { 0x04c305b3, 0x043704d0, 0x000 }, | ||
13685 | { 0x044304fa, 0x03510371, 0x000 }, | ||
13686 | { 0x05b305b3, 0x05b305b3, 0x000 }, | ||
13687 | { 0x05b305b3, 0x05b305b3, 0x000 }, | ||
13688 | { 0x05b305b3, 0x063205ba, 0x000 }, | ||
13689 | { 0x05b305b3, 0x000705b3, 0x000 }, | ||
13690 | { 0x05b305b3, 0x05b305b3, 0x000 }, | ||
13691 | { 0x05b305b3, 0x05b305b3, 0x000 }, | ||
13692 | { 0x03ee03e3, 0x03fe03fc, 0x000 }, | ||
13693 | { 0x04040400, 0x04020406, 0x000 }, | ||
13694 | { 0x0412040e, 0x041a0416, 0x000 }, | ||
13695 | { 0x0422041e, 0x042a0426, 0x000 }, | ||
13696 | { 0x05b305b3, 0x042e05b3, 0x000 }, | ||
13697 | { 0x05b305b3, 0x05b305b3, 0x000 }, | ||
13698 | { 0x05b305b3, 0x05b305b3, 0x000 }, | ||
13699 | { 0x00020668, 0x06860006, 0x000 }, | ||
13700 | }; | ||
13701 | |||
13702 | static const u32 RV670_pfp_microcode[] = { | ||
13703 | 0xca0400, | ||
13704 | 0xa00000, | ||
13705 | 0x7e828b, | ||
13706 | 0x7c038b, | ||
13707 | 0x8001b8, | ||
13708 | 0x7c038b, | ||
13709 | 0xd4401e, | ||
13710 | 0xee001e, | ||
13711 | 0xca0400, | ||
13712 | 0xa00000, | ||
13713 | 0x7e828b, | ||
13714 | 0xc41838, | ||
13715 | 0xca2400, | ||
13716 | 0xca2800, | ||
13717 | 0x9581a8, | ||
13718 | 0xc41c3a, | ||
13719 | 0xc3c000, | ||
13720 | 0xca0800, | ||
13721 | 0xca0c00, | ||
13722 | 0x7c744b, | ||
13723 | 0xc20005, | ||
13724 | 0x99c000, | ||
13725 | 0xc41c3a, | ||
13726 | 0x7c744c, | ||
13727 | 0xc0fff0, | ||
13728 | 0x042c04, | ||
13729 | 0x309002, | ||
13730 | 0x7d2500, | ||
13731 | 0x351402, | ||
13732 | 0x7d350b, | ||
13733 | 0x255403, | ||
13734 | 0x7cd580, | ||
13735 | 0x259c03, | ||
13736 | 0x95c004, | ||
13737 | 0xd5001b, | ||
13738 | 0x7eddc1, | ||
13739 | 0x7d9d80, | ||
13740 | 0xd6801b, | ||
13741 | 0xd5801b, | ||
13742 | 0xd4401e, | ||
13743 | 0xd5401e, | ||
13744 | 0xd6401e, | ||
13745 | 0xd6801e, | ||
13746 | 0xd4801e, | ||
13747 | 0xd4c01e, | ||
13748 | 0x9783d3, | ||
13749 | 0xd5c01e, | ||
13750 | 0xca0800, | ||
13751 | 0x80001a, | ||
13752 | 0xca0c00, | ||
13753 | 0xe4011e, | ||
13754 | 0xd4001e, | ||
13755 | 0x80000c, | ||
13756 | 0xc41838, | ||
13757 | 0xe4013e, | ||
13758 | 0xd4001e, | ||
13759 | 0x80000c, | ||
13760 | 0xc41838, | ||
13761 | 0xd4401e, | ||
13762 | 0xee001e, | ||
13763 | 0xca0400, | ||
13764 | 0xa00000, | ||
13765 | 0x7e828b, | ||
13766 | 0xe4011e, | ||
13767 | 0xd4001e, | ||
13768 | 0xd4401e, | ||
13769 | 0xee001e, | ||
13770 | 0xca0400, | ||
13771 | 0xa00000, | ||
13772 | 0x7e828b, | ||
13773 | 0xe4013e, | ||
13774 | 0xd4001e, | ||
13775 | 0xd4401e, | ||
13776 | 0xee001e, | ||
13777 | 0xca0400, | ||
13778 | 0xa00000, | ||
13779 | 0x7e828b, | ||
13780 | 0xca1800, | ||
13781 | 0xd4401e, | ||
13782 | 0xd5801e, | ||
13783 | 0x800053, | ||
13784 | 0xd40075, | ||
13785 | 0xd4401e, | ||
13786 | 0xca0800, | ||
13787 | 0xca0c00, | ||
13788 | 0xca1000, | ||
13789 | 0xd48019, | ||
13790 | 0xd4c018, | ||
13791 | 0xd50017, | ||
13792 | 0xd4801e, | ||
13793 | 0xd4c01e, | ||
13794 | 0xd5001e, | ||
13795 | 0xe2001e, | ||
13796 | 0xca0400, | ||
13797 | 0xa00000, | ||
13798 | 0x7e828b, | ||
13799 | 0xca0800, | ||
13800 | 0xd48060, | ||
13801 | 0xd4401e, | ||
13802 | 0x800000, | ||
13803 | 0xd4801e, | ||
13804 | 0xca0800, | ||
13805 | 0xd48061, | ||
13806 | 0xd4401e, | ||
13807 | 0x800000, | ||
13808 | 0xd4801e, | ||
13809 | 0xca0800, | ||
13810 | 0xca0c00, | ||
13811 | 0xd4401e, | ||
13812 | 0xd48016, | ||
13813 | 0xd4c016, | ||
13814 | 0xd4801e, | ||
13815 | 0x8001b8, | ||
13816 | 0xd4c01e, | ||
13817 | 0xc60843, | ||
13818 | 0xca0c00, | ||
13819 | 0xca1000, | ||
13820 | 0x948004, | ||
13821 | 0xca1400, | ||
13822 | 0xe420f3, | ||
13823 | 0xd42013, | ||
13824 | 0xd56065, | ||
13825 | 0xd4e01c, | ||
13826 | 0xd5201c, | ||
13827 | 0xd5601c, | ||
13828 | 0x800000, | ||
13829 | 0x062001, | ||
13830 | 0xc60843, | ||
13831 | 0xca0c00, | ||
13832 | 0xca1000, | ||
13833 | 0x9483f7, | ||
13834 | 0xca1400, | ||
13835 | 0xe420f3, | ||
13836 | 0x800079, | ||
13837 | 0xd42013, | ||
13838 | 0xc60843, | ||
13839 | 0xca0c00, | ||
13840 | 0xca1000, | ||
13841 | 0x9883ef, | ||
13842 | 0xca1400, | ||
13843 | 0xd40064, | ||
13844 | 0x80008d, | ||
13845 | 0x000000, | ||
13846 | 0xc41432, | ||
13847 | 0xc61843, | ||
13848 | 0xc4082f, | ||
13849 | 0x954005, | ||
13850 | 0xc40c30, | ||
13851 | 0xd4401e, | ||
13852 | 0x800000, | ||
13853 | 0xee001e, | ||
13854 | 0x9583f5, | ||
13855 | 0xc41031, | ||
13856 | 0xd44033, | ||
13857 | 0xd52065, | ||
13858 | 0xd4a01c, | ||
13859 | 0xd4e01c, | ||
13860 | 0xd5201c, | ||
13861 | 0xe4015e, | ||
13862 | 0xd4001e, | ||
13863 | 0x800000, | ||
13864 | 0x062001, | ||
13865 | 0xca1800, | ||
13866 | 0x0a2001, | ||
13867 | 0xd60076, | ||
13868 | 0xc40836, | ||
13869 | 0x988007, | ||
13870 | 0xc61045, | ||
13871 | 0x950110, | ||
13872 | 0xd4001f, | ||
13873 | 0xd46062, | ||
13874 | 0x800000, | ||
13875 | 0xd42062, | ||
13876 | 0xcc3835, | ||
13877 | 0xcc1433, | ||
13878 | 0x8401bb, | ||
13879 | 0xd40072, | ||
13880 | 0xd5401e, | ||
13881 | 0x800000, | ||
13882 | 0xee001e, | ||
13883 | 0xe2001a, | ||
13884 | 0x8401bb, | ||
13885 | 0xe2001a, | ||
13886 | 0xcc104b, | ||
13887 | 0xcc0447, | ||
13888 | 0x2c9401, | ||
13889 | 0x7d098b, | ||
13890 | 0x984005, | ||
13891 | 0x7d15cb, | ||
13892 | 0xd4001a, | ||
13893 | 0x8001b8, | ||
13894 | 0xd4006d, | ||
13895 | 0x344401, | ||
13896 | 0xcc0c48, | ||
13897 | 0x98403a, | ||
13898 | 0xcc2c4a, | ||
13899 | 0x958004, | ||
13900 | 0xcc0449, | ||
13901 | 0x8001b8, | ||
13902 | 0xd4001a, | ||
13903 | 0xd4c01a, | ||
13904 | 0x282801, | ||
13905 | 0x8400f0, | ||
13906 | 0xcc1003, | ||
13907 | 0x98801b, | ||
13908 | 0x04380c, | ||
13909 | 0x8400f0, | ||
13910 | 0xcc1003, | ||
13911 | 0x988017, | ||
13912 | 0x043808, | ||
13913 | 0x8400f0, | ||
13914 | 0xcc1003, | ||
13915 | 0x988013, | ||
13916 | 0x043804, | ||
13917 | 0x8400f0, | ||
13918 | 0xcc1003, | ||
13919 | 0x988014, | ||
13920 | 0xcc104c, | ||
13921 | 0x9a8009, | ||
13922 | 0xcc144d, | ||
13923 | 0x9840dc, | ||
13924 | 0xd4006d, | ||
13925 | 0xcc1848, | ||
13926 | 0xd5001a, | ||
13927 | 0xd5401a, | ||
13928 | 0x8000c9, | ||
13929 | 0xd5801a, | ||
13930 | 0x96c0d5, | ||
13931 | 0xd4006d, | ||
13932 | 0x8001b8, | ||
13933 | 0xd4006e, | ||
13934 | 0x9ac003, | ||
13935 | 0xd4006d, | ||
13936 | 0xd4006e, | ||
13937 | 0x800000, | ||
13938 | 0xec007f, | ||
13939 | 0x9ac0cc, | ||
13940 | 0xd4006d, | ||
13941 | 0x8001b8, | ||
13942 | 0xd4006e, | ||
13943 | 0xcc1403, | ||
13944 | 0xcc1803, | ||
13945 | 0xcc1c03, | ||
13946 | 0x7d9103, | ||
13947 | 0x7dd583, | ||
13948 | 0x7d190c, | ||
13949 | 0x35cc1f, | ||
13950 | 0x35701f, | ||
13951 | 0x7cf0cb, | ||
13952 | 0x7cd08b, | ||
13953 | 0x880000, | ||
13954 | 0x7e8e8b, | ||
13955 | 0x95c004, | ||
13956 | 0xd4006e, | ||
13957 | 0x8001b8, | ||
13958 | 0xd4001a, | ||
13959 | 0xd4c01a, | ||
13960 | 0xcc0803, | ||
13961 | 0xcc0c03, | ||
13962 | 0xcc1003, | ||
13963 | 0xcc1403, | ||
13964 | 0xcc1803, | ||
13965 | 0xcc1c03, | ||
13966 | 0xcc2403, | ||
13967 | 0xcc2803, | ||
13968 | 0x35c41f, | ||
13969 | 0x36b01f, | ||
13970 | 0x7c704b, | ||
13971 | 0x34f01f, | ||
13972 | 0x7c704b, | ||
13973 | 0x35701f, | ||
13974 | 0x7c704b, | ||
13975 | 0x7d8881, | ||
13976 | 0x7dccc1, | ||
13977 | 0x7e5101, | ||
13978 | 0x7e9541, | ||
13979 | 0x7c9082, | ||
13980 | 0x7cd4c2, | ||
13981 | 0x7c848b, | ||
13982 | 0x9ac003, | ||
13983 | 0x7c8c8b, | ||
13984 | 0x2c8801, | ||
13985 | 0x98809e, | ||
13986 | 0xd4006d, | ||
13987 | 0x98409c, | ||
13988 | 0xd4006e, | ||
13989 | 0xcc084c, | ||
13990 | 0xcc0c4d, | ||
13991 | 0xcc1048, | ||
13992 | 0xd4801a, | ||
13993 | 0xd4c01a, | ||
13994 | 0x800101, | ||
13995 | 0xd5001a, | ||
13996 | 0xcc0832, | ||
13997 | 0xd40032, | ||
13998 | 0x9482d9, | ||
13999 | 0xca0c00, | ||
14000 | 0xd4401e, | ||
14001 | 0x800000, | ||
14002 | 0xd4001e, | ||
14003 | 0xe4011e, | ||
14004 | 0xd4001e, | ||
14005 | 0xca0800, | ||
14006 | 0xca0c00, | ||
14007 | 0xca1000, | ||
14008 | 0xd4401e, | ||
14009 | 0xca1400, | ||
14010 | 0xd4801e, | ||
14011 | 0xd4c01e, | ||
14012 | 0xd5001e, | ||
14013 | 0xd5401e, | ||
14014 | 0xd54034, | ||
14015 | 0x800000, | ||
14016 | 0xee001e, | ||
14017 | 0x280404, | ||
14018 | 0xe2001a, | ||
14019 | 0xe2001a, | ||
14020 | 0xd4401a, | ||
14021 | 0xca3800, | ||
14022 | 0xcc0803, | ||
14023 | 0xcc0c03, | ||
14024 | 0xcc0c03, | ||
14025 | 0xcc0c03, | ||
14026 | 0x9882bd, | ||
14027 | 0x000000, | ||
14028 | 0x8401bb, | ||
14029 | 0xd7a06f, | ||
14030 | 0x800000, | ||
14031 | 0xee001f, | ||
14032 | 0xca0400, | ||
14033 | 0xc2ff00, | ||
14034 | 0xcc0834, | ||
14035 | 0xc13fff, | ||
14036 | 0x7c74cb, | ||
14037 | 0x7cc90b, | ||
14038 | 0x7d010f, | ||
14039 | 0x9902b0, | ||
14040 | 0x7c738b, | ||
14041 | 0x8401bb, | ||
14042 | 0xd7a06f, | ||
14043 | 0x800000, | ||
14044 | 0xee001f, | ||
14045 | 0xca0800, | ||
14046 | 0x281900, | ||
14047 | 0x7d898b, | ||
14048 | 0x958014, | ||
14049 | 0x281404, | ||
14050 | 0xca0c00, | ||
14051 | 0xca1000, | ||
14052 | 0xca1c00, | ||
14053 | 0xca2400, | ||
14054 | 0xe2001f, | ||
14055 | 0xd4c01a, | ||
14056 | 0xd5001a, | ||
14057 | 0xd5401a, | ||
14058 | 0xcc1803, | ||
14059 | 0xcc2c03, | ||
14060 | 0xcc2c03, | ||
14061 | 0xcc2c03, | ||
14062 | 0x7da58b, | ||
14063 | 0x7d9c47, | ||
14064 | 0x984297, | ||
14065 | 0x000000, | ||
14066 | 0x800161, | ||
14067 | 0xd4c01a, | ||
14068 | 0xd4401e, | ||
14069 | 0xd4801e, | ||
14070 | 0x800000, | ||
14071 | 0xee001e, | ||
14072 | 0xe4011e, | ||
14073 | 0xd4001e, | ||
14074 | 0xd4401e, | ||
14075 | 0xee001e, | ||
14076 | 0xca0400, | ||
14077 | 0xa00000, | ||
14078 | 0x7e828b, | ||
14079 | 0xe4013e, | ||
14080 | 0xd4001e, | ||
14081 | 0xd4401e, | ||
14082 | 0xee001e, | ||
14083 | 0xca0400, | ||
14084 | 0xa00000, | ||
14085 | 0x7e828b, | ||
14086 | 0xca0800, | ||
14087 | 0x248c06, | ||
14088 | 0x0ccc06, | ||
14089 | 0x98c006, | ||
14090 | 0xcc104e, | ||
14091 | 0x990004, | ||
14092 | 0xd40073, | ||
14093 | 0xe4011e, | ||
14094 | 0xd4001e, | ||
14095 | 0xd4401e, | ||
14096 | 0xd4801e, | ||
14097 | 0x800000, | ||
14098 | 0xee001e, | ||
14099 | 0xca0800, | ||
14100 | 0xca0c00, | ||
14101 | 0x34d018, | ||
14102 | 0x251001, | ||
14103 | 0x950021, | ||
14104 | 0xc17fff, | ||
14105 | 0xca1000, | ||
14106 | 0xca1400, | ||
14107 | 0xca1800, | ||
14108 | 0xd4801d, | ||
14109 | 0xd4c01d, | ||
14110 | 0x7db18b, | ||
14111 | 0xc14202, | ||
14112 | 0xc2c001, | ||
14113 | 0xd5801d, | ||
14114 | 0x34dc0e, | ||
14115 | 0x7d5d4c, | ||
14116 | 0x7f734c, | ||
14117 | 0xd7401e, | ||
14118 | 0xd5001e, | ||
14119 | 0xd5401e, | ||
14120 | 0xc14200, | ||
14121 | 0xc2c000, | ||
14122 | 0x099c01, | ||
14123 | 0x31dc10, | ||
14124 | 0x7f5f4c, | ||
14125 | 0x7f734c, | ||
14126 | 0x042802, | ||
14127 | 0x7d8380, | ||
14128 | 0xd5a86f, | ||
14129 | 0xd58066, | ||
14130 | 0xd7401e, | ||
14131 | 0xec005e, | ||
14132 | 0xc82402, | ||
14133 | 0xc82402, | ||
14134 | 0x8001b8, | ||
14135 | 0xd60076, | ||
14136 | 0xd4401e, | ||
14137 | 0xd4801e, | ||
14138 | 0xd4c01e, | ||
14139 | 0x800000, | ||
14140 | 0xee001e, | ||
14141 | 0x800000, | ||
14142 | 0xee001f, | ||
14143 | 0xd4001f, | ||
14144 | 0x800000, | ||
14145 | 0xd4001f, | ||
14146 | 0xd4001f, | ||
14147 | 0x880000, | ||
14148 | 0xd4001f, | ||
14149 | 0x000000, | ||
14150 | 0x000000, | ||
14151 | 0x000000, | ||
14152 | 0x000000, | ||
14153 | 0x000000, | ||
14154 | 0x000000, | ||
14155 | 0x000000, | ||
14156 | 0x000000, | ||
14157 | 0x000000, | ||
14158 | 0x000000, | ||
14159 | 0x000000, | ||
14160 | 0x000000, | ||
14161 | 0x000000, | ||
14162 | 0x000000, | ||
14163 | 0x000000, | ||
14164 | 0x000000, | ||
14165 | 0x000000, | ||
14166 | 0x000000, | ||
14167 | 0x000000, | ||
14168 | 0x000000, | ||
14169 | 0x000000, | ||
14170 | 0x000000, | ||
14171 | 0x000000, | ||
14172 | 0x000000, | ||
14173 | 0x000000, | ||
14174 | 0x000000, | ||
14175 | 0x000000, | ||
14176 | 0x000000, | ||
14177 | 0x000000, | ||
14178 | 0x000000, | ||
14179 | 0x000000, | ||
14180 | 0x000000, | ||
14181 | 0x000000, | ||
14182 | 0x000000, | ||
14183 | 0x000000, | ||
14184 | 0x000000, | ||
14185 | 0x000000, | ||
14186 | 0x000000, | ||
14187 | 0x000000, | ||
14188 | 0x000000, | ||
14189 | 0x000000, | ||
14190 | 0x000000, | ||
14191 | 0x000000, | ||
14192 | 0x000000, | ||
14193 | 0x000000, | ||
14194 | 0x000000, | ||
14195 | 0x000000, | ||
14196 | 0x000000, | ||
14197 | 0x000000, | ||
14198 | 0x000000, | ||
14199 | 0x000000, | ||
14200 | 0x000000, | ||
14201 | 0x000000, | ||
14202 | 0x000000, | ||
14203 | 0x000000, | ||
14204 | 0x000000, | ||
14205 | 0x000000, | ||
14206 | 0x000000, | ||
14207 | 0x000000, | ||
14208 | 0x000000, | ||
14209 | 0x000000, | ||
14210 | 0x000000, | ||
14211 | 0x000000, | ||
14212 | 0x000000, | ||
14213 | 0x000000, | ||
14214 | 0x000000, | ||
14215 | 0x010171, | ||
14216 | 0x020178, | ||
14217 | 0x03008f, | ||
14218 | 0x04007f, | ||
14219 | 0x050003, | ||
14220 | 0x06003f, | ||
14221 | 0x070032, | ||
14222 | 0x08012c, | ||
14223 | 0x090046, | ||
14224 | 0x0a0036, | ||
14225 | 0x1001b6, | ||
14226 | 0x1700a2, | ||
14227 | 0x22013a, | ||
14228 | 0x230149, | ||
14229 | 0x2000b4, | ||
14230 | 0x240125, | ||
14231 | 0x27004d, | ||
14232 | 0x28006a, | ||
14233 | 0x2a0060, | ||
14234 | 0x2b0052, | ||
14235 | 0x2f0065, | ||
14236 | 0x320087, | ||
14237 | 0x34017f, | ||
14238 | 0x3c0156, | ||
14239 | 0x3f0072, | ||
14240 | 0x41018c, | ||
14241 | 0x44012e, | ||
14242 | 0x550173, | ||
14243 | 0x56017a, | ||
14244 | 0x60000b, | ||
14245 | 0x610034, | ||
14246 | 0x620038, | ||
14247 | 0x630038, | ||
14248 | 0x640038, | ||
14249 | 0x650038, | ||
14250 | 0x660038, | ||
14251 | 0x670038, | ||
14252 | 0x68003a, | ||
14253 | 0x690041, | ||
14254 | 0x6a0048, | ||
14255 | 0x6b0048, | ||
14256 | 0x6c0048, | ||
14257 | 0x6d0048, | ||
14258 | 0x6e0048, | ||
14259 | 0x6f0048, | ||
14260 | 0x000006, | ||
14261 | 0x000006, | ||
14262 | 0x000006, | ||
14263 | 0x000006, | ||
14264 | 0x000006, | ||
14265 | 0x000006, | ||
14266 | 0x000006, | ||
14267 | 0x000006, | ||
14268 | 0x000006, | ||
14269 | 0x000006, | ||
14270 | 0x000006, | ||
14271 | 0x000006, | ||
14272 | 0x000006, | ||
14273 | 0x000006, | ||
14274 | 0x000006, | ||
14275 | 0x000006, | ||
14276 | 0x000006, | ||
14277 | 0x000006, | ||
14278 | 0x000006, | ||
14279 | }; | ||
14280 | |||
14281 | static const u32 RS780_cp_microcode[][3] = { | ||
14282 | { 0x00000000, 0xc0200400, 0x000 }, | ||
14283 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
14284 | { 0x0000ffff, 0x00284621, 0x000 }, | ||
14285 | { 0x00000000, 0xd9004800, 0x000 }, | ||
14286 | { 0x00000000, 0xc0200400, 0x000 }, | ||
14287 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
14288 | { 0x00000000, 0x00e00000, 0x000 }, | ||
14289 | { 0x00010000, 0xc0294620, 0x000 }, | ||
14290 | { 0x00000000, 0xd9004800, 0x000 }, | ||
14291 | { 0x00000000, 0xc0200400, 0x000 }, | ||
14292 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
14293 | { 0x81000000, 0x00204411, 0x000 }, | ||
14294 | { 0x00000001, 0x00204811, 0x000 }, | ||
14295 | { 0x00042004, 0x00604411, 0x622 }, | ||
14296 | { 0x00000000, 0x00600000, 0x5d1 }, | ||
14297 | { 0x00000000, 0x00600000, 0x5de }, | ||
14298 | { 0x00000000, 0xc0200800, 0x000 }, | ||
14299 | { 0x00000f00, 0x00281622, 0x000 }, | ||
14300 | { 0x00000008, 0x00211625, 0x000 }, | ||
14301 | { 0x00000018, 0x00203625, 0x000 }, | ||
14302 | { 0x8d000000, 0x00204411, 0x000 }, | ||
14303 | { 0x00000004, 0x002f0225, 0x000 }, | ||
14304 | { 0x00000000, 0x0ce00000, 0x018 }, | ||
14305 | { 0x00412000, 0x00404811, 0x019 }, | ||
14306 | { 0x00422000, 0x00204811, 0x000 }, | ||
14307 | { 0x8e000000, 0x00204411, 0x000 }, | ||
14308 | { 0x00000028, 0x00204a2d, 0x000 }, | ||
14309 | { 0x90000000, 0x00204411, 0x000 }, | ||
14310 | { 0x00000000, 0x00204805, 0x000 }, | ||
14311 | { 0x0000000c, 0x00211622, 0x000 }, | ||
14312 | { 0x00000003, 0x00281625, 0x000 }, | ||
14313 | { 0x00000019, 0x00211a22, 0x000 }, | ||
14314 | { 0x00000004, 0x00281a26, 0x000 }, | ||
14315 | { 0x00000000, 0x002914c5, 0x000 }, | ||
14316 | { 0x00000019, 0x00203625, 0x000 }, | ||
14317 | { 0x00000000, 0x003a1402, 0x000 }, | ||
14318 | { 0x00000016, 0x00211625, 0x000 }, | ||
14319 | { 0x00000003, 0x00281625, 0x000 }, | ||
14320 | { 0x00000017, 0x00200e2d, 0x000 }, | ||
14321 | { 0xfffffffc, 0x00280e23, 0x000 }, | ||
14322 | { 0x00000000, 0x002914a3, 0x000 }, | ||
14323 | { 0x00000017, 0x00203625, 0x000 }, | ||
14324 | { 0x00008000, 0x00280e22, 0x000 }, | ||
14325 | { 0x00000007, 0x00220e23, 0x000 }, | ||
14326 | { 0x00000000, 0x0029386e, 0x000 }, | ||
14327 | { 0x20000000, 0x00280e22, 0x000 }, | ||
14328 | { 0x00000006, 0x00210e23, 0x000 }, | ||
14329 | { 0x00000000, 0x0029386e, 0x000 }, | ||
14330 | { 0x00000000, 0x00220222, 0x000 }, | ||
14331 | { 0x00000000, 0x14e00000, 0x038 }, | ||
14332 | { 0x00000000, 0x2ee00000, 0x035 }, | ||
14333 | { 0x00000000, 0x2ce00000, 0x037 }, | ||
14334 | { 0x00000000, 0x00400e2d, 0x039 }, | ||
14335 | { 0x00000008, 0x00200e2d, 0x000 }, | ||
14336 | { 0x00000009, 0x0040122d, 0x046 }, | ||
14337 | { 0x00000001, 0x00400e2d, 0x039 }, | ||
14338 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
14339 | { 0x003ffffc, 0x00281223, 0x000 }, | ||
14340 | { 0x00000002, 0x00221224, 0x000 }, | ||
14341 | { 0x0000001f, 0x00211e23, 0x000 }, | ||
14342 | { 0x00000000, 0x14e00000, 0x03e }, | ||
14343 | { 0x00000008, 0x00401c11, 0x041 }, | ||
14344 | { 0x0000000d, 0x00201e2d, 0x000 }, | ||
14345 | { 0x0000000f, 0x00281e27, 0x000 }, | ||
14346 | { 0x00000003, 0x00221e27, 0x000 }, | ||
14347 | { 0x7fc00000, 0x00281a23, 0x000 }, | ||
14348 | { 0x00000014, 0x00211a26, 0x000 }, | ||
14349 | { 0x00000001, 0x00331a26, 0x000 }, | ||
14350 | { 0x00000008, 0x00221a26, 0x000 }, | ||
14351 | { 0x00000000, 0x00290cc7, 0x000 }, | ||
14352 | { 0x00000027, 0x00203624, 0x000 }, | ||
14353 | { 0x00007f00, 0x00281221, 0x000 }, | ||
14354 | { 0x00001400, 0x002f0224, 0x000 }, | ||
14355 | { 0x00000000, 0x0ce00000, 0x04b }, | ||
14356 | { 0x00000001, 0x00290e23, 0x000 }, | ||
14357 | { 0x0000000e, 0x00203623, 0x000 }, | ||
14358 | { 0x0000e000, 0x00204411, 0x000 }, | ||
14359 | { 0xfff80000, 0x00294a23, 0x000 }, | ||
14360 | { 0x00000000, 0x003a2c02, 0x000 }, | ||
14361 | { 0x00000002, 0x00220e2b, 0x000 }, | ||
14362 | { 0xfc000000, 0x00280e23, 0x000 }, | ||
14363 | { 0x0000000f, 0x00203623, 0x000 }, | ||
14364 | { 0x00001fff, 0x00294a23, 0x000 }, | ||
14365 | { 0x00000027, 0x00204a2d, 0x000 }, | ||
14366 | { 0x00000000, 0x00204811, 0x000 }, | ||
14367 | { 0x00000029, 0x00200e2d, 0x000 }, | ||
14368 | { 0x060a0200, 0x00294a23, 0x000 }, | ||
14369 | { 0x00000000, 0x00204811, 0x000 }, | ||
14370 | { 0x00000000, 0x00204811, 0x000 }, | ||
14371 | { 0x00000001, 0x00210222, 0x000 }, | ||
14372 | { 0x00000000, 0x14e00000, 0x061 }, | ||
14373 | { 0x00000000, 0x2ee00000, 0x05f }, | ||
14374 | { 0x00000000, 0x2ce00000, 0x05e }, | ||
14375 | { 0x00000000, 0x00400e2d, 0x062 }, | ||
14376 | { 0x00000001, 0x00400e2d, 0x062 }, | ||
14377 | { 0x0000000a, 0x00200e2d, 0x000 }, | ||
14378 | { 0x0000000b, 0x0040122d, 0x06a }, | ||
14379 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
14380 | { 0x003ffffc, 0x00281223, 0x000 }, | ||
14381 | { 0x00000002, 0x00221224, 0x000 }, | ||
14382 | { 0x7fc00000, 0x00281623, 0x000 }, | ||
14383 | { 0x00000014, 0x00211625, 0x000 }, | ||
14384 | { 0x00000001, 0x00331625, 0x000 }, | ||
14385 | { 0x80000000, 0x00280e23, 0x000 }, | ||
14386 | { 0x00000000, 0x00290ca3, 0x000 }, | ||
14387 | { 0x3ffffc00, 0x00290e23, 0x000 }, | ||
14388 | { 0x0000001f, 0x00211e23, 0x000 }, | ||
14389 | { 0x00000000, 0x14e00000, 0x06d }, | ||
14390 | { 0x00000100, 0x00401c11, 0x070 }, | ||
14391 | { 0x0000000d, 0x00201e2d, 0x000 }, | ||
14392 | { 0x000000f0, 0x00281e27, 0x000 }, | ||
14393 | { 0x00000004, 0x00221e27, 0x000 }, | ||
14394 | { 0x81000000, 0x00204411, 0x000 }, | ||
14395 | { 0x0000000d, 0x00204811, 0x000 }, | ||
14396 | { 0xfffff0ff, 0x00281a30, 0x000 }, | ||
14397 | { 0x0000a028, 0x00204411, 0x000 }, | ||
14398 | { 0x00000000, 0x002948e6, 0x000 }, | ||
14399 | { 0x0000a018, 0x00204411, 0x000 }, | ||
14400 | { 0x3fffffff, 0x00284a23, 0x000 }, | ||
14401 | { 0x0000a010, 0x00204411, 0x000 }, | ||
14402 | { 0x00000000, 0x00204804, 0x000 }, | ||
14403 | { 0x00000030, 0x0020162d, 0x000 }, | ||
14404 | { 0x00000002, 0x00291625, 0x000 }, | ||
14405 | { 0x00000030, 0x00203625, 0x000 }, | ||
14406 | { 0x00000025, 0x0020162d, 0x000 }, | ||
14407 | { 0x00000000, 0x002f00a3, 0x000 }, | ||
14408 | { 0x00000000, 0x0cc00000, 0x083 }, | ||
14409 | { 0x00000026, 0x0020162d, 0x000 }, | ||
14410 | { 0x00000000, 0x002f00a4, 0x000 }, | ||
14411 | { 0x00000000, 0x0cc00000, 0x084 }, | ||
14412 | { 0x00000000, 0x00400000, 0x08a }, | ||
14413 | { 0x00000025, 0x00203623, 0x000 }, | ||
14414 | { 0x00000026, 0x00203624, 0x000 }, | ||
14415 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
14416 | { 0x00000002, 0x00210227, 0x000 }, | ||
14417 | { 0x00000000, 0x14e00000, 0x08a }, | ||
14418 | { 0x00000000, 0x00600000, 0x5ff }, | ||
14419 | { 0x00000000, 0x00600000, 0x5f3 }, | ||
14420 | { 0x00000002, 0x00210e22, 0x000 }, | ||
14421 | { 0x00000000, 0x14c00000, 0x08d }, | ||
14422 | { 0x00000012, 0xc0403620, 0x093 }, | ||
14423 | { 0x00000000, 0x2ee00000, 0x091 }, | ||
14424 | { 0x00000000, 0x2ce00000, 0x090 }, | ||
14425 | { 0x00000002, 0x00400e2d, 0x092 }, | ||
14426 | { 0x00000003, 0x00400e2d, 0x092 }, | ||
14427 | { 0x0000000c, 0x00200e2d, 0x000 }, | ||
14428 | { 0x00000012, 0x00203623, 0x000 }, | ||
14429 | { 0x00000003, 0x00210e22, 0x000 }, | ||
14430 | { 0x00000000, 0x14c00000, 0x098 }, | ||
14431 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
14432 | { 0x00000000, 0xc0204800, 0x000 }, | ||
14433 | { 0x00000000, 0xc0404800, 0x0a0 }, | ||
14434 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
14435 | { 0x00000000, 0x00204811, 0x000 }, | ||
14436 | { 0x00000000, 0x2ee00000, 0x09e }, | ||
14437 | { 0x00000000, 0x2ce00000, 0x09d }, | ||
14438 | { 0x00000002, 0x00400e2d, 0x09f }, | ||
14439 | { 0x00000003, 0x00400e2d, 0x09f }, | ||
14440 | { 0x0000000c, 0x00200e2d, 0x000 }, | ||
14441 | { 0x00000000, 0x00204803, 0x000 }, | ||
14442 | { 0x00000000, 0x003a0c02, 0x000 }, | ||
14443 | { 0x003f0000, 0x00280e23, 0x000 }, | ||
14444 | { 0x00000010, 0x00210e23, 0x000 }, | ||
14445 | { 0x00000011, 0x00203623, 0x000 }, | ||
14446 | { 0x0000001e, 0x0021022b, 0x000 }, | ||
14447 | { 0x00000000, 0x14c00000, 0x0a7 }, | ||
14448 | { 0x00000016, 0xc0203620, 0x000 }, | ||
14449 | { 0x0000001f, 0x0021022b, 0x000 }, | ||
14450 | { 0x00000000, 0x14c00000, 0x0aa }, | ||
14451 | { 0x00000015, 0xc0203620, 0x000 }, | ||
14452 | { 0x00000008, 0x00210e2b, 0x000 }, | ||
14453 | { 0x0000007f, 0x00280e23, 0x000 }, | ||
14454 | { 0x00000000, 0x002f0223, 0x000 }, | ||
14455 | { 0x00000000, 0x0ce00000, 0x0e1 }, | ||
14456 | { 0x00000000, 0x27000000, 0x000 }, | ||
14457 | { 0x00000000, 0x00600000, 0x2a3 }, | ||
14458 | { 0x00000001, 0x002f0223, 0x000 }, | ||
14459 | { 0x00000000, 0x0ae00000, 0x0b3 }, | ||
14460 | { 0x00000000, 0x00600000, 0x13a }, | ||
14461 | { 0x81000000, 0x00204411, 0x000 }, | ||
14462 | { 0x00000006, 0x00204811, 0x000 }, | ||
14463 | { 0x0000000c, 0x00221e30, 0x000 }, | ||
14464 | { 0x99800000, 0x00204411, 0x000 }, | ||
14465 | { 0x00000004, 0x0020122d, 0x000 }, | ||
14466 | { 0x00000008, 0x00221224, 0x000 }, | ||
14467 | { 0x00000010, 0x00201811, 0x000 }, | ||
14468 | { 0x00000000, 0x00291ce4, 0x000 }, | ||
14469 | { 0x00000000, 0x00604807, 0x12f }, | ||
14470 | { 0x9b000000, 0x00204411, 0x000 }, | ||
14471 | { 0x00000000, 0x00204802, 0x000 }, | ||
14472 | { 0x9c000000, 0x00204411, 0x000 }, | ||
14473 | { 0x00000000, 0x0033146f, 0x000 }, | ||
14474 | { 0x00000001, 0x00333e23, 0x000 }, | ||
14475 | { 0x00000000, 0xd9004800, 0x000 }, | ||
14476 | { 0x00000000, 0x00203c05, 0x000 }, | ||
14477 | { 0x81000000, 0x00204411, 0x000 }, | ||
14478 | { 0x0000000e, 0x00204811, 0x000 }, | ||
14479 | { 0x00000000, 0x00201010, 0x000 }, | ||
14480 | { 0x0000e007, 0x00204411, 0x000 }, | ||
14481 | { 0x0000000f, 0x0021022b, 0x000 }, | ||
14482 | { 0x00000000, 0x14c00000, 0x0cb }, | ||
14483 | { 0x00f8ff08, 0x00204811, 0x000 }, | ||
14484 | { 0x98000000, 0x00404811, 0x0dc }, | ||
14485 | { 0x000000f0, 0x00280e22, 0x000 }, | ||
14486 | { 0x000000a0, 0x002f0223, 0x000 }, | ||
14487 | { 0x00000000, 0x0cc00000, 0x0da }, | ||
14488 | { 0x00000011, 0x00200e2d, 0x000 }, | ||
14489 | { 0x00000001, 0x002f0223, 0x000 }, | ||
14490 | { 0x00000000, 0x0ce00000, 0x0d5 }, | ||
14491 | { 0x00000002, 0x002f0223, 0x000 }, | ||
14492 | { 0x00000000, 0x0ce00000, 0x0d4 }, | ||
14493 | { 0x00003f00, 0x00400c11, 0x0d6 }, | ||
14494 | { 0x00001f00, 0x00400c11, 0x0d6 }, | ||
14495 | { 0x00000f00, 0x00200c11, 0x000 }, | ||
14496 | { 0x00380009, 0x00294a23, 0x000 }, | ||
14497 | { 0x3f000000, 0x00280e2b, 0x000 }, | ||
14498 | { 0x00000002, 0x00220e23, 0x000 }, | ||
14499 | { 0x00000007, 0x00494a23, 0x0dc }, | ||
14500 | { 0x00380f09, 0x00204811, 0x000 }, | ||
14501 | { 0x68000007, 0x00204811, 0x000 }, | ||
14502 | { 0x00000008, 0x00214a27, 0x000 }, | ||
14503 | { 0x00000000, 0x00204811, 0x000 }, | ||
14504 | { 0x060a0200, 0x00294a24, 0x000 }, | ||
14505 | { 0x00000000, 0x00204811, 0x000 }, | ||
14506 | { 0x00000000, 0x00204811, 0x000 }, | ||
14507 | { 0x0000a202, 0x00204411, 0x000 }, | ||
14508 | { 0x00ff0000, 0x00280e22, 0x000 }, | ||
14509 | { 0x00000080, 0x00294a23, 0x000 }, | ||
14510 | { 0x00000027, 0x00200e2d, 0x000 }, | ||
14511 | { 0x00000026, 0x0020122d, 0x000 }, | ||
14512 | { 0x00000000, 0x002f0083, 0x000 }, | ||
14513 | { 0x00000000, 0x0ce00000, 0x0ea }, | ||
14514 | { 0x00000000, 0x00600000, 0x5f9 }, | ||
14515 | { 0x00000000, 0x00400000, 0x0eb }, | ||
14516 | { 0x00000000, 0x00600000, 0x5fc }, | ||
14517 | { 0x00000007, 0x0020222d, 0x000 }, | ||
14518 | { 0x00000005, 0x00220e22, 0x000 }, | ||
14519 | { 0x00100000, 0x00280e23, 0x000 }, | ||
14520 | { 0x00000000, 0x00292068, 0x000 }, | ||
14521 | { 0x00000000, 0x003a0c02, 0x000 }, | ||
14522 | { 0x000000ef, 0x00280e23, 0x000 }, | ||
14523 | { 0x00000000, 0x00292068, 0x000 }, | ||
14524 | { 0x00000017, 0x00200e2d, 0x000 }, | ||
14525 | { 0x00000003, 0x00210223, 0x000 }, | ||
14526 | { 0x00000000, 0x14e00000, 0x0f8 }, | ||
14527 | { 0x0000000b, 0x00210228, 0x000 }, | ||
14528 | { 0x00000000, 0x14c00000, 0x0f8 }, | ||
14529 | { 0x00000400, 0x00292228, 0x000 }, | ||
14530 | { 0x00000014, 0x00203628, 0x000 }, | ||
14531 | { 0x0000001c, 0x00210e22, 0x000 }, | ||
14532 | { 0x00000000, 0x14c00000, 0x0fd }, | ||
14533 | { 0x0000a30c, 0x00204411, 0x000 }, | ||
14534 | { 0x00000000, 0x00204811, 0x000 }, | ||
14535 | { 0x0000001e, 0x00210e22, 0x000 }, | ||
14536 | { 0x00000000, 0x14c00000, 0x10b }, | ||
14537 | { 0x0000a30f, 0x00204411, 0x000 }, | ||
14538 | { 0x00000011, 0x00200e2d, 0x000 }, | ||
14539 | { 0x00000001, 0x002f0223, 0x000 }, | ||
14540 | { 0x00000000, 0x0cc00000, 0x104 }, | ||
14541 | { 0xffffffff, 0x00404811, 0x10b }, | ||
14542 | { 0x00000002, 0x002f0223, 0x000 }, | ||
14543 | { 0x00000000, 0x0cc00000, 0x107 }, | ||
14544 | { 0x0000ffff, 0x00404811, 0x10b }, | ||
14545 | { 0x00000004, 0x002f0223, 0x000 }, | ||
14546 | { 0x00000000, 0x0cc00000, 0x10a }, | ||
14547 | { 0x000000ff, 0x00404811, 0x10b }, | ||
14548 | { 0x00000001, 0x00204811, 0x000 }, | ||
14549 | { 0x0002c400, 0x00204411, 0x000 }, | ||
14550 | { 0x0000001f, 0x00210e22, 0x000 }, | ||
14551 | { 0x00000000, 0x14c00000, 0x112 }, | ||
14552 | { 0x00000010, 0x40210e20, 0x000 }, | ||
14553 | { 0x00000013, 0x00203623, 0x000 }, | ||
14554 | { 0x00000018, 0x40224a20, 0x000 }, | ||
14555 | { 0x00000010, 0xc0424a20, 0x114 }, | ||
14556 | { 0x00000000, 0x00200c11, 0x000 }, | ||
14557 | { 0x00000013, 0x00203623, 0x000 }, | ||
14558 | { 0x00000000, 0x00204811, 0x000 }, | ||
14559 | { 0x00000000, 0x00204811, 0x000 }, | ||
14560 | { 0x0000000a, 0x00201011, 0x000 }, | ||
14561 | { 0x00000000, 0x002f0224, 0x000 }, | ||
14562 | { 0x00000000, 0x0ce00000, 0x11b }, | ||
14563 | { 0x00000000, 0x00204811, 0x000 }, | ||
14564 | { 0x00000001, 0x00531224, 0x117 }, | ||
14565 | { 0xffbfffff, 0x00283a2e, 0x000 }, | ||
14566 | { 0x0000001b, 0x00210222, 0x000 }, | ||
14567 | { 0x00000000, 0x14c00000, 0x12e }, | ||
14568 | { 0x81000000, 0x00204411, 0x000 }, | ||
14569 | { 0x0000000d, 0x00204811, 0x000 }, | ||
14570 | { 0x00000018, 0x00220e30, 0x000 }, | ||
14571 | { 0xfc000000, 0x00280e23, 0x000 }, | ||
14572 | { 0x81000000, 0x00204411, 0x000 }, | ||
14573 | { 0x0000000e, 0x00204811, 0x000 }, | ||
14574 | { 0x00000000, 0x00201010, 0x000 }, | ||
14575 | { 0x0000e00e, 0x00204411, 0x000 }, | ||
14576 | { 0x07f8ff08, 0x00204811, 0x000 }, | ||
14577 | { 0x00000000, 0x00294a23, 0x000 }, | ||
14578 | { 0x0000001c, 0x00201e2d, 0x000 }, | ||
14579 | { 0x00000008, 0x00214a27, 0x000 }, | ||
14580 | { 0x00000000, 0x00204811, 0x000 }, | ||
14581 | { 0x060a0200, 0x00294a24, 0x000 }, | ||
14582 | { 0x00000000, 0x00204811, 0x000 }, | ||
14583 | { 0x00000000, 0x00204811, 0x000 }, | ||
14584 | { 0x00000000, 0x00800000, 0x000 }, | ||
14585 | { 0x81000000, 0x00204411, 0x000 }, | ||
14586 | { 0x00000001, 0x00204811, 0x000 }, | ||
14587 | { 0x0000217c, 0x00204411, 0x000 }, | ||
14588 | { 0x00800000, 0x00204811, 0x000 }, | ||
14589 | { 0x00000000, 0x00204806, 0x000 }, | ||
14590 | { 0x00000008, 0x00214a27, 0x000 }, | ||
14591 | { 0x00000000, 0x17000000, 0x000 }, | ||
14592 | { 0x0004217f, 0x00604411, 0x622 }, | ||
14593 | { 0x0000001f, 0x00210230, 0x000 }, | ||
14594 | { 0x00000000, 0x14c00000, 0x621 }, | ||
14595 | { 0x00000004, 0x00404c11, 0x135 }, | ||
14596 | { 0x81000000, 0x00204411, 0x000 }, | ||
14597 | { 0x00000001, 0x00204811, 0x000 }, | ||
14598 | { 0x000021f8, 0x00204411, 0x000 }, | ||
14599 | { 0x0000001c, 0x00204811, 0x000 }, | ||
14600 | { 0x000421f9, 0x00604411, 0x622 }, | ||
14601 | { 0x00000011, 0x00210230, 0x000 }, | ||
14602 | { 0x00000000, 0x14e00000, 0x13c }, | ||
14603 | { 0x00000000, 0x00800000, 0x000 }, | ||
14604 | { 0x00000000, 0x00600000, 0x00b }, | ||
14605 | { 0x00000000, 0x00600411, 0x315 }, | ||
14606 | { 0x00000000, 0x00200411, 0x000 }, | ||
14607 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
14608 | { 0x00000000, 0x00600000, 0x160 }, | ||
14609 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
14610 | { 0x00000010, 0xc0211220, 0x000 }, | ||
14611 | { 0x0000ffff, 0x40280620, 0x000 }, | ||
14612 | { 0x00000010, 0xc0210a20, 0x000 }, | ||
14613 | { 0x00000000, 0x00341461, 0x000 }, | ||
14614 | { 0x00000000, 0x00741882, 0x2bb }, | ||
14615 | { 0x0001a1fd, 0x00604411, 0x2e0 }, | ||
14616 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
14617 | { 0x00000000, 0x0cc00000, 0x147 }, | ||
14618 | { 0x00000000, 0xc0400400, 0x001 }, | ||
14619 | { 0x00000000, 0x00600000, 0x00b }, | ||
14620 | { 0x00000000, 0x00600411, 0x315 }, | ||
14621 | { 0x00000000, 0x00200411, 0x000 }, | ||
14622 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
14623 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
14624 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
14625 | { 0x00000000, 0x00600000, 0x160 }, | ||
14626 | { 0x00000010, 0x40210e20, 0x000 }, | ||
14627 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
14628 | { 0x00000010, 0x40211620, 0x000 }, | ||
14629 | { 0x0000ffff, 0xc0681a20, 0x2bb }, | ||
14630 | { 0x0001a1fd, 0x00604411, 0x2e0 }, | ||
14631 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
14632 | { 0x00000000, 0x0cc00000, 0x158 }, | ||
14633 | { 0x00000000, 0xc0400400, 0x001 }, | ||
14634 | { 0x0000225c, 0x00204411, 0x000 }, | ||
14635 | { 0x00000001, 0x00300a2f, 0x000 }, | ||
14636 | { 0x00000001, 0x00210a22, 0x000 }, | ||
14637 | { 0x00000003, 0x00384a22, 0x000 }, | ||
14638 | { 0x00002256, 0x00204411, 0x000 }, | ||
14639 | { 0x0000001a, 0x00204811, 0x000 }, | ||
14640 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
14641 | { 0x00000001, 0x00804811, 0x000 }, | ||
14642 | { 0x00000000, 0x00600000, 0x00b }, | ||
14643 | { 0x00000000, 0x00600000, 0x18f }, | ||
14644 | { 0x00000000, 0x00600000, 0x1a0 }, | ||
14645 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
14646 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
14647 | { 0x00000000, 0x00202c08, 0x000 }, | ||
14648 | { 0x00000000, 0x00202411, 0x000 }, | ||
14649 | { 0x00000000, 0x00202811, 0x000 }, | ||
14650 | { 0x00002256, 0x00204411, 0x000 }, | ||
14651 | { 0x00000016, 0x00204811, 0x000 }, | ||
14652 | { 0x0000225c, 0x00204411, 0x000 }, | ||
14653 | { 0x00000003, 0x00204811, 0x000 }, | ||
14654 | { 0x93800000, 0x00204411, 0x000 }, | ||
14655 | { 0x00000002, 0x00221e29, 0x000 }, | ||
14656 | { 0x00000000, 0x007048eb, 0x19c }, | ||
14657 | { 0x00000000, 0x00600000, 0x2bb }, | ||
14658 | { 0x00000001, 0x40330620, 0x000 }, | ||
14659 | { 0x00000000, 0xc0302409, 0x000 }, | ||
14660 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
14661 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
14662 | { 0x00000000, 0x00600000, 0x2a3 }, | ||
14663 | { 0x00000000, 0x002f0221, 0x000 }, | ||
14664 | { 0x00000000, 0x0ae00000, 0x181 }, | ||
14665 | { 0x00000000, 0x00600000, 0x13a }, | ||
14666 | { 0x00000000, 0x00400000, 0x186 }, | ||
14667 | { 0x95000000, 0x00204411, 0x000 }, | ||
14668 | { 0x00000000, 0x002f0221, 0x000 }, | ||
14669 | { 0x00000000, 0x0ce00000, 0x186 }, | ||
14670 | { 0x00000000, 0xc0204800, 0x000 }, | ||
14671 | { 0x00000001, 0x00530621, 0x182 }, | ||
14672 | { 0x92000000, 0x00204411, 0x000 }, | ||
14673 | { 0x00000000, 0xc0604800, 0x197 }, | ||
14674 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
14675 | { 0x00000011, 0x0020062d, 0x000 }, | ||
14676 | { 0x00000000, 0x0078042a, 0x2fb }, | ||
14677 | { 0x00000000, 0x00202809, 0x000 }, | ||
14678 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
14679 | { 0x00000000, 0x0cc00000, 0x174 }, | ||
14680 | { 0x00000000, 0xc0400400, 0x001 }, | ||
14681 | { 0x00000210, 0x00600411, 0x315 }, | ||
14682 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
14683 | { 0x00000000, 0x0ce00000, 0x194 }, | ||
14684 | { 0x00000015, 0xc0203620, 0x000 }, | ||
14685 | { 0x00000016, 0xc0203620, 0x000 }, | ||
14686 | { 0x3f800000, 0x00200411, 0x000 }, | ||
14687 | { 0x46000000, 0x00600811, 0x1b2 }, | ||
14688 | { 0x00000000, 0x00800000, 0x000 }, | ||
14689 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
14690 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
14691 | { 0x00000000, 0x0cc00000, 0x19b }, | ||
14692 | { 0x00000001, 0x00804811, 0x000 }, | ||
14693 | { 0x00000021, 0x00804811, 0x000 }, | ||
14694 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
14695 | { 0x00000010, 0xc0211220, 0x000 }, | ||
14696 | { 0x0000ffff, 0x40281620, 0x000 }, | ||
14697 | { 0x00000010, 0xc0811a20, 0x000 }, | ||
14698 | { 0x81000000, 0x00204411, 0x000 }, | ||
14699 | { 0x00000006, 0x00204811, 0x000 }, | ||
14700 | { 0x00000008, 0x00221e30, 0x000 }, | ||
14701 | { 0x00000029, 0x00201a2d, 0x000 }, | ||
14702 | { 0x0000e000, 0x00204411, 0x000 }, | ||
14703 | { 0xfffbff09, 0x00204811, 0x000 }, | ||
14704 | { 0x0000000f, 0x0020222d, 0x000 }, | ||
14705 | { 0x00001fff, 0x00294a28, 0x000 }, | ||
14706 | { 0x00000006, 0x0020222d, 0x000 }, | ||
14707 | { 0x00000000, 0x002920e8, 0x000 }, | ||
14708 | { 0x00000000, 0x00204808, 0x000 }, | ||
14709 | { 0x00000000, 0x00204811, 0x000 }, | ||
14710 | { 0x060a0200, 0x00294a26, 0x000 }, | ||
14711 | { 0x00000000, 0x00204811, 0x000 }, | ||
14712 | { 0x00000000, 0x00204811, 0x000 }, | ||
14713 | { 0x00000100, 0x00201811, 0x000 }, | ||
14714 | { 0x00000008, 0x00621e28, 0x12f }, | ||
14715 | { 0x00000008, 0x00822228, 0x000 }, | ||
14716 | { 0x0002c000, 0x00204411, 0x000 }, | ||
14717 | { 0x00000015, 0x00600e2d, 0x1bd }, | ||
14718 | { 0x00000016, 0x00600e2d, 0x1bd }, | ||
14719 | { 0x0000c008, 0x00204411, 0x000 }, | ||
14720 | { 0x00000017, 0x00200e2d, 0x000 }, | ||
14721 | { 0x00000000, 0x14c00000, 0x1b9 }, | ||
14722 | { 0x00000000, 0x00200411, 0x000 }, | ||
14723 | { 0x00000000, 0x00204801, 0x000 }, | ||
14724 | { 0x39000000, 0x00204811, 0x000 }, | ||
14725 | { 0x00000000, 0x00204811, 0x000 }, | ||
14726 | { 0x00000000, 0x00804802, 0x000 }, | ||
14727 | { 0x00000018, 0x00202e2d, 0x000 }, | ||
14728 | { 0x00000000, 0x003b0d63, 0x000 }, | ||
14729 | { 0x00000008, 0x00224a23, 0x000 }, | ||
14730 | { 0x00000010, 0x00224a23, 0x000 }, | ||
14731 | { 0x00000018, 0x00224a23, 0x000 }, | ||
14732 | { 0x00000000, 0x00804803, 0x000 }, | ||
14733 | { 0x00000000, 0x00600000, 0x00b }, | ||
14734 | { 0x00001000, 0x00600411, 0x315 }, | ||
14735 | { 0x00000000, 0x00200411, 0x000 }, | ||
14736 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
14737 | { 0x00000007, 0x0021062f, 0x000 }, | ||
14738 | { 0x00000013, 0x00200a2d, 0x000 }, | ||
14739 | { 0x00000001, 0x00202c11, 0x000 }, | ||
14740 | { 0x0000ffff, 0x40282220, 0x000 }, | ||
14741 | { 0x0000000f, 0x00262228, 0x000 }, | ||
14742 | { 0x00000010, 0x40212620, 0x000 }, | ||
14743 | { 0x0000000f, 0x00262629, 0x000 }, | ||
14744 | { 0x00000000, 0x00202802, 0x000 }, | ||
14745 | { 0x00002256, 0x00204411, 0x000 }, | ||
14746 | { 0x0000001b, 0x00204811, 0x000 }, | ||
14747 | { 0x00000000, 0x002f0221, 0x000 }, | ||
14748 | { 0x00000000, 0x0ce00000, 0x1e0 }, | ||
14749 | { 0x0000225c, 0x00204411, 0x000 }, | ||
14750 | { 0x00000081, 0x00204811, 0x000 }, | ||
14751 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
14752 | { 0x00000001, 0x00204811, 0x000 }, | ||
14753 | { 0x00000080, 0x00201c11, 0x000 }, | ||
14754 | { 0x00000000, 0x002f0227, 0x000 }, | ||
14755 | { 0x00000000, 0x0ce00000, 0x1dc }, | ||
14756 | { 0x00000000, 0x00600000, 0x1e9 }, | ||
14757 | { 0x00000001, 0x00531e27, 0x1d8 }, | ||
14758 | { 0x00000001, 0x00202c11, 0x000 }, | ||
14759 | { 0x0000001f, 0x00280a22, 0x000 }, | ||
14760 | { 0x0000001f, 0x00282a2a, 0x000 }, | ||
14761 | { 0x00000001, 0x00530621, 0x1d1 }, | ||
14762 | { 0x0000225c, 0x00204411, 0x000 }, | ||
14763 | { 0x00000002, 0x00304a2f, 0x000 }, | ||
14764 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
14765 | { 0x00000001, 0x00204811, 0x000 }, | ||
14766 | { 0x00000001, 0x00301e2f, 0x000 }, | ||
14767 | { 0x00000000, 0x002f0227, 0x000 }, | ||
14768 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
14769 | { 0x00000000, 0x00600000, 0x1e9 }, | ||
14770 | { 0x00000001, 0x00531e27, 0x1e5 }, | ||
14771 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
14772 | { 0x0000000f, 0x00260e23, 0x000 }, | ||
14773 | { 0x00000010, 0xc0211220, 0x000 }, | ||
14774 | { 0x0000000f, 0x00261224, 0x000 }, | ||
14775 | { 0x00000000, 0x00201411, 0x000 }, | ||
14776 | { 0x00000000, 0x00601811, 0x2bb }, | ||
14777 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
14778 | { 0x00000000, 0x002f022b, 0x000 }, | ||
14779 | { 0x00000000, 0x0ce00000, 0x1f8 }, | ||
14780 | { 0x00000010, 0x00221628, 0x000 }, | ||
14781 | { 0xffff0000, 0x00281625, 0x000 }, | ||
14782 | { 0x0000ffff, 0x00281a29, 0x000 }, | ||
14783 | { 0x00000000, 0x002948c5, 0x000 }, | ||
14784 | { 0x00000000, 0x0020480a, 0x000 }, | ||
14785 | { 0x00000000, 0x00202c11, 0x000 }, | ||
14786 | { 0x00000010, 0x00221623, 0x000 }, | ||
14787 | { 0xffff0000, 0x00281625, 0x000 }, | ||
14788 | { 0x0000ffff, 0x00281a24, 0x000 }, | ||
14789 | { 0x00000000, 0x002948c5, 0x000 }, | ||
14790 | { 0x00000000, 0x00731503, 0x205 }, | ||
14791 | { 0x00000000, 0x00201805, 0x000 }, | ||
14792 | { 0x00000000, 0x00731524, 0x205 }, | ||
14793 | { 0x00000000, 0x002d14c5, 0x000 }, | ||
14794 | { 0x00000000, 0x003008a2, 0x000 }, | ||
14795 | { 0x00000000, 0x00204802, 0x000 }, | ||
14796 | { 0x00000000, 0x00202802, 0x000 }, | ||
14797 | { 0x00000000, 0x00202003, 0x000 }, | ||
14798 | { 0x00000000, 0x00802404, 0x000 }, | ||
14799 | { 0x0000000f, 0x00210225, 0x000 }, | ||
14800 | { 0x00000000, 0x14c00000, 0x621 }, | ||
14801 | { 0x00000000, 0x002b1405, 0x000 }, | ||
14802 | { 0x00000001, 0x00901625, 0x000 }, | ||
14803 | { 0x00000000, 0x00600000, 0x00b }, | ||
14804 | { 0x00000000, 0x00600411, 0x315 }, | ||
14805 | { 0x00000000, 0x00200411, 0x000 }, | ||
14806 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
14807 | { 0x00002256, 0x00204411, 0x000 }, | ||
14808 | { 0x0000001a, 0x00294a22, 0x000 }, | ||
14809 | { 0x00000000, 0xc0200000, 0x000 }, | ||
14810 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
14811 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
14812 | { 0x00000000, 0xc0200400, 0x000 }, | ||
14813 | { 0x0000225c, 0x00204411, 0x000 }, | ||
14814 | { 0x00000003, 0x00384a21, 0x000 }, | ||
14815 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
14816 | { 0x00000001, 0x00204811, 0x000 }, | ||
14817 | { 0x0000ffff, 0x40281220, 0x000 }, | ||
14818 | { 0x00000010, 0xc0211a20, 0x000 }, | ||
14819 | { 0x0000ffff, 0x40280e20, 0x000 }, | ||
14820 | { 0x00000010, 0xc0211620, 0x000 }, | ||
14821 | { 0x00000000, 0x00741465, 0x2bb }, | ||
14822 | { 0x0001a1fd, 0x00604411, 0x2e0 }, | ||
14823 | { 0x00000001, 0x00330621, 0x000 }, | ||
14824 | { 0x00000000, 0x002f0221, 0x000 }, | ||
14825 | { 0x00000000, 0x0cc00000, 0x219 }, | ||
14826 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
14827 | { 0x00000000, 0x0cc00000, 0x212 }, | ||
14828 | { 0x00000000, 0xc0400400, 0x001 }, | ||
14829 | { 0x00000000, 0x00600000, 0x5de }, | ||
14830 | { 0x00000000, 0x0040040f, 0x213 }, | ||
14831 | { 0x00000000, 0x00600000, 0x5d1 }, | ||
14832 | { 0x00000000, 0x00600000, 0x5de }, | ||
14833 | { 0x00000210, 0x00600411, 0x315 }, | ||
14834 | { 0x00000000, 0x00600000, 0x1a0 }, | ||
14835 | { 0x00000000, 0x00600000, 0x19c }, | ||
14836 | { 0x00000000, 0x00600000, 0x2bb }, | ||
14837 | { 0x00000000, 0x00600000, 0x2a3 }, | ||
14838 | { 0x93800000, 0x00204411, 0x000 }, | ||
14839 | { 0x00000000, 0x00204808, 0x000 }, | ||
14840 | { 0x00000000, 0x002f022f, 0x000 }, | ||
14841 | { 0x00000000, 0x0ae00000, 0x232 }, | ||
14842 | { 0x00000000, 0x00600000, 0x13a }, | ||
14843 | { 0x00000000, 0x00400000, 0x236 }, | ||
14844 | { 0x95000000, 0x00204411, 0x000 }, | ||
14845 | { 0x00000000, 0x002f022f, 0x000 }, | ||
14846 | { 0x00000000, 0x0ce00000, 0x236 }, | ||
14847 | { 0x00000000, 0xc0404800, 0x233 }, | ||
14848 | { 0x92000000, 0x00204411, 0x000 }, | ||
14849 | { 0x00000000, 0xc0204800, 0x000 }, | ||
14850 | { 0x00002256, 0x00204411, 0x000 }, | ||
14851 | { 0x00000016, 0x00204811, 0x000 }, | ||
14852 | { 0x0000225c, 0x00204411, 0x000 }, | ||
14853 | { 0x00000003, 0x00204811, 0x000 }, | ||
14854 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
14855 | { 0x00000001, 0x00204811, 0x000 }, | ||
14856 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
14857 | { 0x00000000, 0x00600411, 0x2fb }, | ||
14858 | { 0x00000000, 0xc0400400, 0x001 }, | ||
14859 | { 0x00000000, 0x00600000, 0x5d1 }, | ||
14860 | { 0x0000a00c, 0x00204411, 0x000 }, | ||
14861 | { 0x00000000, 0xc0204800, 0x000 }, | ||
14862 | { 0x00000000, 0xc0404800, 0x000 }, | ||
14863 | { 0x00000000, 0x00600000, 0x00b }, | ||
14864 | { 0x00000018, 0x40210a20, 0x000 }, | ||
14865 | { 0x00000003, 0x002f0222, 0x000 }, | ||
14866 | { 0x00000000, 0x0ae00000, 0x24c }, | ||
14867 | { 0x00000014, 0x0020222d, 0x000 }, | ||
14868 | { 0x00080101, 0x00292228, 0x000 }, | ||
14869 | { 0x00000014, 0x00203628, 0x000 }, | ||
14870 | { 0x0000a30c, 0x00204411, 0x000 }, | ||
14871 | { 0x00000000, 0xc0204800, 0x000 }, | ||
14872 | { 0x00000000, 0xc0204800, 0x000 }, | ||
14873 | { 0x00000000, 0xc0404800, 0x251 }, | ||
14874 | { 0x00000000, 0x00600000, 0x00b }, | ||
14875 | { 0x00000010, 0x00600411, 0x315 }, | ||
14876 | { 0x3f800000, 0x00200411, 0x000 }, | ||
14877 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
14878 | { 0x0000225c, 0x00204411, 0x000 }, | ||
14879 | { 0x00000003, 0x00204811, 0x000 }, | ||
14880 | { 0x00000000, 0x00600000, 0x27c }, | ||
14881 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
14882 | { 0x00000001, 0x00211e27, 0x000 }, | ||
14883 | { 0x00000000, 0x14e00000, 0x26a }, | ||
14884 | { 0x00000012, 0x00201e2d, 0x000 }, | ||
14885 | { 0x0000ffff, 0x00281e27, 0x000 }, | ||
14886 | { 0x00000000, 0x00341c27, 0x000 }, | ||
14887 | { 0x00000000, 0x12c00000, 0x25f }, | ||
14888 | { 0x00000000, 0x00201c11, 0x000 }, | ||
14889 | { 0x00000000, 0x002f00e5, 0x000 }, | ||
14890 | { 0x00000000, 0x08c00000, 0x262 }, | ||
14891 | { 0x00000000, 0x00201407, 0x000 }, | ||
14892 | { 0x00000012, 0x00201e2d, 0x000 }, | ||
14893 | { 0x00000010, 0x00211e27, 0x000 }, | ||
14894 | { 0x00000000, 0x00341c47, 0x000 }, | ||
14895 | { 0x00000000, 0x12c00000, 0x267 }, | ||
14896 | { 0x00000000, 0x00201c11, 0x000 }, | ||
14897 | { 0x00000000, 0x002f00e6, 0x000 }, | ||
14898 | { 0x00000000, 0x08c00000, 0x26a }, | ||
14899 | { 0x00000000, 0x00201807, 0x000 }, | ||
14900 | { 0x00000000, 0x00600000, 0x2c1 }, | ||
14901 | { 0x00002256, 0x00204411, 0x000 }, | ||
14902 | { 0x00000000, 0x00342023, 0x000 }, | ||
14903 | { 0x00000000, 0x12c00000, 0x272 }, | ||
14904 | { 0x00000000, 0x00342044, 0x000 }, | ||
14905 | { 0x00000000, 0x12c00000, 0x271 }, | ||
14906 | { 0x00000016, 0x00404811, 0x276 }, | ||
14907 | { 0x00000018, 0x00404811, 0x276 }, | ||
14908 | { 0x00000000, 0x00342044, 0x000 }, | ||
14909 | { 0x00000000, 0x12c00000, 0x275 }, | ||
14910 | { 0x00000017, 0x00404811, 0x276 }, | ||
14911 | { 0x00000019, 0x00204811, 0x000 }, | ||
14912 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
14913 | { 0x00000001, 0x00204811, 0x000 }, | ||
14914 | { 0x0001a1fd, 0x00604411, 0x2e9 }, | ||
14915 | { 0x00003fff, 0x002f022f, 0x000 }, | ||
14916 | { 0x00000000, 0x0cc00000, 0x256 }, | ||
14917 | { 0x00000000, 0xc0400400, 0x001 }, | ||
14918 | { 0x00000010, 0x40210620, 0x000 }, | ||
14919 | { 0x0000ffff, 0xc0280a20, 0x000 }, | ||
14920 | { 0x00000010, 0x40210e20, 0x000 }, | ||
14921 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
14922 | { 0x00000010, 0x40211620, 0x000 }, | ||
14923 | { 0x0000ffff, 0xc0881a20, 0x000 }, | ||
14924 | { 0x81000000, 0x00204411, 0x000 }, | ||
14925 | { 0x00000001, 0x00204811, 0x000 }, | ||
14926 | { 0x00042004, 0x00604411, 0x622 }, | ||
14927 | { 0x00000000, 0x00600000, 0x5d1 }, | ||
14928 | { 0x00000000, 0xc0600000, 0x2a3 }, | ||
14929 | { 0x00000005, 0x00200a2d, 0x000 }, | ||
14930 | { 0x00000008, 0x00220a22, 0x000 }, | ||
14931 | { 0x0000002b, 0x00201a2d, 0x000 }, | ||
14932 | { 0x0000001c, 0x00201e2d, 0x000 }, | ||
14933 | { 0x00007000, 0x00281e27, 0x000 }, | ||
14934 | { 0x00000000, 0x00311ce6, 0x000 }, | ||
14935 | { 0x0000002a, 0x00201a2d, 0x000 }, | ||
14936 | { 0x0000000c, 0x00221a26, 0x000 }, | ||
14937 | { 0x00000000, 0x002f00e6, 0x000 }, | ||
14938 | { 0x00000000, 0x06e00000, 0x292 }, | ||
14939 | { 0x00000000, 0x00201c11, 0x000 }, | ||
14940 | { 0x00000000, 0x00200c11, 0x000 }, | ||
14941 | { 0x0000002b, 0x00203623, 0x000 }, | ||
14942 | { 0x00000010, 0x00201811, 0x000 }, | ||
14943 | { 0x00000000, 0x00691ce2, 0x12f }, | ||
14944 | { 0x93800000, 0x00204411, 0x000 }, | ||
14945 | { 0x00000000, 0x00204807, 0x000 }, | ||
14946 | { 0x95000000, 0x00204411, 0x000 }, | ||
14947 | { 0x00000000, 0x002f022f, 0x000 }, | ||
14948 | { 0x00000000, 0x0ce00000, 0x29d }, | ||
14949 | { 0x00000001, 0x00333e2f, 0x000 }, | ||
14950 | { 0x00000000, 0xd9004800, 0x000 }, | ||
14951 | { 0x92000000, 0x00204411, 0x000 }, | ||
14952 | { 0x00000000, 0xc0204800, 0x000 }, | ||
14953 | { 0x0000001c, 0x00403627, 0x000 }, | ||
14954 | { 0x0000000c, 0xc0220a20, 0x000 }, | ||
14955 | { 0x00000029, 0x00203622, 0x000 }, | ||
14956 | { 0x00000028, 0xc0403620, 0x000 }, | ||
14957 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
14958 | { 0x00000009, 0x00204811, 0x000 }, | ||
14959 | { 0xa1000000, 0x00204411, 0x000 }, | ||
14960 | { 0x00000001, 0x00804811, 0x000 }, | ||
14961 | { 0x00000021, 0x00201e2d, 0x000 }, | ||
14962 | { 0x00000000, 0x002c1ce3, 0x000 }, | ||
14963 | { 0x00000021, 0x00203627, 0x000 }, | ||
14964 | { 0x00000022, 0x00201e2d, 0x000 }, | ||
14965 | { 0x00000000, 0x002c1ce4, 0x000 }, | ||
14966 | { 0x00000022, 0x00203627, 0x000 }, | ||
14967 | { 0x00000023, 0x00201e2d, 0x000 }, | ||
14968 | { 0x00000000, 0x003120a3, 0x000 }, | ||
14969 | { 0x00000000, 0x002d1d07, 0x000 }, | ||
14970 | { 0x00000023, 0x00203627, 0x000 }, | ||
14971 | { 0x00000024, 0x00201e2d, 0x000 }, | ||
14972 | { 0x00000000, 0x003120c4, 0x000 }, | ||
14973 | { 0x00000000, 0x002d1d07, 0x000 }, | ||
14974 | { 0x00000024, 0x00803627, 0x000 }, | ||
14975 | { 0x00000021, 0x00203623, 0x000 }, | ||
14976 | { 0x00000022, 0x00203624, 0x000 }, | ||
14977 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
14978 | { 0x00000023, 0x00203627, 0x000 }, | ||
14979 | { 0x00000000, 0x00311cc4, 0x000 }, | ||
14980 | { 0x00000024, 0x00803627, 0x000 }, | ||
14981 | { 0x0000001a, 0x00203627, 0x000 }, | ||
14982 | { 0x0000001b, 0x00203628, 0x000 }, | ||
14983 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
14984 | { 0x00000002, 0x00210227, 0x000 }, | ||
14985 | { 0x00000000, 0x14c00000, 0x2dc }, | ||
14986 | { 0x00000000, 0x00400000, 0x2d9 }, | ||
14987 | { 0x0000001a, 0x00203627, 0x000 }, | ||
14988 | { 0x0000001b, 0x00203628, 0x000 }, | ||
14989 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
14990 | { 0x00000002, 0x00210227, 0x000 }, | ||
14991 | { 0x00000000, 0x14e00000, 0x2d9 }, | ||
14992 | { 0x00000003, 0x00210227, 0x000 }, | ||
14993 | { 0x00000000, 0x14e00000, 0x2dc }, | ||
14994 | { 0x00000023, 0x00201e2d, 0x000 }, | ||
14995 | { 0x00000000, 0x002e00e1, 0x000 }, | ||
14996 | { 0x00000000, 0x02c00000, 0x2dc }, | ||
14997 | { 0x00000021, 0x00201e2d, 0x000 }, | ||
14998 | { 0x00000000, 0x003120a1, 0x000 }, | ||
14999 | { 0x00000000, 0x002e00e8, 0x000 }, | ||
15000 | { 0x00000000, 0x06c00000, 0x2dc }, | ||
15001 | { 0x00000024, 0x00201e2d, 0x000 }, | ||
15002 | { 0x00000000, 0x002e00e2, 0x000 }, | ||
15003 | { 0x00000000, 0x02c00000, 0x2dc }, | ||
15004 | { 0x00000022, 0x00201e2d, 0x000 }, | ||
15005 | { 0x00000000, 0x003120c2, 0x000 }, | ||
15006 | { 0x00000000, 0x002e00e8, 0x000 }, | ||
15007 | { 0x00000000, 0x06c00000, 0x2dc }, | ||
15008 | { 0x00000000, 0x00600000, 0x5ff }, | ||
15009 | { 0x00000000, 0x00600000, 0x2b5 }, | ||
15010 | { 0x00000000, 0x00400000, 0x2de }, | ||
15011 | { 0x00000000, 0x00600000, 0x2b5 }, | ||
15012 | { 0x00000000, 0x00600000, 0x5f6 }, | ||
15013 | { 0x00000000, 0x00400000, 0x2de }, | ||
15014 | { 0x00000000, 0x00600000, 0x2a7 }, | ||
15015 | { 0x00000000, 0x00400000, 0x2de }, | ||
15016 | { 0x0000001a, 0x00201e2d, 0x000 }, | ||
15017 | { 0x0000001b, 0x0080222d, 0x000 }, | ||
15018 | { 0x00000010, 0x00221e23, 0x000 }, | ||
15019 | { 0x00000000, 0x00294887, 0x000 }, | ||
15020 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
15021 | { 0x00000010, 0x00221e27, 0x000 }, | ||
15022 | { 0x00000000, 0x00294887, 0x000 }, | ||
15023 | { 0x00000010, 0x00221e23, 0x000 }, | ||
15024 | { 0x00000000, 0x003120c4, 0x000 }, | ||
15025 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
15026 | { 0x00000000, 0x00894907, 0x000 }, | ||
15027 | { 0x00000010, 0x00221e23, 0x000 }, | ||
15028 | { 0x00000000, 0x00294887, 0x000 }, | ||
15029 | { 0x00000010, 0x00221e21, 0x000 }, | ||
15030 | { 0x00000000, 0x00294847, 0x000 }, | ||
15031 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
15032 | { 0x00000010, 0x00221e27, 0x000 }, | ||
15033 | { 0x00000000, 0x00294887, 0x000 }, | ||
15034 | { 0x00000000, 0x00311ca1, 0x000 }, | ||
15035 | { 0x00000010, 0x00221e27, 0x000 }, | ||
15036 | { 0x00000000, 0x00294847, 0x000 }, | ||
15037 | { 0x00000010, 0x00221e23, 0x000 }, | ||
15038 | { 0x00000000, 0x003120c4, 0x000 }, | ||
15039 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
15040 | { 0x00000000, 0x00294907, 0x000 }, | ||
15041 | { 0x00000010, 0x00221e21, 0x000 }, | ||
15042 | { 0x00000000, 0x003120c2, 0x000 }, | ||
15043 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
15044 | { 0x00000000, 0x00894907, 0x000 }, | ||
15045 | { 0x00000010, 0x00221e23, 0x000 }, | ||
15046 | { 0x00000000, 0x00294887, 0x000 }, | ||
15047 | { 0x00000001, 0x00220a21, 0x000 }, | ||
15048 | { 0x00000000, 0x003308a2, 0x000 }, | ||
15049 | { 0x00000010, 0x00221e22, 0x000 }, | ||
15050 | { 0x00000010, 0x00212222, 0x000 }, | ||
15051 | { 0x00000000, 0x00294907, 0x000 }, | ||
15052 | { 0x00000000, 0x00311ca3, 0x000 }, | ||
15053 | { 0x00000010, 0x00221e27, 0x000 }, | ||
15054 | { 0x00000000, 0x00294887, 0x000 }, | ||
15055 | { 0x00000001, 0x00220a21, 0x000 }, | ||
15056 | { 0x00000000, 0x003008a2, 0x000 }, | ||
15057 | { 0x00000010, 0x00221e22, 0x000 }, | ||
15058 | { 0x00000010, 0x00212222, 0x000 }, | ||
15059 | { 0x00000000, 0x00294907, 0x000 }, | ||
15060 | { 0x00000010, 0x00221e23, 0x000 }, | ||
15061 | { 0x00000000, 0x003120c4, 0x000 }, | ||
15062 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
15063 | { 0x00000000, 0x00294907, 0x000 }, | ||
15064 | { 0x00000000, 0x003808c5, 0x000 }, | ||
15065 | { 0x00000000, 0x00300841, 0x000 }, | ||
15066 | { 0x00000001, 0x00220a22, 0x000 }, | ||
15067 | { 0x00000000, 0x003308a2, 0x000 }, | ||
15068 | { 0x00000010, 0x00221e22, 0x000 }, | ||
15069 | { 0x00000010, 0x00212222, 0x000 }, | ||
15070 | { 0x00000000, 0x00894907, 0x000 }, | ||
15071 | { 0x00000017, 0x0020222d, 0x000 }, | ||
15072 | { 0x00000000, 0x14c00000, 0x318 }, | ||
15073 | { 0xffffffef, 0x00280621, 0x000 }, | ||
15074 | { 0x00000014, 0x0020222d, 0x000 }, | ||
15075 | { 0x0000f8e0, 0x00204411, 0x000 }, | ||
15076 | { 0x00000000, 0x00294901, 0x000 }, | ||
15077 | { 0x00000000, 0x00894901, 0x000 }, | ||
15078 | { 0x00000000, 0x00204811, 0x000 }, | ||
15079 | { 0x00000000, 0x00204811, 0x000 }, | ||
15080 | { 0x060a0200, 0x00804811, 0x000 }, | ||
15081 | { 0x00000000, 0xc0200000, 0x000 }, | ||
15082 | { 0x97000000, 0xc0204411, 0x000 }, | ||
15083 | { 0x00000000, 0xc0204811, 0x000 }, | ||
15084 | { 0x8a000000, 0x00204411, 0x000 }, | ||
15085 | { 0x00000000, 0x00204811, 0x000 }, | ||
15086 | { 0x0000225c, 0x00204411, 0x000 }, | ||
15087 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15088 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
15089 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15090 | { 0x00000000, 0xc0200400, 0x000 }, | ||
15091 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
15092 | { 0x97000000, 0xc0204411, 0x000 }, | ||
15093 | { 0x00000000, 0xc0204811, 0x000 }, | ||
15094 | { 0x8a000000, 0xc0204411, 0x000 }, | ||
15095 | { 0x00000000, 0x00204811, 0x000 }, | ||
15096 | { 0x0000225c, 0x00204411, 0x000 }, | ||
15097 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15098 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
15099 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15100 | { 0x00000000, 0xc0200400, 0x000 }, | ||
15101 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
15102 | { 0x97000000, 0x00204411, 0x000 }, | ||
15103 | { 0x00000000, 0x00204811, 0x000 }, | ||
15104 | { 0x8a000000, 0x00204411, 0x000 }, | ||
15105 | { 0x00000000, 0x00204811, 0x000 }, | ||
15106 | { 0x0000225c, 0x00204411, 0x000 }, | ||
15107 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15108 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
15109 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15110 | { 0x00000000, 0xc0200400, 0x000 }, | ||
15111 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
15112 | { 0x97000000, 0x00204411, 0x000 }, | ||
15113 | { 0x00000000, 0x00204811, 0x000 }, | ||
15114 | { 0x8a000000, 0x00204411, 0x000 }, | ||
15115 | { 0x00000000, 0x00204811, 0x000 }, | ||
15116 | { 0x0000225c, 0x00204411, 0x000 }, | ||
15117 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15118 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
15119 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15120 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
15121 | { 0x00000000, 0xd9004800, 0x000 }, | ||
15122 | { 0x00000000, 0xc0200400, 0x000 }, | ||
15123 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
15124 | { 0x00002257, 0x00204411, 0x000 }, | ||
15125 | { 0x00000003, 0xc0484a20, 0x000 }, | ||
15126 | { 0x0000225d, 0x00204411, 0x000 }, | ||
15127 | { 0x00000000, 0xc0404800, 0x000 }, | ||
15128 | { 0x00000000, 0x00600000, 0x5de }, | ||
15129 | { 0x00000000, 0xc0200800, 0x000 }, | ||
15130 | { 0x0000225c, 0x00204411, 0x000 }, | ||
15131 | { 0x00000003, 0x00384a22, 0x000 }, | ||
15132 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
15133 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15134 | { 0x0001a1fd, 0x00204411, 0x000 }, | ||
15135 | { 0x00000000, 0x002f0222, 0x000 }, | ||
15136 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
15137 | { 0x00000000, 0x40204800, 0x000 }, | ||
15138 | { 0x00000001, 0x40304a20, 0x000 }, | ||
15139 | { 0x00000002, 0xc0304a20, 0x000 }, | ||
15140 | { 0x00000001, 0x00530a22, 0x355 }, | ||
15141 | { 0x0000003f, 0xc0280a20, 0x000 }, | ||
15142 | { 0x81000000, 0x00204411, 0x000 }, | ||
15143 | { 0x00000001, 0x00204811, 0x000 }, | ||
15144 | { 0x000021f8, 0x00204411, 0x000 }, | ||
15145 | { 0x00000018, 0x00204811, 0x000 }, | ||
15146 | { 0x000421f9, 0x00604411, 0x622 }, | ||
15147 | { 0x00000011, 0x00210230, 0x000 }, | ||
15148 | { 0x00000000, 0x14e00000, 0x35e }, | ||
15149 | { 0x00000014, 0x002f0222, 0x000 }, | ||
15150 | { 0x00000000, 0x0cc00000, 0x36c }, | ||
15151 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
15152 | { 0x00000000, 0x00604802, 0x374 }, | ||
15153 | { 0x00002100, 0x00204411, 0x000 }, | ||
15154 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15155 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15156 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15157 | { 0x00000000, 0xc0404800, 0x000 }, | ||
15158 | { 0x00000004, 0x002f0222, 0x000 }, | ||
15159 | { 0x00000000, 0x0cc00000, 0x370 }, | ||
15160 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
15161 | { 0x00000000, 0x00404802, 0x367 }, | ||
15162 | { 0x00000028, 0x002f0222, 0x000 }, | ||
15163 | { 0x00000000, 0x0cc00000, 0x5ba }, | ||
15164 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
15165 | { 0x00000000, 0x00404802, 0x367 }, | ||
15166 | { 0x0000002c, 0x00203626, 0x000 }, | ||
15167 | { 0x00000049, 0x00201811, 0x000 }, | ||
15168 | { 0x0000003f, 0x00204811, 0x000 }, | ||
15169 | { 0x00000001, 0x00331a26, 0x000 }, | ||
15170 | { 0x00000000, 0x002f0226, 0x000 }, | ||
15171 | { 0x00000000, 0x0cc00000, 0x376 }, | ||
15172 | { 0x0000002c, 0x00801a2d, 0x000 }, | ||
15173 | { 0x0000003f, 0xc0280a20, 0x000 }, | ||
15174 | { 0x00000015, 0x002f0222, 0x000 }, | ||
15175 | { 0x00000000, 0x0ce00000, 0x38c }, | ||
15176 | { 0x00000006, 0x002f0222, 0x000 }, | ||
15177 | { 0x00000000, 0x0ce00000, 0x3b7 }, | ||
15178 | { 0x00000016, 0x002f0222, 0x000 }, | ||
15179 | { 0x00000000, 0x0ce00000, 0x3b9 }, | ||
15180 | { 0x00000020, 0x002f0222, 0x000 }, | ||
15181 | { 0x00000000, 0x0ce00000, 0x3a2 }, | ||
15182 | { 0x0000000f, 0x002f0222, 0x000 }, | ||
15183 | { 0x00000000, 0x0ce00000, 0x3ae }, | ||
15184 | { 0x00000010, 0x002f0222, 0x000 }, | ||
15185 | { 0x00000000, 0x0ce00000, 0x3ae }, | ||
15186 | { 0x0000001e, 0x002f0222, 0x000 }, | ||
15187 | { 0x00000000, 0x0ce00000, 0x396 }, | ||
15188 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
15189 | { 0x00000000, 0x00404802, 0x000 }, | ||
15190 | { 0x08000000, 0x00290a22, 0x000 }, | ||
15191 | { 0x00000003, 0x40210e20, 0x000 }, | ||
15192 | { 0x0000000c, 0xc0211220, 0x000 }, | ||
15193 | { 0x00080000, 0x00281224, 0x000 }, | ||
15194 | { 0x00000014, 0xc0221620, 0x000 }, | ||
15195 | { 0x00000000, 0x002914a4, 0x000 }, | ||
15196 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
15197 | { 0x00000000, 0x002948a2, 0x000 }, | ||
15198 | { 0x0000a1fe, 0x00204411, 0x000 }, | ||
15199 | { 0x00000000, 0x00404803, 0x000 }, | ||
15200 | { 0x81000000, 0x00204411, 0x000 }, | ||
15201 | { 0x00000001, 0x00204811, 0x000 }, | ||
15202 | { 0x000021f8, 0x00204411, 0x000 }, | ||
15203 | { 0x00000016, 0x00204811, 0x000 }, | ||
15204 | { 0x000421f9, 0x00604411, 0x622 }, | ||
15205 | { 0x00000015, 0x00210230, 0x000 }, | ||
15206 | { 0x00000000, 0x14e00000, 0x398 }, | ||
15207 | { 0x0000210e, 0x00204411, 0x000 }, | ||
15208 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15209 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15210 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
15211 | { 0x00000000, 0x00404802, 0x000 }, | ||
15212 | { 0x81000000, 0x00204411, 0x000 }, | ||
15213 | { 0x00000001, 0x00204811, 0x000 }, | ||
15214 | { 0x000021f8, 0x00204411, 0x000 }, | ||
15215 | { 0x00000017, 0x00204811, 0x000 }, | ||
15216 | { 0x000421f9, 0x00604411, 0x622 }, | ||
15217 | { 0x00000003, 0x00210230, 0x000 }, | ||
15218 | { 0x00000000, 0x14e00000, 0x3a4 }, | ||
15219 | { 0x00002108, 0x00204411, 0x000 }, | ||
15220 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15221 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15222 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
15223 | { 0x00000000, 0x00404802, 0x000 }, | ||
15224 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
15225 | { 0x00000000, 0x00204802, 0x000 }, | ||
15226 | { 0x80000000, 0x00204411, 0x000 }, | ||
15227 | { 0x00000000, 0x00204811, 0x000 }, | ||
15228 | { 0x81000000, 0x00204411, 0x000 }, | ||
15229 | { 0x00000010, 0x00204811, 0x000 }, | ||
15230 | { 0x00000000, 0x00200010, 0x000 }, | ||
15231 | { 0x00000000, 0x14c00000, 0x3b4 }, | ||
15232 | { 0x00000000, 0x00400000, 0x000 }, | ||
15233 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
15234 | { 0x00000006, 0x00404811, 0x000 }, | ||
15235 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
15236 | { 0x00000016, 0x00604811, 0x374 }, | ||
15237 | { 0x00000000, 0x00400000, 0x000 }, | ||
15238 | { 0x00000000, 0xc0200800, 0x000 }, | ||
15239 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
15240 | { 0x0000001d, 0x00210223, 0x000 }, | ||
15241 | { 0x00000000, 0x14e00000, 0x3ce }, | ||
15242 | { 0x81000000, 0x00204411, 0x000 }, | ||
15243 | { 0x00000001, 0x00204811, 0x000 }, | ||
15244 | { 0x000021f8, 0x00204411, 0x000 }, | ||
15245 | { 0x00000018, 0x00204811, 0x000 }, | ||
15246 | { 0x000421f9, 0x00604411, 0x622 }, | ||
15247 | { 0x00000011, 0x00210230, 0x000 }, | ||
15248 | { 0x00000000, 0x14e00000, 0x3c2 }, | ||
15249 | { 0x00002100, 0x00204411, 0x000 }, | ||
15250 | { 0x00000000, 0x00204802, 0x000 }, | ||
15251 | { 0x00000000, 0x00204803, 0x000 }, | ||
15252 | { 0xbabecafe, 0x00204811, 0x000 }, | ||
15253 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
15254 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
15255 | { 0x00000004, 0x00404811, 0x000 }, | ||
15256 | { 0x00002170, 0x00204411, 0x000 }, | ||
15257 | { 0x00000000, 0x00204802, 0x000 }, | ||
15258 | { 0x00000000, 0x00204803, 0x000 }, | ||
15259 | { 0x81000000, 0x00204411, 0x000 }, | ||
15260 | { 0x0000000a, 0x00204811, 0x000 }, | ||
15261 | { 0x00000000, 0x00200010, 0x000 }, | ||
15262 | { 0x00000000, 0x14c00000, 0x3d3 }, | ||
15263 | { 0x8c000000, 0x00204411, 0x000 }, | ||
15264 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
15265 | { 0x81000000, 0x00204411, 0x000 }, | ||
15266 | { 0x00000001, 0x00204811, 0x000 }, | ||
15267 | { 0x00003fff, 0x40280a20, 0x000 }, | ||
15268 | { 0x80000000, 0x40280e20, 0x000 }, | ||
15269 | { 0x40000000, 0xc0281220, 0x000 }, | ||
15270 | { 0x00040000, 0x00694622, 0x622 }, | ||
15271 | { 0x00000000, 0x00201410, 0x000 }, | ||
15272 | { 0x00000000, 0x002f0223, 0x000 }, | ||
15273 | { 0x00000000, 0x0cc00000, 0x3e1 }, | ||
15274 | { 0x00000000, 0xc0401800, 0x3e4 }, | ||
15275 | { 0x00003fff, 0xc0281a20, 0x000 }, | ||
15276 | { 0x00040000, 0x00694626, 0x622 }, | ||
15277 | { 0x00000000, 0x00201810, 0x000 }, | ||
15278 | { 0x00000000, 0x002f0224, 0x000 }, | ||
15279 | { 0x00000000, 0x0cc00000, 0x3e7 }, | ||
15280 | { 0x00000000, 0xc0401c00, 0x3ea }, | ||
15281 | { 0x00003fff, 0xc0281e20, 0x000 }, | ||
15282 | { 0x00040000, 0x00694627, 0x622 }, | ||
15283 | { 0x00000000, 0x00201c10, 0x000 }, | ||
15284 | { 0x00000000, 0x00204402, 0x000 }, | ||
15285 | { 0x00000000, 0x002820c5, 0x000 }, | ||
15286 | { 0x00000000, 0x004948e8, 0x000 }, | ||
15287 | { 0xa5800000, 0x00200811, 0x000 }, | ||
15288 | { 0x00002000, 0x00200c11, 0x000 }, | ||
15289 | { 0x83000000, 0x00604411, 0x412 }, | ||
15290 | { 0x00000000, 0x00204402, 0x000 }, | ||
15291 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15292 | { 0x00000000, 0x40204800, 0x000 }, | ||
15293 | { 0x0000001f, 0xc0210220, 0x000 }, | ||
15294 | { 0x00000000, 0x14c00000, 0x3f7 }, | ||
15295 | { 0x00002010, 0x00204411, 0x000 }, | ||
15296 | { 0x00008000, 0x00204811, 0x000 }, | ||
15297 | { 0x0000ffff, 0xc0481220, 0x3ff }, | ||
15298 | { 0xa7800000, 0x00200811, 0x000 }, | ||
15299 | { 0x0000a000, 0x00200c11, 0x000 }, | ||
15300 | { 0x83000000, 0x00604411, 0x412 }, | ||
15301 | { 0x00000000, 0x00204402, 0x000 }, | ||
15302 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15303 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15304 | { 0x0000ffff, 0xc0281220, 0x000 }, | ||
15305 | { 0x83000000, 0x00204411, 0x000 }, | ||
15306 | { 0x00000000, 0x00304883, 0x000 }, | ||
15307 | { 0x84000000, 0x00204411, 0x000 }, | ||
15308 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15309 | { 0x00000000, 0x1d000000, 0x000 }, | ||
15310 | { 0x83000000, 0x00604411, 0x412 }, | ||
15311 | { 0x00000000, 0xc0400400, 0x001 }, | ||
15312 | { 0xa9800000, 0x00200811, 0x000 }, | ||
15313 | { 0x0000c000, 0x00400c11, 0x3fa }, | ||
15314 | { 0xab800000, 0x00200811, 0x000 }, | ||
15315 | { 0x0000f8e0, 0x00400c11, 0x3fa }, | ||
15316 | { 0xad800000, 0x00200811, 0x000 }, | ||
15317 | { 0x0000f880, 0x00400c11, 0x3fa }, | ||
15318 | { 0xb3800000, 0x00200811, 0x000 }, | ||
15319 | { 0x0000f3fc, 0x00400c11, 0x3fa }, | ||
15320 | { 0xaf800000, 0x00200811, 0x000 }, | ||
15321 | { 0x0000e000, 0x00400c11, 0x3fa }, | ||
15322 | { 0xb1800000, 0x00200811, 0x000 }, | ||
15323 | { 0x0000f000, 0x00400c11, 0x3fa }, | ||
15324 | { 0x83000000, 0x00204411, 0x000 }, | ||
15325 | { 0x00002148, 0x00204811, 0x000 }, | ||
15326 | { 0x84000000, 0x00204411, 0x000 }, | ||
15327 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15328 | { 0x00000000, 0x1d000000, 0x000 }, | ||
15329 | { 0x00000000, 0x00800000, 0x000 }, | ||
15330 | { 0x01182000, 0xc0304620, 0x000 }, | ||
15331 | { 0x00000000, 0xd9004800, 0x000 }, | ||
15332 | { 0x00000000, 0xc0200400, 0x000 }, | ||
15333 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
15334 | { 0x0218a000, 0xc0304620, 0x000 }, | ||
15335 | { 0x00000000, 0xd9004800, 0x000 }, | ||
15336 | { 0x00000000, 0xc0200400, 0x000 }, | ||
15337 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
15338 | { 0x0318c000, 0xc0304620, 0x000 }, | ||
15339 | { 0x00000000, 0xd9004800, 0x000 }, | ||
15340 | { 0x00000000, 0xc0200400, 0x000 }, | ||
15341 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
15342 | { 0x0418f8e0, 0xc0304620, 0x000 }, | ||
15343 | { 0x00000000, 0xd9004800, 0x000 }, | ||
15344 | { 0x00000000, 0xc0200400, 0x000 }, | ||
15345 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
15346 | { 0x0518f880, 0xc0304620, 0x000 }, | ||
15347 | { 0x00000000, 0xd9004800, 0x000 }, | ||
15348 | { 0x00000000, 0xc0200400, 0x000 }, | ||
15349 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
15350 | { 0x0618e000, 0xc0304620, 0x000 }, | ||
15351 | { 0x00000000, 0xd9004800, 0x000 }, | ||
15352 | { 0x00000000, 0xc0200400, 0x000 }, | ||
15353 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
15354 | { 0x0718f000, 0xc0304620, 0x000 }, | ||
15355 | { 0x00000000, 0xd9004800, 0x000 }, | ||
15356 | { 0x00000000, 0xc0200400, 0x000 }, | ||
15357 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
15358 | { 0x0818f3fc, 0xc0304620, 0x000 }, | ||
15359 | { 0x00000000, 0xd9004800, 0x000 }, | ||
15360 | { 0x00000000, 0xc0200400, 0x000 }, | ||
15361 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
15362 | { 0x00000033, 0xc0300a20, 0x000 }, | ||
15363 | { 0x00000000, 0xc0403440, 0x000 }, | ||
15364 | { 0x00000030, 0x00200a2d, 0x000 }, | ||
15365 | { 0x00000000, 0xc0290c40, 0x000 }, | ||
15366 | { 0x00000030, 0x00203623, 0x000 }, | ||
15367 | { 0x00000000, 0xc0200400, 0x000 }, | ||
15368 | { 0x00000000, 0x00a0000a, 0x000 }, | ||
15369 | { 0x86000000, 0x00204411, 0x000 }, | ||
15370 | { 0x00000000, 0x00404801, 0x000 }, | ||
15371 | { 0x85000000, 0xc0204411, 0x000 }, | ||
15372 | { 0x00000000, 0x00404801, 0x000 }, | ||
15373 | { 0x0000217c, 0x00204411, 0x000 }, | ||
15374 | { 0x00000018, 0x40210220, 0x000 }, | ||
15375 | { 0x00000000, 0x14c00000, 0x447 }, | ||
15376 | { 0x00800000, 0xc0494a20, 0x448 }, | ||
15377 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15378 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15379 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15380 | { 0x81000000, 0x00204411, 0x000 }, | ||
15381 | { 0x00000001, 0x00204811, 0x000 }, | ||
15382 | { 0x00000000, 0xc0200800, 0x000 }, | ||
15383 | { 0x00000004, 0x002f0222, 0x000 }, | ||
15384 | { 0x00000000, 0x06e00000, 0x450 }, | ||
15385 | { 0x00000004, 0x00200811, 0x000 }, | ||
15386 | { 0x00000000, 0x17000000, 0x000 }, | ||
15387 | { 0x0004217f, 0x00604411, 0x622 }, | ||
15388 | { 0x0000001f, 0x00210230, 0x000 }, | ||
15389 | { 0x00000000, 0x14c00000, 0x000 }, | ||
15390 | { 0x00000000, 0x00404c02, 0x450 }, | ||
15391 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
15392 | { 0x00000000, 0xc0201000, 0x000 }, | ||
15393 | { 0x00000000, 0xc0201400, 0x000 }, | ||
15394 | { 0x00000000, 0xc0201800, 0x000 }, | ||
15395 | { 0x00000000, 0xc0201c00, 0x000 }, | ||
15396 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
15397 | { 0x00004500, 0x002f0222, 0x000 }, | ||
15398 | { 0x00000000, 0x0ce00000, 0x461 }, | ||
15399 | { 0x00000000, 0xc0202000, 0x000 }, | ||
15400 | { 0x00000004, 0x002f0228, 0x000 }, | ||
15401 | { 0x00000000, 0x06e00000, 0x461 }, | ||
15402 | { 0x00000004, 0x00202011, 0x000 }, | ||
15403 | { 0x00000000, 0x17000000, 0x000 }, | ||
15404 | { 0x00000010, 0x00280a23, 0x000 }, | ||
15405 | { 0x00000010, 0x002f0222, 0x000 }, | ||
15406 | { 0x00000000, 0x0ce00000, 0x469 }, | ||
15407 | { 0x81000000, 0x00204411, 0x000 }, | ||
15408 | { 0x00000001, 0x00204811, 0x000 }, | ||
15409 | { 0x00040000, 0x00694624, 0x622 }, | ||
15410 | { 0x00000000, 0x00400000, 0x46e }, | ||
15411 | { 0x81000000, 0x00204411, 0x000 }, | ||
15412 | { 0x00000000, 0x00204811, 0x000 }, | ||
15413 | { 0x0000216d, 0x00204411, 0x000 }, | ||
15414 | { 0x00000000, 0x00204804, 0x000 }, | ||
15415 | { 0x00000000, 0x00604805, 0x627 }, | ||
15416 | { 0x00000000, 0x002824f0, 0x000 }, | ||
15417 | { 0x00000007, 0x00280a23, 0x000 }, | ||
15418 | { 0x00000001, 0x002f0222, 0x000 }, | ||
15419 | { 0x00000000, 0x0ae00000, 0x475 }, | ||
15420 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
15421 | { 0x00000000, 0x04e00000, 0x48e }, | ||
15422 | { 0x00000000, 0x00400000, 0x49b }, | ||
15423 | { 0x00000002, 0x002f0222, 0x000 }, | ||
15424 | { 0x00000000, 0x0ae00000, 0x47a }, | ||
15425 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
15426 | { 0x00000000, 0x02e00000, 0x48e }, | ||
15427 | { 0x00000000, 0x00400000, 0x49b }, | ||
15428 | { 0x00000003, 0x002f0222, 0x000 }, | ||
15429 | { 0x00000000, 0x0ae00000, 0x47f }, | ||
15430 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
15431 | { 0x00000000, 0x0ce00000, 0x48e }, | ||
15432 | { 0x00000000, 0x00400000, 0x49b }, | ||
15433 | { 0x00000004, 0x002f0222, 0x000 }, | ||
15434 | { 0x00000000, 0x0ae00000, 0x484 }, | ||
15435 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
15436 | { 0x00000000, 0x0ae00000, 0x48e }, | ||
15437 | { 0x00000000, 0x00400000, 0x49b }, | ||
15438 | { 0x00000005, 0x002f0222, 0x000 }, | ||
15439 | { 0x00000000, 0x0ae00000, 0x489 }, | ||
15440 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
15441 | { 0x00000000, 0x06e00000, 0x48e }, | ||
15442 | { 0x00000000, 0x00400000, 0x49b }, | ||
15443 | { 0x00000006, 0x002f0222, 0x000 }, | ||
15444 | { 0x00000000, 0x0ae00000, 0x48e }, | ||
15445 | { 0x00000000, 0x002f00c9, 0x000 }, | ||
15446 | { 0x00000000, 0x08e00000, 0x48e }, | ||
15447 | { 0x00000000, 0x00400000, 0x49b }, | ||
15448 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
15449 | { 0x00004500, 0x002f0222, 0x000 }, | ||
15450 | { 0x00000000, 0x0ae00000, 0x000 }, | ||
15451 | { 0x00000008, 0x00210a23, 0x000 }, | ||
15452 | { 0x00000000, 0x14c00000, 0x498 }, | ||
15453 | { 0x00002169, 0x00204411, 0x000 }, | ||
15454 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15455 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15456 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15457 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
15458 | { 0x00000000, 0xc0204400, 0x000 }, | ||
15459 | { 0x00000000, 0xc0200000, 0x000 }, | ||
15460 | { 0x00000000, 0xc0404800, 0x000 }, | ||
15461 | { 0x00007f00, 0x00280a21, 0x000 }, | ||
15462 | { 0x00004500, 0x002f0222, 0x000 }, | ||
15463 | { 0x00000000, 0x0ae00000, 0x4a1 }, | ||
15464 | { 0x00000000, 0xc0200000, 0x000 }, | ||
15465 | { 0x00000000, 0xc0200000, 0x000 }, | ||
15466 | { 0x00000000, 0xc0400000, 0x000 }, | ||
15467 | { 0x00000000, 0x00404c08, 0x461 }, | ||
15468 | { 0x00000000, 0xc0200800, 0x000 }, | ||
15469 | { 0x00000010, 0x40210e20, 0x000 }, | ||
15470 | { 0x00000011, 0x40211220, 0x000 }, | ||
15471 | { 0x00000012, 0x40211620, 0x000 }, | ||
15472 | { 0x00002169, 0x00204411, 0x000 }, | ||
15473 | { 0x00000000, 0x00204802, 0x000 }, | ||
15474 | { 0x00000000, 0x00210225, 0x000 }, | ||
15475 | { 0x00000000, 0x14e00000, 0x4ab }, | ||
15476 | { 0x00040000, 0xc0494a20, 0x4ac }, | ||
15477 | { 0xfffbffff, 0xc0284a20, 0x000 }, | ||
15478 | { 0x00000000, 0x00210223, 0x000 }, | ||
15479 | { 0x00000000, 0x14e00000, 0x4b8 }, | ||
15480 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15481 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15482 | { 0x00000000, 0x00210224, 0x000 }, | ||
15483 | { 0x00000000, 0x14c00000, 0x000 }, | ||
15484 | { 0x81000000, 0x00204411, 0x000 }, | ||
15485 | { 0x0000000c, 0x00204811, 0x000 }, | ||
15486 | { 0x00000000, 0x00200010, 0x000 }, | ||
15487 | { 0x00000000, 0x14c00000, 0x4b4 }, | ||
15488 | { 0xa0000000, 0x00204411, 0x000 }, | ||
15489 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
15490 | { 0x81000000, 0x00204411, 0x000 }, | ||
15491 | { 0x00000004, 0x00204811, 0x000 }, | ||
15492 | { 0x0000216b, 0x00204411, 0x000 }, | ||
15493 | { 0x00000000, 0xc0204810, 0x000 }, | ||
15494 | { 0x81000000, 0x00204411, 0x000 }, | ||
15495 | { 0x00000005, 0x00204811, 0x000 }, | ||
15496 | { 0x0000216c, 0x00204411, 0x000 }, | ||
15497 | { 0x00000000, 0xc0204810, 0x000 }, | ||
15498 | { 0x00000000, 0x002f0224, 0x000 }, | ||
15499 | { 0x00000000, 0x0ce00000, 0x000 }, | ||
15500 | { 0x00000000, 0x00400000, 0x4b2 }, | ||
15501 | { 0x00000000, 0xc0210a20, 0x000 }, | ||
15502 | { 0x00000000, 0x14c00000, 0x4cb }, | ||
15503 | { 0x81000000, 0x00204411, 0x000 }, | ||
15504 | { 0x00000000, 0x00204811, 0x000 }, | ||
15505 | { 0x0000216d, 0x00204411, 0x000 }, | ||
15506 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15507 | { 0x00000000, 0xc0604800, 0x627 }, | ||
15508 | { 0x00000000, 0x00400000, 0x4cf }, | ||
15509 | { 0x81000000, 0x00204411, 0x000 }, | ||
15510 | { 0x00000001, 0x00204811, 0x000 }, | ||
15511 | { 0x00040000, 0xc0294620, 0x000 }, | ||
15512 | { 0x00000000, 0xc0600000, 0x622 }, | ||
15513 | { 0x00000001, 0x00210222, 0x000 }, | ||
15514 | { 0x00000000, 0x14c00000, 0x4d6 }, | ||
15515 | { 0x00002169, 0x00204411, 0x000 }, | ||
15516 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15517 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15518 | { 0x00000000, 0x00204810, 0x000 }, | ||
15519 | { 0xcafebabe, 0x00404811, 0x000 }, | ||
15520 | { 0x00000000, 0xc0204400, 0x000 }, | ||
15521 | { 0x00000000, 0xc0404810, 0x000 }, | ||
15522 | { 0x81000000, 0x00204411, 0x000 }, | ||
15523 | { 0x00000001, 0x00204811, 0x000 }, | ||
15524 | { 0x000021f8, 0x00204411, 0x000 }, | ||
15525 | { 0x0000000e, 0x00204811, 0x000 }, | ||
15526 | { 0x000421f9, 0x00604411, 0x622 }, | ||
15527 | { 0x00000000, 0x00210230, 0x000 }, | ||
15528 | { 0x00000000, 0x14c00000, 0x4d8 }, | ||
15529 | { 0x00002180, 0x00204411, 0x000 }, | ||
15530 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15531 | { 0x00000000, 0xc0200000, 0x000 }, | ||
15532 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15533 | { 0x00000000, 0xc0200000, 0x000 }, | ||
15534 | { 0x00000000, 0xc0404800, 0x000 }, | ||
15535 | { 0x00000003, 0x00333e2f, 0x000 }, | ||
15536 | { 0x00000001, 0x00210221, 0x000 }, | ||
15537 | { 0x00000000, 0x14e00000, 0x508 }, | ||
15538 | { 0x0000002c, 0x00200a2d, 0x000 }, | ||
15539 | { 0x00040000, 0x18e00c11, 0x4f7 }, | ||
15540 | { 0x00000001, 0x00333e2f, 0x000 }, | ||
15541 | { 0x00002169, 0x00204411, 0x000 }, | ||
15542 | { 0x00000000, 0x00204802, 0x000 }, | ||
15543 | { 0x00000000, 0x00204803, 0x000 }, | ||
15544 | { 0x00000008, 0x00300a22, 0x000 }, | ||
15545 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15546 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15547 | { 0x00002169, 0x00204411, 0x000 }, | ||
15548 | { 0x00000000, 0x00204802, 0x000 }, | ||
15549 | { 0x00000000, 0x00204803, 0x000 }, | ||
15550 | { 0x00000008, 0x00300a22, 0x000 }, | ||
15551 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15552 | { 0x00000000, 0xd8c04800, 0x4eb }, | ||
15553 | { 0x00002169, 0x00204411, 0x000 }, | ||
15554 | { 0x00000000, 0x00204802, 0x000 }, | ||
15555 | { 0x00000000, 0x00204803, 0x000 }, | ||
15556 | { 0x00000008, 0x00300a22, 0x000 }, | ||
15557 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15558 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15559 | { 0x0000002d, 0x0020122d, 0x000 }, | ||
15560 | { 0x00000000, 0x00290c83, 0x000 }, | ||
15561 | { 0x00002169, 0x00204411, 0x000 }, | ||
15562 | { 0x00000000, 0x00204802, 0x000 }, | ||
15563 | { 0x00000000, 0x00204803, 0x000 }, | ||
15564 | { 0x00000008, 0x00300a22, 0x000 }, | ||
15565 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15566 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15567 | { 0x00000011, 0x00210224, 0x000 }, | ||
15568 | { 0x00000000, 0x14c00000, 0x000 }, | ||
15569 | { 0x00000000, 0x00400000, 0x4b2 }, | ||
15570 | { 0x0000002c, 0xc0203620, 0x000 }, | ||
15571 | { 0x0000002d, 0xc0403620, 0x000 }, | ||
15572 | { 0x0000000f, 0x00210221, 0x000 }, | ||
15573 | { 0x00000000, 0x14c00000, 0x50d }, | ||
15574 | { 0x00000000, 0x00600000, 0x00b }, | ||
15575 | { 0x00000000, 0xd9000000, 0x000 }, | ||
15576 | { 0x00000000, 0xc0400400, 0x001 }, | ||
15577 | { 0xb5000000, 0x00204411, 0x000 }, | ||
15578 | { 0x00002000, 0x00204811, 0x000 }, | ||
15579 | { 0xb6000000, 0x00204411, 0x000 }, | ||
15580 | { 0x0000a000, 0x00204811, 0x000 }, | ||
15581 | { 0xb7000000, 0x00204411, 0x000 }, | ||
15582 | { 0x0000c000, 0x00204811, 0x000 }, | ||
15583 | { 0xb8000000, 0x00204411, 0x000 }, | ||
15584 | { 0x0000f8e0, 0x00204811, 0x000 }, | ||
15585 | { 0xb9000000, 0x00204411, 0x000 }, | ||
15586 | { 0x0000f880, 0x00204811, 0x000 }, | ||
15587 | { 0xba000000, 0x00204411, 0x000 }, | ||
15588 | { 0x0000e000, 0x00204811, 0x000 }, | ||
15589 | { 0xbb000000, 0x00204411, 0x000 }, | ||
15590 | { 0x0000f000, 0x00204811, 0x000 }, | ||
15591 | { 0xbc000000, 0x00204411, 0x000 }, | ||
15592 | { 0x0000f3fc, 0x00204811, 0x000 }, | ||
15593 | { 0x81000000, 0x00204411, 0x000 }, | ||
15594 | { 0x00000002, 0x00204811, 0x000 }, | ||
15595 | { 0x000000ff, 0x00280e30, 0x000 }, | ||
15596 | { 0x00000000, 0x002f0223, 0x000 }, | ||
15597 | { 0x00000000, 0x0cc00000, 0x521 }, | ||
15598 | { 0x00000000, 0xc0200800, 0x000 }, | ||
15599 | { 0x00000000, 0x14c00000, 0x536 }, | ||
15600 | { 0x00000000, 0x00200c11, 0x000 }, | ||
15601 | { 0x0000001c, 0x00203623, 0x000 }, | ||
15602 | { 0x0000002b, 0x00203623, 0x000 }, | ||
15603 | { 0x00000029, 0x00203623, 0x000 }, | ||
15604 | { 0x00000028, 0x00203623, 0x000 }, | ||
15605 | { 0x00000017, 0x00203623, 0x000 }, | ||
15606 | { 0x00000025, 0x00203623, 0x000 }, | ||
15607 | { 0x00000026, 0x00203623, 0x000 }, | ||
15608 | { 0x00000015, 0x00203623, 0x000 }, | ||
15609 | { 0x00000016, 0x00203623, 0x000 }, | ||
15610 | { 0xffffe000, 0x00200c11, 0x000 }, | ||
15611 | { 0x00000021, 0x00203623, 0x000 }, | ||
15612 | { 0x00000022, 0x00203623, 0x000 }, | ||
15613 | { 0x00001fff, 0x00200c11, 0x000 }, | ||
15614 | { 0x00000023, 0x00203623, 0x000 }, | ||
15615 | { 0x00000024, 0x00203623, 0x000 }, | ||
15616 | { 0xf1ffffff, 0x00283a2e, 0x000 }, | ||
15617 | { 0x0000001a, 0xc0220e20, 0x000 }, | ||
15618 | { 0x00000000, 0x0029386e, 0x000 }, | ||
15619 | { 0x81000000, 0x00204411, 0x000 }, | ||
15620 | { 0x00000006, 0x00204811, 0x000 }, | ||
15621 | { 0x0000002a, 0x40203620, 0x000 }, | ||
15622 | { 0x87000000, 0x00204411, 0x000 }, | ||
15623 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15624 | { 0x0000a1f4, 0x00204411, 0x000 }, | ||
15625 | { 0x00000000, 0x00204810, 0x000 }, | ||
15626 | { 0x9d000000, 0x00204411, 0x000 }, | ||
15627 | { 0x0000001f, 0x40214a20, 0x000 }, | ||
15628 | { 0x96000000, 0x00204411, 0x000 }, | ||
15629 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15630 | { 0x00000000, 0xc0200c00, 0x000 }, | ||
15631 | { 0x00000000, 0xc0201000, 0x000 }, | ||
15632 | { 0x0000001f, 0x00211624, 0x000 }, | ||
15633 | { 0x00000000, 0x14c00000, 0x000 }, | ||
15634 | { 0x0000001d, 0x00203623, 0x000 }, | ||
15635 | { 0x00000003, 0x00281e23, 0x000 }, | ||
15636 | { 0x00000008, 0x00222223, 0x000 }, | ||
15637 | { 0xfffff000, 0x00282228, 0x000 }, | ||
15638 | { 0x00000000, 0x002920e8, 0x000 }, | ||
15639 | { 0x0000001f, 0x00203628, 0x000 }, | ||
15640 | { 0x00000018, 0x00211e23, 0x000 }, | ||
15641 | { 0x00000020, 0x00203627, 0x000 }, | ||
15642 | { 0x00000002, 0x00221624, 0x000 }, | ||
15643 | { 0x00000000, 0x003014a8, 0x000 }, | ||
15644 | { 0x0000001e, 0x00203625, 0x000 }, | ||
15645 | { 0x00000003, 0x00211a24, 0x000 }, | ||
15646 | { 0x10000000, 0x00281a26, 0x000 }, | ||
15647 | { 0xefffffff, 0x00283a2e, 0x000 }, | ||
15648 | { 0x00000000, 0x004938ce, 0x610 }, | ||
15649 | { 0x00000001, 0x40280a20, 0x000 }, | ||
15650 | { 0x00000006, 0x40280e20, 0x000 }, | ||
15651 | { 0x00000300, 0xc0281220, 0x000 }, | ||
15652 | { 0x00000008, 0x00211224, 0x000 }, | ||
15653 | { 0x00000000, 0xc0201620, 0x000 }, | ||
15654 | { 0x00000000, 0xc0201a20, 0x000 }, | ||
15655 | { 0x00000000, 0x00210222, 0x000 }, | ||
15656 | { 0x00000000, 0x14c00000, 0x56c }, | ||
15657 | { 0x81000000, 0x00204411, 0x000 }, | ||
15658 | { 0x00000001, 0x00204811, 0x000 }, | ||
15659 | { 0x00002258, 0x00300a24, 0x000 }, | ||
15660 | { 0x00040000, 0x00694622, 0x622 }, | ||
15661 | { 0x00002169, 0x00204411, 0x000 }, | ||
15662 | { 0x00000000, 0x00204805, 0x000 }, | ||
15663 | { 0x00020000, 0x00294a26, 0x000 }, | ||
15664 | { 0x00000000, 0x00204810, 0x000 }, | ||
15665 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
15666 | { 0x00000002, 0x002f0223, 0x000 }, | ||
15667 | { 0x00000000, 0x0cc00000, 0x574 }, | ||
15668 | { 0x00000000, 0xc0201c10, 0x000 }, | ||
15669 | { 0x00000000, 0xc0400000, 0x582 }, | ||
15670 | { 0x00000002, 0x002f0223, 0x000 }, | ||
15671 | { 0x00000000, 0x0cc00000, 0x574 }, | ||
15672 | { 0x81000000, 0x00204411, 0x000 }, | ||
15673 | { 0x00000001, 0x00204811, 0x000 }, | ||
15674 | { 0x00002258, 0x00300a24, 0x000 }, | ||
15675 | { 0x00040000, 0x00694622, 0x622 }, | ||
15676 | { 0x00000000, 0xc0201c10, 0x000 }, | ||
15677 | { 0x00000000, 0xc0400000, 0x582 }, | ||
15678 | { 0x00000000, 0x002f0223, 0x000 }, | ||
15679 | { 0x00000000, 0x0cc00000, 0x578 }, | ||
15680 | { 0x00000000, 0xc0201c00, 0x000 }, | ||
15681 | { 0x00000000, 0xc0400000, 0x582 }, | ||
15682 | { 0x00000004, 0x002f0223, 0x000 }, | ||
15683 | { 0x00000000, 0x0cc00000, 0x580 }, | ||
15684 | { 0x81000000, 0x00204411, 0x000 }, | ||
15685 | { 0x00000000, 0x00204811, 0x000 }, | ||
15686 | { 0x0000216d, 0x00204411, 0x000 }, | ||
15687 | { 0x00000000, 0xc0204800, 0x000 }, | ||
15688 | { 0x00000000, 0xc0604800, 0x627 }, | ||
15689 | { 0x00000000, 0x00401c10, 0x582 }, | ||
15690 | { 0x00000000, 0xc0200000, 0x000 }, | ||
15691 | { 0x00000000, 0xc0400000, 0x000 }, | ||
15692 | { 0x00000000, 0x0ee00000, 0x584 }, | ||
15693 | { 0x00000000, 0x00600000, 0x5c3 }, | ||
15694 | { 0x00000000, 0x002f0224, 0x000 }, | ||
15695 | { 0x00000000, 0x0cc00000, 0x592 }, | ||
15696 | { 0x0000a2b7, 0x00204411, 0x000 }, | ||
15697 | { 0x00000000, 0x00204807, 0x000 }, | ||
15698 | { 0x00000033, 0x0020262d, 0x000 }, | ||
15699 | { 0x0000001a, 0x00212229, 0x000 }, | ||
15700 | { 0x00000006, 0x00222629, 0x000 }, | ||
15701 | { 0x0000a2c4, 0x00204411, 0x000 }, | ||
15702 | { 0x00000000, 0x003048e9, 0x000 }, | ||
15703 | { 0x00000000, 0x00e00000, 0x590 }, | ||
15704 | { 0x0000a2d1, 0x00204411, 0x000 }, | ||
15705 | { 0x00000000, 0x00404808, 0x000 }, | ||
15706 | { 0x0000a2d1, 0x00204411, 0x000 }, | ||
15707 | { 0x00000001, 0x00504a28, 0x000 }, | ||
15708 | { 0x00000001, 0x002f0224, 0x000 }, | ||
15709 | { 0x00000000, 0x0cc00000, 0x5a0 }, | ||
15710 | { 0x0000a2bb, 0x00204411, 0x000 }, | ||
15711 | { 0x00000000, 0x00204807, 0x000 }, | ||
15712 | { 0x00000034, 0x0020262d, 0x000 }, | ||
15713 | { 0x0000001a, 0x00212229, 0x000 }, | ||
15714 | { 0x00000006, 0x00222629, 0x000 }, | ||
15715 | { 0x0000a2c5, 0x00204411, 0x000 }, | ||
15716 | { 0x00000000, 0x003048e9, 0x000 }, | ||
15717 | { 0x00000000, 0x00e00000, 0x59e }, | ||
15718 | { 0x0000a2d2, 0x00204411, 0x000 }, | ||
15719 | { 0x00000000, 0x00404808, 0x000 }, | ||
15720 | { 0x0000a2d2, 0x00204411, 0x000 }, | ||
15721 | { 0x00000001, 0x00504a28, 0x000 }, | ||
15722 | { 0x00000002, 0x002f0224, 0x000 }, | ||
15723 | { 0x00000000, 0x0cc00000, 0x5ae }, | ||
15724 | { 0x0000a2bf, 0x00204411, 0x000 }, | ||
15725 | { 0x00000000, 0x00204807, 0x000 }, | ||
15726 | { 0x00000035, 0x0020262d, 0x000 }, | ||
15727 | { 0x0000001a, 0x00212229, 0x000 }, | ||
15728 | { 0x00000006, 0x00222629, 0x000 }, | ||
15729 | { 0x0000a2c6, 0x00204411, 0x000 }, | ||
15730 | { 0x00000000, 0x003048e9, 0x000 }, | ||
15731 | { 0x00000000, 0x00e00000, 0x5ac }, | ||
15732 | { 0x0000a2d3, 0x00204411, 0x000 }, | ||
15733 | { 0x00000000, 0x00404808, 0x000 }, | ||
15734 | { 0x0000a2d3, 0x00204411, 0x000 }, | ||
15735 | { 0x00000001, 0x00504a28, 0x000 }, | ||
15736 | { 0x0000a2c3, 0x00204411, 0x000 }, | ||
15737 | { 0x00000000, 0x00204807, 0x000 }, | ||
15738 | { 0x00000036, 0x0020262d, 0x000 }, | ||
15739 | { 0x0000001a, 0x00212229, 0x000 }, | ||
15740 | { 0x00000006, 0x00222629, 0x000 }, | ||
15741 | { 0x0000a2c7, 0x00204411, 0x000 }, | ||
15742 | { 0x00000000, 0x003048e9, 0x000 }, | ||
15743 | { 0x00000000, 0x00e00000, 0x5b8 }, | ||
15744 | { 0x0000a2d4, 0x00204411, 0x000 }, | ||
15745 | { 0x00000000, 0x00404808, 0x000 }, | ||
15746 | { 0x0000a2d4, 0x00204411, 0x000 }, | ||
15747 | { 0x00000001, 0x00504a28, 0x000 }, | ||
15748 | { 0x85000000, 0x00204411, 0x000 }, | ||
15749 | { 0x00000000, 0x00204801, 0x000 }, | ||
15750 | { 0x0000304a, 0x00204411, 0x000 }, | ||
15751 | { 0x01000000, 0x00204811, 0x000 }, | ||
15752 | { 0x00000000, 0x00400000, 0x5be }, | ||
15753 | { 0xa4000000, 0xc0204411, 0x000 }, | ||
15754 | { 0x00000000, 0xc0404800, 0x000 }, | ||
15755 | { 0x00000000, 0xc0600000, 0x5c3 }, | ||
15756 | { 0x00000000, 0xc0400400, 0x001 }, | ||
15757 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
15758 | { 0x0000003f, 0x00204811, 0x000 }, | ||
15759 | { 0x0000003f, 0x00204811, 0x000 }, | ||
15760 | { 0x0000003f, 0x00204811, 0x000 }, | ||
15761 | { 0x0000003f, 0x00204811, 0x000 }, | ||
15762 | { 0x00000005, 0x00204811, 0x000 }, | ||
15763 | { 0x0000a1f4, 0x00204411, 0x000 }, | ||
15764 | { 0x00000000, 0x00204811, 0x000 }, | ||
15765 | { 0x88000000, 0x00204411, 0x000 }, | ||
15766 | { 0x00000001, 0x00204811, 0x000 }, | ||
15767 | { 0xff000000, 0x00204411, 0x000 }, | ||
15768 | { 0x00000000, 0x00204811, 0x000 }, | ||
15769 | { 0x00000001, 0x00204811, 0x000 }, | ||
15770 | { 0x00000002, 0x00804811, 0x000 }, | ||
15771 | { 0x00000000, 0x0ee00000, 0x5d6 }, | ||
15772 | { 0x00001000, 0x00200811, 0x000 }, | ||
15773 | { 0x0000002b, 0x00203622, 0x000 }, | ||
15774 | { 0x00000000, 0x00600000, 0x5da }, | ||
15775 | { 0x00000000, 0x00600000, 0x5c3 }, | ||
15776 | { 0x98000000, 0x00204411, 0x000 }, | ||
15777 | { 0x00000000, 0x00804811, 0x000 }, | ||
15778 | { 0x00000000, 0xc0600000, 0x5da }, | ||
15779 | { 0x00000000, 0xc0400400, 0x001 }, | ||
15780 | { 0x0000a2a4, 0x00204411, 0x000 }, | ||
15781 | { 0x00000022, 0x00204811, 0x000 }, | ||
15782 | { 0x89000000, 0x00204411, 0x000 }, | ||
15783 | { 0x00000001, 0x00404811, 0x5cd }, | ||
15784 | { 0x97000000, 0x00204411, 0x000 }, | ||
15785 | { 0x00000000, 0x00204811, 0x000 }, | ||
15786 | { 0x8a000000, 0x00204411, 0x000 }, | ||
15787 | { 0x00000000, 0x00404811, 0x5cd }, | ||
15788 | { 0x00000000, 0x00600000, 0x5f3 }, | ||
15789 | { 0x0001a2a4, 0xc0204411, 0x000 }, | ||
15790 | { 0x00000016, 0x00604811, 0x374 }, | ||
15791 | { 0x00002010, 0x00204411, 0x000 }, | ||
15792 | { 0x00010000, 0x00204811, 0x000 }, | ||
15793 | { 0x81000000, 0x00204411, 0x000 }, | ||
15794 | { 0x00000001, 0x00204811, 0x000 }, | ||
15795 | { 0x0000217c, 0x00204411, 0x000 }, | ||
15796 | { 0x09800000, 0x00204811, 0x000 }, | ||
15797 | { 0xffffffff, 0x00204811, 0x000 }, | ||
15798 | { 0x00000000, 0x00204811, 0x000 }, | ||
15799 | { 0x00000000, 0x17000000, 0x000 }, | ||
15800 | { 0x0004217f, 0x00604411, 0x622 }, | ||
15801 | { 0x0000001f, 0x00210230, 0x000 }, | ||
15802 | { 0x00000000, 0x14c00000, 0x000 }, | ||
15803 | { 0x00000004, 0x00404c11, 0x5ed }, | ||
15804 | { 0x00000000, 0x00400000, 0x000 }, | ||
15805 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
15806 | { 0x00000004, 0x00291e27, 0x000 }, | ||
15807 | { 0x00000017, 0x00803627, 0x000 }, | ||
15808 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
15809 | { 0xfffffffb, 0x00281e27, 0x000 }, | ||
15810 | { 0x00000017, 0x00803627, 0x000 }, | ||
15811 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
15812 | { 0x00000008, 0x00291e27, 0x000 }, | ||
15813 | { 0x00000017, 0x00803627, 0x000 }, | ||
15814 | { 0x00000017, 0x00201e2d, 0x000 }, | ||
15815 | { 0xfffffff7, 0x00281e27, 0x000 }, | ||
15816 | { 0x00000017, 0x00803627, 0x000 }, | ||
15817 | { 0x0001a2a4, 0x00204411, 0x000 }, | ||
15818 | { 0x00000016, 0x00604811, 0x374 }, | ||
15819 | { 0x00002010, 0x00204411, 0x000 }, | ||
15820 | { 0x00010000, 0x00204811, 0x000 }, | ||
15821 | { 0x0000217c, 0x00204411, 0x000 }, | ||
15822 | { 0x01800000, 0x00204811, 0x000 }, | ||
15823 | { 0xffffffff, 0x00204811, 0x000 }, | ||
15824 | { 0x00000000, 0x00204811, 0x000 }, | ||
15825 | { 0x00000000, 0x17000000, 0x000 }, | ||
15826 | { 0x81000000, 0x00204411, 0x000 }, | ||
15827 | { 0x00000001, 0x00204811, 0x000 }, | ||
15828 | { 0x0004217f, 0x00604411, 0x622 }, | ||
15829 | { 0x0000001f, 0x00210230, 0x000 }, | ||
15830 | { 0x00000000, 0x14c00000, 0x621 }, | ||
15831 | { 0x00000010, 0x00404c11, 0x607 }, | ||
15832 | { 0x00000000, 0xc0200400, 0x000 }, | ||
15833 | { 0x00000000, 0x38c00000, 0x000 }, | ||
15834 | { 0x0000001d, 0x00200a2d, 0x000 }, | ||
15835 | { 0x0000001e, 0x00200e2d, 0x000 }, | ||
15836 | { 0x0000001f, 0x0020122d, 0x000 }, | ||
15837 | { 0x00000020, 0x0020162d, 0x000 }, | ||
15838 | { 0x00002169, 0x00204411, 0x000 }, | ||
15839 | { 0x00000000, 0x00204804, 0x000 }, | ||
15840 | { 0x00000000, 0x00204805, 0x000 }, | ||
15841 | { 0x00000000, 0x00204801, 0x000 }, | ||
15842 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
15843 | { 0x00000004, 0x00301224, 0x000 }, | ||
15844 | { 0x00000000, 0x002f0064, 0x000 }, | ||
15845 | { 0x00000000, 0x0cc00000, 0x620 }, | ||
15846 | { 0x00000003, 0x00281a22, 0x000 }, | ||
15847 | { 0x00000008, 0x00221222, 0x000 }, | ||
15848 | { 0xfffff000, 0x00281224, 0x000 }, | ||
15849 | { 0x00000000, 0x002910c4, 0x000 }, | ||
15850 | { 0x0000001f, 0x00403624, 0x000 }, | ||
15851 | { 0x00000000, 0x00800000, 0x000 }, | ||
15852 | { 0x00000000, 0x1ac00000, 0x622 }, | ||
15853 | { 0x9f000000, 0x00204411, 0x000 }, | ||
15854 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
15855 | { 0x00000000, 0x1ae00000, 0x625 }, | ||
15856 | { 0x00000000, 0x00800000, 0x000 }, | ||
15857 | { 0x00000000, 0x1ac00000, 0x627 }, | ||
15858 | { 0x9e000000, 0x00204411, 0x000 }, | ||
15859 | { 0xcafebabe, 0x00204811, 0x000 }, | ||
15860 | { 0x00000000, 0x1ae00000, 0x62a }, | ||
15861 | { 0x00000000, 0x00800000, 0x000 }, | ||
15862 | { 0x00000000, 0x00600000, 0x00b }, | ||
15863 | { 0x00001000, 0x00600411, 0x315 }, | ||
15864 | { 0x00000000, 0x00200411, 0x000 }, | ||
15865 | { 0x00000000, 0x00600811, 0x1b2 }, | ||
15866 | { 0x0000225c, 0x00204411, 0x000 }, | ||
15867 | { 0x00000003, 0x00204811, 0x000 }, | ||
15868 | { 0x00002256, 0x00204411, 0x000 }, | ||
15869 | { 0x0000001b, 0x00204811, 0x000 }, | ||
15870 | { 0x0000a1fc, 0x00204411, 0x000 }, | ||
15871 | { 0x00000001, 0x00204811, 0x000 }, | ||
15872 | { 0x0001a1fd, 0xc0204411, 0x000 }, | ||
15873 | { 0x00000021, 0x00201e2d, 0x000 }, | ||
15874 | { 0x00000010, 0x00221e27, 0x000 }, | ||
15875 | { 0x00000024, 0x0020222d, 0x000 }, | ||
15876 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
15877 | { 0x00000000, 0x00294907, 0x000 }, | ||
15878 | { 0x00000000, 0x00204811, 0x000 }, | ||
15879 | { 0x00000022, 0x0020222d, 0x000 }, | ||
15880 | { 0x0000ffff, 0x00282228, 0x000 }, | ||
15881 | { 0x00000000, 0x00294907, 0x000 }, | ||
15882 | { 0x00000000, 0x00204811, 0x000 }, | ||
15883 | { 0x00000023, 0x00201e2d, 0x000 }, | ||
15884 | { 0x00000010, 0x00221e27, 0x000 }, | ||
15885 | { 0x00000000, 0x00294907, 0x000 }, | ||
15886 | { 0x00000000, 0x00404811, 0x000 }, | ||
15887 | { 0x00000000, 0x00000000, 0x000 }, | ||
15888 | { 0x00000000, 0x00000000, 0x000 }, | ||
15889 | { 0x00000000, 0x00000000, 0x000 }, | ||
15890 | { 0x00000000, 0x00000000, 0x000 }, | ||
15891 | { 0x00000000, 0x00000000, 0x000 }, | ||
15892 | { 0x00000000, 0x00000000, 0x000 }, | ||
15893 | { 0x00000000, 0x00000000, 0x000 }, | ||
15894 | { 0x00000000, 0x00000000, 0x000 }, | ||
15895 | { 0x00000000, 0x00000000, 0x000 }, | ||
15896 | { 0x00000000, 0x00000000, 0x000 }, | ||
15897 | { 0x00000000, 0x00000000, 0x000 }, | ||
15898 | { 0x00000000, 0x00000000, 0x000 }, | ||
15899 | { 0x00000000, 0x00000000, 0x000 }, | ||
15900 | { 0x00000000, 0x00000000, 0x000 }, | ||
15901 | { 0x00000000, 0x00000000, 0x000 }, | ||
15902 | { 0x00000000, 0x00000000, 0x000 }, | ||
15903 | { 0x00000000, 0x00000000, 0x000 }, | ||
15904 | { 0x00000000, 0x00000000, 0x000 }, | ||
15905 | { 0x00000000, 0x00000000, 0x000 }, | ||
15906 | { 0x00000000, 0x00000000, 0x000 }, | ||
15907 | { 0x00000000, 0x00000000, 0x000 }, | ||
15908 | { 0x00000000, 0x00000000, 0x000 }, | ||
15909 | { 0x00000000, 0x00000000, 0x000 }, | ||
15910 | { 0x00000000, 0x00000000, 0x000 }, | ||
15911 | { 0x00000000, 0x00000000, 0x000 }, | ||
15912 | { 0x00000000, 0x00000000, 0x000 }, | ||
15913 | { 0x00000000, 0x00000000, 0x000 }, | ||
15914 | { 0x00000000, 0x00000000, 0x000 }, | ||
15915 | { 0x00000000, 0x00000000, 0x000 }, | ||
15916 | { 0x00000000, 0x00000000, 0x000 }, | ||
15917 | { 0x00000000, 0x00000000, 0x000 }, | ||
15918 | { 0x00000000, 0x00000000, 0x000 }, | ||
15919 | { 0x00000000, 0x00000000, 0x000 }, | ||
15920 | { 0x00000000, 0x00000000, 0x000 }, | ||
15921 | { 0x00000000, 0x00000000, 0x000 }, | ||
15922 | { 0x00000000, 0x00000000, 0x000 }, | ||
15923 | { 0x00000000, 0x00000000, 0x000 }, | ||
15924 | { 0x00000000, 0x00000000, 0x000 }, | ||
15925 | { 0x00000000, 0x00000000, 0x000 }, | ||
15926 | { 0x00000000, 0x00000000, 0x000 }, | ||
15927 | { 0x00000000, 0x00000000, 0x000 }, | ||
15928 | { 0x00000000, 0x00000000, 0x000 }, | ||
15929 | { 0x00000000, 0x00000000, 0x000 }, | ||
15930 | { 0x00000000, 0x00000000, 0x000 }, | ||
15931 | { 0x00000000, 0x00000000, 0x000 }, | ||
15932 | { 0x00000000, 0x00000000, 0x000 }, | ||
15933 | { 0x00000000, 0x00000000, 0x000 }, | ||
15934 | { 0x00000000, 0x00000000, 0x000 }, | ||
15935 | { 0x00000000, 0x00000000, 0x000 }, | ||
15936 | { 0x00000000, 0x00000000, 0x000 }, | ||
15937 | { 0x00000000, 0x00000000, 0x000 }, | ||
15938 | { 0x00000000, 0x00000000, 0x000 }, | ||
15939 | { 0x00000000, 0x00000000, 0x000 }, | ||
15940 | { 0x00000000, 0x00000000, 0x000 }, | ||
15941 | { 0x00000000, 0x00000000, 0x000 }, | ||
15942 | { 0x00000000, 0x00000000, 0x000 }, | ||
15943 | { 0x00000000, 0x00000000, 0x000 }, | ||
15944 | { 0x00000000, 0x00000000, 0x000 }, | ||
15945 | { 0x00000000, 0x00000000, 0x000 }, | ||
15946 | { 0x00000000, 0x00000000, 0x000 }, | ||
15947 | { 0x00000000, 0x00000000, 0x000 }, | ||
15948 | { 0x00000000, 0x00000000, 0x000 }, | ||
15949 | { 0x00000000, 0x00000000, 0x000 }, | ||
15950 | { 0x00000000, 0x00000000, 0x000 }, | ||
15951 | { 0x00000000, 0x00000000, 0x000 }, | ||
15952 | { 0x00000000, 0x00000000, 0x000 }, | ||
15953 | { 0x00000000, 0x00000000, 0x000 }, | ||
15954 | { 0x00000000, 0x00000000, 0x000 }, | ||
15955 | { 0x00000000, 0x00000000, 0x000 }, | ||
15956 | { 0x00000000, 0x00000000, 0x000 }, | ||
15957 | { 0x00000000, 0x00000000, 0x000 }, | ||
15958 | { 0x00000000, 0x00000000, 0x000 }, | ||
15959 | { 0x00000000, 0x00000000, 0x000 }, | ||
15960 | { 0x00000000, 0x00000000, 0x000 }, | ||
15961 | { 0x00000000, 0x00000000, 0x000 }, | ||
15962 | { 0x00000000, 0x00000000, 0x000 }, | ||
15963 | { 0x00000000, 0x00000000, 0x000 }, | ||
15964 | { 0x00000000, 0x00000000, 0x000 }, | ||
15965 | { 0x00000000, 0x00000000, 0x000 }, | ||
15966 | { 0x00000000, 0x00000000, 0x000 }, | ||
15967 | { 0x00000000, 0x00000000, 0x000 }, | ||
15968 | { 0x00000000, 0x00000000, 0x000 }, | ||
15969 | { 0x00000000, 0x00000000, 0x000 }, | ||
15970 | { 0x00000000, 0x00000000, 0x000 }, | ||
15971 | { 0x00000000, 0x00000000, 0x000 }, | ||
15972 | { 0x00000000, 0x00000000, 0x000 }, | ||
15973 | { 0x00000000, 0x00000000, 0x000 }, | ||
15974 | { 0x00000000, 0x00000000, 0x000 }, | ||
15975 | { 0x00000000, 0x00000000, 0x000 }, | ||
15976 | { 0x00000000, 0x00000000, 0x000 }, | ||
15977 | { 0x00000000, 0x00000000, 0x000 }, | ||
15978 | { 0x00000000, 0x00000000, 0x000 }, | ||
15979 | { 0x00000000, 0x00000000, 0x000 }, | ||
15980 | { 0x00000000, 0x00000000, 0x000 }, | ||
15981 | { 0x00000000, 0x00000000, 0x000 }, | ||
15982 | { 0x00000000, 0x00000000, 0x000 }, | ||
15983 | { 0x00000000, 0x00000000, 0x000 }, | ||
15984 | { 0x00000000, 0x00000000, 0x000 }, | ||
15985 | { 0x00000000, 0x00000000, 0x000 }, | ||
15986 | { 0x00000000, 0x00000000, 0x000 }, | ||
15987 | { 0x00000000, 0x00000000, 0x000 }, | ||
15988 | { 0x00000000, 0x00000000, 0x000 }, | ||
15989 | { 0x00000000, 0x00000000, 0x000 }, | ||
15990 | { 0x00000000, 0x00000000, 0x000 }, | ||
15991 | { 0x00000000, 0x00000000, 0x000 }, | ||
15992 | { 0x00000000, 0x00000000, 0x000 }, | ||
15993 | { 0x00000000, 0x00000000, 0x000 }, | ||
15994 | { 0x00000000, 0x00000000, 0x000 }, | ||
15995 | { 0x00000000, 0x00000000, 0x000 }, | ||
15996 | { 0x00000000, 0x00000000, 0x000 }, | ||
15997 | { 0x00000000, 0x00000000, 0x000 }, | ||
15998 | { 0x00000000, 0x00000000, 0x000 }, | ||
15999 | { 0x00000000, 0x00000000, 0x000 }, | ||
16000 | { 0x00000000, 0x00000000, 0x000 }, | ||
16001 | { 0x00000000, 0x00000000, 0x000 }, | ||
16002 | { 0x00000000, 0x00000000, 0x000 }, | ||
16003 | { 0x00000000, 0x00000000, 0x000 }, | ||
16004 | { 0x00000000, 0x00000000, 0x000 }, | ||
16005 | { 0x00000000, 0x00000000, 0x000 }, | ||
16006 | { 0x00000000, 0x00000000, 0x000 }, | ||
16007 | { 0x00000000, 0x00000000, 0x000 }, | ||
16008 | { 0x00000000, 0x00000000, 0x000 }, | ||
16009 | { 0x00000000, 0x00000000, 0x000 }, | ||
16010 | { 0x00000000, 0x00000000, 0x000 }, | ||
16011 | { 0x00000000, 0x00000000, 0x000 }, | ||
16012 | { 0x00000000, 0x00000000, 0x000 }, | ||
16013 | { 0x00000000, 0x00000000, 0x000 }, | ||
16014 | { 0x00000000, 0x00000000, 0x000 }, | ||
16015 | { 0x00000000, 0x00000000, 0x000 }, | ||
16016 | { 0x00000000, 0x00000000, 0x000 }, | ||
16017 | { 0x00000000, 0x00000000, 0x000 }, | ||
16018 | { 0x00000000, 0x00000000, 0x000 }, | ||
16019 | { 0x00000000, 0x00000000, 0x000 }, | ||
16020 | { 0x00000000, 0x00000000, 0x000 }, | ||
16021 | { 0x00000000, 0x00000000, 0x000 }, | ||
16022 | { 0x00000000, 0x00000000, 0x000 }, | ||
16023 | { 0x00000000, 0x00000000, 0x000 }, | ||
16024 | { 0x00000000, 0x00000000, 0x000 }, | ||
16025 | { 0x00000000, 0x00000000, 0x000 }, | ||
16026 | { 0x00000000, 0x00000000, 0x000 }, | ||
16027 | { 0x00000000, 0x00000000, 0x000 }, | ||
16028 | { 0x00000000, 0x00000000, 0x000 }, | ||
16029 | { 0x00000000, 0x00000000, 0x000 }, | ||
16030 | { 0x00000000, 0x00000000, 0x000 }, | ||
16031 | { 0x00000000, 0x00000000, 0x000 }, | ||
16032 | { 0x00000000, 0x00000000, 0x000 }, | ||
16033 | { 0x00000000, 0x00000000, 0x000 }, | ||
16034 | { 0x00000000, 0x00000000, 0x000 }, | ||
16035 | { 0x00000000, 0x00000000, 0x000 }, | ||
16036 | { 0x00000000, 0x00000000, 0x000 }, | ||
16037 | { 0x00000000, 0x00000000, 0x000 }, | ||
16038 | { 0x00000000, 0x00000000, 0x000 }, | ||
16039 | { 0x00000000, 0x00000000, 0x000 }, | ||
16040 | { 0x00000000, 0x00000000, 0x000 }, | ||
16041 | { 0x00000000, 0x00000000, 0x000 }, | ||
16042 | { 0x00000000, 0x00000000, 0x000 }, | ||
16043 | { 0x00000000, 0x00000000, 0x000 }, | ||
16044 | { 0x00000000, 0x00000000, 0x000 }, | ||
16045 | { 0x00000000, 0x00000000, 0x000 }, | ||
16046 | { 0x0142050a, 0x05ba0250, 0x000 }, | ||
16047 | { 0x01c30168, 0x044105ba, 0x000 }, | ||
16048 | { 0x02250209, 0x02500151, 0x000 }, | ||
16049 | { 0x02230245, 0x02a00241, 0x000 }, | ||
16050 | { 0x03d705ba, 0x05ba05ba, 0x000 }, | ||
16051 | { 0x05e205e3, 0x031f05ba, 0x000 }, | ||
16052 | { 0x032005bf, 0x0320034a, 0x000 }, | ||
16053 | { 0x03340282, 0x034c033e, 0x000 }, | ||
16054 | { 0x05ba05ba, 0x05ba05ba, 0x000 }, | ||
16055 | { 0x05ba0557, 0x05ba032a, 0x000 }, | ||
16056 | { 0x03bc05ba, 0x04c3034e, 0x000 }, | ||
16057 | { 0x04a20455, 0x043f05ba, 0x000 }, | ||
16058 | { 0x04d805ba, 0x044304e5, 0x000 }, | ||
16059 | { 0x0455050f, 0x035b037b, 0x000 }, | ||
16060 | { 0x05ba05ba, 0x05ba05ba, 0x000 }, | ||
16061 | { 0x05ba05ba, 0x05ba05ba, 0x000 }, | ||
16062 | { 0x05ba05ba, 0x05d805c1, 0x000 }, | ||
16063 | { 0x05ba05ba, 0x000705ba, 0x000 }, | ||
16064 | { 0x05ba05ba, 0x05ba05ba, 0x000 }, | ||
16065 | { 0x05ba05ba, 0x05ba05ba, 0x000 }, | ||
16066 | { 0x03f803ed, 0x04080406, 0x000 }, | ||
16067 | { 0x040e040a, 0x040c0410, 0x000 }, | ||
16068 | { 0x041c0418, 0x04240420, 0x000 }, | ||
16069 | { 0x042c0428, 0x04340430, 0x000 }, | ||
16070 | { 0x05ba05ba, 0x043a0438, 0x000 }, | ||
16071 | { 0x05ba05ba, 0x05ba05ba, 0x000 }, | ||
16072 | { 0x05ba05ba, 0x05ba05ba, 0x000 }, | ||
16073 | { 0x0002060e, 0x062c0006, 0x000 }, | ||
16074 | }; | ||
16075 | |||
16076 | static const u32 RS780_pfp_microcode[] = { | ||
16077 | 0xca0400, | ||
16078 | 0xa00000, | ||
16079 | 0x7e828b, | ||
16080 | 0x7c038b, | ||
16081 | 0x8001db, | ||
16082 | 0x7c038b, | ||
16083 | 0xd4401e, | ||
16084 | 0xee001e, | ||
16085 | 0xca0400, | ||
16086 | 0xa00000, | ||
16087 | 0x7e828b, | ||
16088 | 0xc41838, | ||
16089 | 0xca2400, | ||
16090 | 0xca2800, | ||
16091 | 0x9581cb, | ||
16092 | 0xc41c3a, | ||
16093 | 0xc3c000, | ||
16094 | 0xca0800, | ||
16095 | 0xca0c00, | ||
16096 | 0x7c744b, | ||
16097 | 0xc20005, | ||
16098 | 0x99c000, | ||
16099 | 0xc41c3a, | ||
16100 | 0x7c744c, | ||
16101 | 0xc0ffe0, | ||
16102 | 0x042c08, | ||
16103 | 0x309002, | ||
16104 | 0x7d2500, | ||
16105 | 0x351402, | ||
16106 | 0x7d350b, | ||
16107 | 0x255407, | ||
16108 | 0x7cd580, | ||
16109 | 0x259c07, | ||
16110 | 0x95c004, | ||
16111 | 0xd5001b, | ||
16112 | 0x7eddc1, | ||
16113 | 0x7d9d80, | ||
16114 | 0xd6801b, | ||
16115 | 0xd5801b, | ||
16116 | 0xd4401e, | ||
16117 | 0xd5401e, | ||
16118 | 0xd6401e, | ||
16119 | 0xd6801e, | ||
16120 | 0xd4801e, | ||
16121 | 0xd4c01e, | ||
16122 | 0x9783d3, | ||
16123 | 0xd5c01e, | ||
16124 | 0xca0800, | ||
16125 | 0x80001a, | ||
16126 | 0xca0c00, | ||
16127 | 0xe4011e, | ||
16128 | 0xd4001e, | ||
16129 | 0x80000c, | ||
16130 | 0xc41838, | ||
16131 | 0xe4013e, | ||
16132 | 0xd4001e, | ||
16133 | 0x80000c, | ||
16134 | 0xc41838, | ||
16135 | 0xd4401e, | ||
16136 | 0xee001e, | ||
16137 | 0xca0400, | ||
16138 | 0xa00000, | ||
16139 | 0x7e828b, | ||
16140 | 0xe4011e, | ||
16141 | 0xd4001e, | ||
16142 | 0xd4401e, | ||
16143 | 0xee001e, | ||
16144 | 0xca0400, | ||
16145 | 0xa00000, | ||
16146 | 0x7e828b, | ||
16147 | 0xe4013e, | ||
16148 | 0xd4001e, | ||
16149 | 0xd4401e, | ||
16150 | 0xee001e, | ||
16151 | 0xca0400, | ||
16152 | 0xa00000, | ||
16153 | 0x7e828b, | ||
16154 | 0xca0800, | ||
16155 | 0xca0c00, | ||
16156 | 0x8001db, | ||
16157 | 0xd48024, | ||
16158 | 0xca0800, | ||
16159 | 0x7c00c0, | ||
16160 | 0xc81425, | ||
16161 | 0xc81824, | ||
16162 | 0x7c9488, | ||
16163 | 0x7c9880, | ||
16164 | 0xc20003, | ||
16165 | 0xd40075, | ||
16166 | 0x7c744c, | ||
16167 | 0x800064, | ||
16168 | 0xd4401e, | ||
16169 | 0xca1800, | ||
16170 | 0xd4401e, | ||
16171 | 0xd5801e, | ||
16172 | 0x800062, | ||
16173 | 0xd40075, | ||
16174 | 0xd4401e, | ||
16175 | 0xca0800, | ||
16176 | 0xca0c00, | ||
16177 | 0xca1000, | ||
16178 | 0xd48019, | ||
16179 | 0xd4c018, | ||
16180 | 0xd50017, | ||
16181 | 0xd4801e, | ||
16182 | 0xd4c01e, | ||
16183 | 0xd5001e, | ||
16184 | 0xe2001e, | ||
16185 | 0xca0400, | ||
16186 | 0xa00000, | ||
16187 | 0x7e828b, | ||
16188 | 0xd40075, | ||
16189 | 0xd4401e, | ||
16190 | 0xca0800, | ||
16191 | 0xca0c00, | ||
16192 | 0xca1000, | ||
16193 | 0xd48019, | ||
16194 | 0xd4c018, | ||
16195 | 0xd50017, | ||
16196 | 0xd4801e, | ||
16197 | 0xd4c01e, | ||
16198 | 0xd5001e, | ||
16199 | 0xee001e, | ||
16200 | 0xca0400, | ||
16201 | 0xa00000, | ||
16202 | 0x7e828b, | ||
16203 | 0xca0800, | ||
16204 | 0x248c01, | ||
16205 | 0xd48060, | ||
16206 | 0x94c003, | ||
16207 | 0x041001, | ||
16208 | 0x041002, | ||
16209 | 0xd50025, | ||
16210 | 0xd4401e, | ||
16211 | 0x800000, | ||
16212 | 0xd4801e, | ||
16213 | 0xca0800, | ||
16214 | 0xd48061, | ||
16215 | 0xd4401e, | ||
16216 | 0x800000, | ||
16217 | 0xd4801e, | ||
16218 | 0xca0800, | ||
16219 | 0xca0c00, | ||
16220 | 0xd4401e, | ||
16221 | 0xd48016, | ||
16222 | 0xd4c016, | ||
16223 | 0xd4801e, | ||
16224 | 0x8001db, | ||
16225 | 0xd4c01e, | ||
16226 | 0xc60843, | ||
16227 | 0xca0c00, | ||
16228 | 0xca1000, | ||
16229 | 0x948004, | ||
16230 | 0xca1400, | ||
16231 | 0xe420f3, | ||
16232 | 0xd42013, | ||
16233 | 0xd56065, | ||
16234 | 0xd4e01c, | ||
16235 | 0xd5201c, | ||
16236 | 0xd5601c, | ||
16237 | 0x800000, | ||
16238 | 0x062001, | ||
16239 | 0xc60843, | ||
16240 | 0xca0c00, | ||
16241 | 0xca1000, | ||
16242 | 0x9483f7, | ||
16243 | 0xca1400, | ||
16244 | 0xe420f3, | ||
16245 | 0x80009c, | ||
16246 | 0xd42013, | ||
16247 | 0xc60843, | ||
16248 | 0xca0c00, | ||
16249 | 0xca1000, | ||
16250 | 0x9883ef, | ||
16251 | 0xca1400, | ||
16252 | 0xd40064, | ||
16253 | 0x8000b0, | ||
16254 | 0x000000, | ||
16255 | 0xc41432, | ||
16256 | 0xc61843, | ||
16257 | 0xc4082f, | ||
16258 | 0x954005, | ||
16259 | 0xc40c30, | ||
16260 | 0xd4401e, | ||
16261 | 0x800000, | ||
16262 | 0xee001e, | ||
16263 | 0x9583f5, | ||
16264 | 0xc41031, | ||
16265 | 0xd44033, | ||
16266 | 0xd52065, | ||
16267 | 0xd4a01c, | ||
16268 | 0xd4e01c, | ||
16269 | 0xd5201c, | ||
16270 | 0xe4015e, | ||
16271 | 0xd4001e, | ||
16272 | 0x800000, | ||
16273 | 0x062001, | ||
16274 | 0xca1800, | ||
16275 | 0x0a2001, | ||
16276 | 0xd60076, | ||
16277 | 0xc40836, | ||
16278 | 0x988007, | ||
16279 | 0xc61045, | ||
16280 | 0x950110, | ||
16281 | 0xd4001f, | ||
16282 | 0xd46062, | ||
16283 | 0x800000, | ||
16284 | 0xd42062, | ||
16285 | 0xcc3835, | ||
16286 | 0xcc1433, | ||
16287 | 0x8401de, | ||
16288 | 0xd40072, | ||
16289 | 0xd5401e, | ||
16290 | 0x800000, | ||
16291 | 0xee001e, | ||
16292 | 0xe2001a, | ||
16293 | 0x8401de, | ||
16294 | 0xe2001a, | ||
16295 | 0xcc104b, | ||
16296 | 0xcc0447, | ||
16297 | 0x2c9401, | ||
16298 | 0x7d098b, | ||
16299 | 0x984005, | ||
16300 | 0x7d15cb, | ||
16301 | 0xd4001a, | ||
16302 | 0x8001db, | ||
16303 | 0xd4006d, | ||
16304 | 0x344401, | ||
16305 | 0xcc0c48, | ||
16306 | 0x98403a, | ||
16307 | 0xcc2c4a, | ||
16308 | 0x958004, | ||
16309 | 0xcc0449, | ||
16310 | 0x8001db, | ||
16311 | 0xd4001a, | ||
16312 | 0xd4c01a, | ||
16313 | 0x282801, | ||
16314 | 0x840113, | ||
16315 | 0xcc1003, | ||
16316 | 0x98801b, | ||
16317 | 0x04380c, | ||
16318 | 0x840113, | ||
16319 | 0xcc1003, | ||
16320 | 0x988017, | ||
16321 | 0x043808, | ||
16322 | 0x840113, | ||
16323 | 0xcc1003, | ||
16324 | 0x988013, | ||
16325 | 0x043804, | ||
16326 | 0x840113, | ||
16327 | 0xcc1003, | ||
16328 | 0x988014, | ||
16329 | 0xcc104c, | ||
16330 | 0x9a8009, | ||
16331 | 0xcc144d, | ||
16332 | 0x9840dc, | ||
16333 | 0xd4006d, | ||
16334 | 0xcc1848, | ||
16335 | 0xd5001a, | ||
16336 | 0xd5401a, | ||
16337 | 0x8000ec, | ||
16338 | 0xd5801a, | ||
16339 | 0x96c0d5, | ||
16340 | 0xd4006d, | ||
16341 | 0x8001db, | ||
16342 | 0xd4006e, | ||
16343 | 0x9ac003, | ||
16344 | 0xd4006d, | ||
16345 | 0xd4006e, | ||
16346 | 0x800000, | ||
16347 | 0xec007f, | ||
16348 | 0x9ac0cc, | ||
16349 | 0xd4006d, | ||
16350 | 0x8001db, | ||
16351 | 0xd4006e, | ||
16352 | 0xcc1403, | ||
16353 | 0xcc1803, | ||
16354 | 0xcc1c03, | ||
16355 | 0x7d9103, | ||
16356 | 0x7dd583, | ||
16357 | 0x7d190c, | ||
16358 | 0x35cc1f, | ||
16359 | 0x35701f, | ||
16360 | 0x7cf0cb, | ||
16361 | 0x7cd08b, | ||
16362 | 0x880000, | ||
16363 | 0x7e8e8b, | ||
16364 | 0x95c004, | ||
16365 | 0xd4006e, | ||
16366 | 0x8001db, | ||
16367 | 0xd4001a, | ||
16368 | 0xd4c01a, | ||
16369 | 0xcc0803, | ||
16370 | 0xcc0c03, | ||
16371 | 0xcc1003, | ||
16372 | 0xcc1403, | ||
16373 | 0xcc1803, | ||
16374 | 0xcc1c03, | ||
16375 | 0xcc2403, | ||
16376 | 0xcc2803, | ||
16377 | 0x35c41f, | ||
16378 | 0x36b01f, | ||
16379 | 0x7c704b, | ||
16380 | 0x34f01f, | ||
16381 | 0x7c704b, | ||
16382 | 0x35701f, | ||
16383 | 0x7c704b, | ||
16384 | 0x7d8881, | ||
16385 | 0x7dccc1, | ||
16386 | 0x7e5101, | ||
16387 | 0x7e9541, | ||
16388 | 0x7c9082, | ||
16389 | 0x7cd4c2, | ||
16390 | 0x7c848b, | ||
16391 | 0x9ac003, | ||
16392 | 0x7c8c8b, | ||
16393 | 0x2c8801, | ||
16394 | 0x98809e, | ||
16395 | 0xd4006d, | ||
16396 | 0x98409c, | ||
16397 | 0xd4006e, | ||
16398 | 0xcc084c, | ||
16399 | 0xcc0c4d, | ||
16400 | 0xcc1048, | ||
16401 | 0xd4801a, | ||
16402 | 0xd4c01a, | ||
16403 | 0x800124, | ||
16404 | 0xd5001a, | ||
16405 | 0xcc0832, | ||
16406 | 0xd40032, | ||
16407 | 0x9482b6, | ||
16408 | 0xca0c00, | ||
16409 | 0xd4401e, | ||
16410 | 0x800000, | ||
16411 | 0xd4001e, | ||
16412 | 0xe4011e, | ||
16413 | 0xd4001e, | ||
16414 | 0xca0800, | ||
16415 | 0xca0c00, | ||
16416 | 0xca1000, | ||
16417 | 0xd4401e, | ||
16418 | 0xca1400, | ||
16419 | 0xd4801e, | ||
16420 | 0xd4c01e, | ||
16421 | 0xd5001e, | ||
16422 | 0xd5401e, | ||
16423 | 0xd54034, | ||
16424 | 0x800000, | ||
16425 | 0xee001e, | ||
16426 | 0x280404, | ||
16427 | 0xe2001a, | ||
16428 | 0xe2001a, | ||
16429 | 0xd4401a, | ||
16430 | 0xca3800, | ||
16431 | 0xcc0803, | ||
16432 | 0xcc0c03, | ||
16433 | 0xcc0c03, | ||
16434 | 0xcc0c03, | ||
16435 | 0x98829a, | ||
16436 | 0x000000, | ||
16437 | 0x8401de, | ||
16438 | 0xd7a06f, | ||
16439 | 0x800000, | ||
16440 | 0xee001f, | ||
16441 | 0xca0400, | ||
16442 | 0xc2ff00, | ||
16443 | 0xcc0834, | ||
16444 | 0xc13fff, | ||
16445 | 0x7c74cb, | ||
16446 | 0x7cc90b, | ||
16447 | 0x7d010f, | ||
16448 | 0x99028d, | ||
16449 | 0x7c738b, | ||
16450 | 0x8401de, | ||
16451 | 0xd7a06f, | ||
16452 | 0x800000, | ||
16453 | 0xee001f, | ||
16454 | 0xca0800, | ||
16455 | 0x281900, | ||
16456 | 0x7d898b, | ||
16457 | 0x958014, | ||
16458 | 0x281404, | ||
16459 | 0xca0c00, | ||
16460 | 0xca1000, | ||
16461 | 0xca1c00, | ||
16462 | 0xca2400, | ||
16463 | 0xe2001f, | ||
16464 | 0xd4c01a, | ||
16465 | 0xd5001a, | ||
16466 | 0xd5401a, | ||
16467 | 0xcc1803, | ||
16468 | 0xcc2c03, | ||
16469 | 0xcc2c03, | ||
16470 | 0xcc2c03, | ||
16471 | 0x7da58b, | ||
16472 | 0x7d9c47, | ||
16473 | 0x984274, | ||
16474 | 0x000000, | ||
16475 | 0x800184, | ||
16476 | 0xd4c01a, | ||
16477 | 0xd4401e, | ||
16478 | 0xd4801e, | ||
16479 | 0x800000, | ||
16480 | 0xee001e, | ||
16481 | 0xe4011e, | ||
16482 | 0xd4001e, | ||
16483 | 0xd4401e, | ||
16484 | 0xee001e, | ||
16485 | 0xca0400, | ||
16486 | 0xa00000, | ||
16487 | 0x7e828b, | ||
16488 | 0xe4013e, | ||
16489 | 0xd4001e, | ||
16490 | 0xd4401e, | ||
16491 | 0xee001e, | ||
16492 | 0xca0400, | ||
16493 | 0xa00000, | ||
16494 | 0x7e828b, | ||
16495 | 0xca0800, | ||
16496 | 0x248c06, | ||
16497 | 0x0ccc06, | ||
16498 | 0x98c006, | ||
16499 | 0xcc104e, | ||
16500 | 0x990004, | ||
16501 | 0xd40073, | ||
16502 | 0xe4011e, | ||
16503 | 0xd4001e, | ||
16504 | 0xd4401e, | ||
16505 | 0xd4801e, | ||
16506 | 0x800000, | ||
16507 | 0xee001e, | ||
16508 | 0xca0800, | ||
16509 | 0xca0c00, | ||
16510 | 0x34d018, | ||
16511 | 0x251001, | ||
16512 | 0x950021, | ||
16513 | 0xc17fff, | ||
16514 | 0xca1000, | ||
16515 | 0xca1400, | ||
16516 | 0xca1800, | ||
16517 | 0xd4801d, | ||
16518 | 0xd4c01d, | ||
16519 | 0x7db18b, | ||
16520 | 0xc14202, | ||
16521 | 0xc2c001, | ||
16522 | 0xd5801d, | ||
16523 | 0x34dc0e, | ||
16524 | 0x7d5d4c, | ||
16525 | 0x7f734c, | ||
16526 | 0xd7401e, | ||
16527 | 0xd5001e, | ||
16528 | 0xd5401e, | ||
16529 | 0xc14200, | ||
16530 | 0xc2c000, | ||
16531 | 0x099c01, | ||
16532 | 0x31dc10, | ||
16533 | 0x7f5f4c, | ||
16534 | 0x7f734c, | ||
16535 | 0x042802, | ||
16536 | 0x7d8380, | ||
16537 | 0xd5a86f, | ||
16538 | 0xd58066, | ||
16539 | 0xd7401e, | ||
16540 | 0xec005e, | ||
16541 | 0xc82402, | ||
16542 | 0xc82402, | ||
16543 | 0x8001db, | ||
16544 | 0xd60076, | ||
16545 | 0xd4401e, | ||
16546 | 0xd4801e, | ||
16547 | 0xd4c01e, | ||
16548 | 0x800000, | ||
16549 | 0xee001e, | ||
16550 | 0x800000, | ||
16551 | 0xee001f, | ||
16552 | 0xd4001f, | ||
16553 | 0x800000, | ||
16554 | 0xd4001f, | ||
16555 | 0xd4001f, | ||
16556 | 0x880000, | ||
16557 | 0xd4001f, | ||
16558 | 0x000000, | ||
16559 | 0x000000, | ||
16560 | 0x000000, | ||
16561 | 0x000000, | ||
16562 | 0x000000, | ||
16563 | 0x000000, | ||
16564 | 0x000000, | ||
16565 | 0x000000, | ||
16566 | 0x000000, | ||
16567 | 0x000000, | ||
16568 | 0x000000, | ||
16569 | 0x000000, | ||
16570 | 0x000000, | ||
16571 | 0x000000, | ||
16572 | 0x000000, | ||
16573 | 0x000000, | ||
16574 | 0x000000, | ||
16575 | 0x000000, | ||
16576 | 0x000000, | ||
16577 | 0x000000, | ||
16578 | 0x000000, | ||
16579 | 0x000000, | ||
16580 | 0x000000, | ||
16581 | 0x000000, | ||
16582 | 0x000000, | ||
16583 | 0x000000, | ||
16584 | 0x000000, | ||
16585 | 0x000000, | ||
16586 | 0x000000, | ||
16587 | 0x000000, | ||
16588 | 0x000000, | ||
16589 | 0x010194, | ||
16590 | 0x02019b, | ||
16591 | 0x0300b2, | ||
16592 | 0x0400a2, | ||
16593 | 0x050003, | ||
16594 | 0x06003f, | ||
16595 | 0x070032, | ||
16596 | 0x08014f, | ||
16597 | 0x090046, | ||
16598 | 0x0a0036, | ||
16599 | 0x1001d9, | ||
16600 | 0x1700c5, | ||
16601 | 0x22015d, | ||
16602 | 0x23016c, | ||
16603 | 0x2000d7, | ||
16604 | 0x240148, | ||
16605 | 0x26004d, | ||
16606 | 0x27005c, | ||
16607 | 0x28008d, | ||
16608 | 0x290051, | ||
16609 | 0x2a007e, | ||
16610 | 0x2b0061, | ||
16611 | 0x2f0088, | ||
16612 | 0x3200aa, | ||
16613 | 0x3401a2, | ||
16614 | 0x36006f, | ||
16615 | 0x3c0179, | ||
16616 | 0x3f0095, | ||
16617 | 0x4101af, | ||
16618 | 0x440151, | ||
16619 | 0x550196, | ||
16620 | 0x56019d, | ||
16621 | 0x60000b, | ||
16622 | 0x610034, | ||
16623 | 0x620038, | ||
16624 | 0x630038, | ||
16625 | 0x640038, | ||
16626 | 0x650038, | ||
16627 | 0x660038, | ||
16628 | 0x670038, | ||
16629 | 0x68003a, | ||
16630 | 0x690041, | ||
16631 | 0x6a0048, | ||
16632 | 0x6b0048, | ||
16633 | 0x6c0048, | ||
16634 | 0x6d0048, | ||
16635 | 0x6e0048, | ||
16636 | 0x6f0048, | ||
16637 | 0x7301d9, | ||
16638 | 0x000006, | ||
16639 | 0x000006, | ||
16640 | 0x000006, | ||
16641 | 0x000006, | ||
16642 | 0x000006, | ||
16643 | 0x000006, | ||
16644 | 0x000006, | ||
16645 | 0x000006, | ||
16646 | 0x000006, | ||
16647 | 0x000006, | ||
16648 | 0x000006, | ||
16649 | 0x000006, | ||
16650 | 0x000006, | ||
16651 | 0x000006, | ||
16652 | 0x000006, | ||
16653 | }; | ||
16654 | |||
16655 | static const u32 RV770_cp_microcode[] = { | ||
16656 | 0xcc0003ea, | ||
16657 | 0x7c408000, | ||
16658 | 0xa0000000, | ||
16659 | 0xcc800062, | ||
16660 | 0x80000001, | ||
16661 | 0xd040007f, | ||
16662 | 0x80000001, | ||
16663 | 0xcc400041, | ||
16664 | 0x7c40c000, | ||
16665 | 0xc0160004, | ||
16666 | 0x30d03fff, | ||
16667 | 0x7d15000c, | ||
16668 | 0xcc110000, | ||
16669 | 0x28d8001e, | ||
16670 | 0x31980001, | ||
16671 | 0x28dc001f, | ||
16672 | 0xc8200004, | ||
16673 | 0x95c00006, | ||
16674 | 0x7c424000, | ||
16675 | 0xcc000062, | ||
16676 | 0x7e56800c, | ||
16677 | 0xcc290000, | ||
16678 | 0xc8240004, | ||
16679 | 0x7e26000b, | ||
16680 | 0x95800006, | ||
16681 | 0x7c42c000, | ||
16682 | 0xcc000062, | ||
16683 | 0x7ed7000c, | ||
16684 | 0xcc310000, | ||
16685 | 0xc82c0004, | ||
16686 | 0x7e2e000c, | ||
16687 | 0xcc000062, | ||
16688 | 0x31103fff, | ||
16689 | 0x80000001, | ||
16690 | 0xce110000, | ||
16691 | 0x7c40c000, | ||
16692 | 0x80000001, | ||
16693 | 0xcc400040, | ||
16694 | 0x80000001, | ||
16695 | 0xcc412257, | ||
16696 | 0x7c418000, | ||
16697 | 0xcc400045, | ||
16698 | 0xcc400048, | ||
16699 | 0xcc41225c, | ||
16700 | 0xcc41a1fc, | ||
16701 | 0x7c408000, | ||
16702 | 0xa0000000, | ||
16703 | 0xcc800062, | ||
16704 | 0xcc400045, | ||
16705 | 0xcc400048, | ||
16706 | 0x7c40c000, | ||
16707 | 0xcc41225c, | ||
16708 | 0xcc41a1fc, | ||
16709 | 0x7c408000, | ||
16710 | 0xa0000000, | ||
16711 | 0xcc800062, | ||
16712 | 0xcc000045, | ||
16713 | 0xcc000048, | ||
16714 | 0xcc41225c, | ||
16715 | 0xcc41a1fc, | ||
16716 | 0x7c408000, | ||
16717 | 0xa0000000, | ||
16718 | 0xcc800062, | ||
16719 | 0x040ca1fd, | ||
16720 | 0xc0120001, | ||
16721 | 0xcc000045, | ||
16722 | 0xcc000048, | ||
16723 | 0x7cd0c00c, | ||
16724 | 0xcc41225c, | ||
16725 | 0xcc41a1fc, | ||
16726 | 0xd04d0000, | ||
16727 | 0x7c408000, | ||
16728 | 0xa0000000, | ||
16729 | 0xcc800062, | ||
16730 | 0x80000001, | ||
16731 | 0xcc41225d, | ||
16732 | 0x7c408000, | ||
16733 | 0x7c40c000, | ||
16734 | 0xc02a0002, | ||
16735 | 0x7c410000, | ||
16736 | 0x7d29000c, | ||
16737 | 0x30940001, | ||
16738 | 0x30980006, | ||
16739 | 0x309c0300, | ||
16740 | 0x29dc0008, | ||
16741 | 0x7c420000, | ||
16742 | 0x7c424000, | ||
16743 | 0x9540000f, | ||
16744 | 0xc02e0004, | ||
16745 | 0x05f02258, | ||
16746 | 0x7f2f000c, | ||
16747 | 0xcc310000, | ||
16748 | 0xc8280004, | ||
16749 | 0xccc12169, | ||
16750 | 0xcd01216a, | ||
16751 | 0xce81216b, | ||
16752 | 0x0db40002, | ||
16753 | 0xcc01216c, | ||
16754 | 0x9740000e, | ||
16755 | 0x0db40000, | ||
16756 | 0x8000007b, | ||
16757 | 0xc834000a, | ||
16758 | 0x0db40002, | ||
16759 | 0x97400009, | ||
16760 | 0x0db40000, | ||
16761 | 0xc02e0004, | ||
16762 | 0x05f02258, | ||
16763 | 0x7f2f000c, | ||
16764 | 0xcc310000, | ||
16765 | 0xc8280004, | ||
16766 | 0x8000007b, | ||
16767 | 0xc834000a, | ||
16768 | 0x97400004, | ||
16769 | 0x7e028000, | ||
16770 | 0x8000007b, | ||
16771 | 0xc834000a, | ||
16772 | 0x0db40004, | ||
16773 | 0x9740ff8c, | ||
16774 | 0x00000000, | ||
16775 | 0xce01216d, | ||
16776 | 0xce41216e, | ||
16777 | 0xc8280003, | ||
16778 | 0xc834000a, | ||
16779 | 0x9b400004, | ||
16780 | 0x043c0005, | ||
16781 | 0x8400026d, | ||
16782 | 0xcc000062, | ||
16783 | 0x0df40000, | ||
16784 | 0x9740000b, | ||
16785 | 0xc82c03e6, | ||
16786 | 0xce81a2b7, | ||
16787 | 0xc0300006, | ||
16788 | 0x7ef34028, | ||
16789 | 0xc0300020, | ||
16790 | 0x7f6b8020, | ||
16791 | 0x7fb3c029, | ||
16792 | 0xcf81a2c4, | ||
16793 | 0x80000001, | ||
16794 | 0xcfc1a2d1, | ||
16795 | 0x0df40001, | ||
16796 | 0x9740000b, | ||
16797 | 0xc82c03e7, | ||
16798 | 0xce81a2bb, | ||
16799 | 0xc0300006, | ||
16800 | 0x7ef34028, | ||
16801 | 0xc0300020, | ||
16802 | 0x7f6b8020, | ||
16803 | 0x7fb3c029, | ||
16804 | 0xcf81a2c5, | ||
16805 | 0x80000001, | ||
16806 | 0xcfc1a2d2, | ||
16807 | 0x0df40002, | ||
16808 | 0x9740000b, | ||
16809 | 0xc82c03e8, | ||
16810 | 0xce81a2bf, | ||
16811 | 0xc0300006, | ||
16812 | 0x7ef34028, | ||
16813 | 0xc0300020, | ||
16814 | 0x7f6b8020, | ||
16815 | 0x7fb3c029, | ||
16816 | 0xcf81a2c6, | ||
16817 | 0x80000001, | ||
16818 | 0xcfc1a2d3, | ||
16819 | 0xc82c03e9, | ||
16820 | 0xce81a2c3, | ||
16821 | 0xc0300006, | ||
16822 | 0x7ef34028, | ||
16823 | 0xc0300020, | ||
16824 | 0x7f6b8020, | ||
16825 | 0x7fb3c029, | ||
16826 | 0xcf81a2c7, | ||
16827 | 0x80000001, | ||
16828 | 0xcfc1a2d4, | ||
16829 | 0x80000001, | ||
16830 | 0xcc400042, | ||
16831 | 0x7c40c000, | ||
16832 | 0x7c410000, | ||
16833 | 0x2914001d, | ||
16834 | 0x31540001, | ||
16835 | 0x9940000d, | ||
16836 | 0x31181000, | ||
16837 | 0xc81c0011, | ||
16838 | 0x09dc0001, | ||
16839 | 0x95c0ffff, | ||
16840 | 0xc81c0011, | ||
16841 | 0xccc12100, | ||
16842 | 0xcd012101, | ||
16843 | 0xccc12102, | ||
16844 | 0xcd012103, | ||
16845 | 0x04180004, | ||
16846 | 0x8000039f, | ||
16847 | 0xcd81a2a4, | ||
16848 | 0xc02a0004, | ||
16849 | 0x95800008, | ||
16850 | 0x36a821a3, | ||
16851 | 0xcc290000, | ||
16852 | 0xc8280004, | ||
16853 | 0xc81c0011, | ||
16854 | 0x0de40040, | ||
16855 | 0x9640ffff, | ||
16856 | 0xc81c0011, | ||
16857 | 0xccc12170, | ||
16858 | 0xcd012171, | ||
16859 | 0xc8200012, | ||
16860 | 0x96000000, | ||
16861 | 0xc8200012, | ||
16862 | 0x8000039f, | ||
16863 | 0xcc000064, | ||
16864 | 0x7c40c000, | ||
16865 | 0x7c410000, | ||
16866 | 0xcc000045, | ||
16867 | 0xcc000048, | ||
16868 | 0x40d40003, | ||
16869 | 0xcd41225c, | ||
16870 | 0xcd01a1fc, | ||
16871 | 0xc01a0001, | ||
16872 | 0x041ca1fd, | ||
16873 | 0x7dd9c00c, | ||
16874 | 0x7c420000, | ||
16875 | 0x08cc0001, | ||
16876 | 0x06240001, | ||
16877 | 0x06280002, | ||
16878 | 0xce1d0000, | ||
16879 | 0xce5d0000, | ||
16880 | 0x98c0fffa, | ||
16881 | 0xce9d0000, | ||
16882 | 0x7c408000, | ||
16883 | 0xa0000000, | ||
16884 | 0xcc800062, | ||
16885 | 0x7c40c000, | ||
16886 | 0x30d00001, | ||
16887 | 0x28cc0001, | ||
16888 | 0x7c414000, | ||
16889 | 0x95000006, | ||
16890 | 0x7c418000, | ||
16891 | 0xcd41216d, | ||
16892 | 0xcd81216e, | ||
16893 | 0x800000f3, | ||
16894 | 0xc81c0003, | ||
16895 | 0xc0220004, | ||
16896 | 0x7e16000c, | ||
16897 | 0xcc210000, | ||
16898 | 0xc81c0004, | ||
16899 | 0x7c424000, | ||
16900 | 0x98c00004, | ||
16901 | 0x7c428000, | ||
16902 | 0x80000001, | ||
16903 | 0xcde50000, | ||
16904 | 0xce412169, | ||
16905 | 0xce81216a, | ||
16906 | 0xcdc1216b, | ||
16907 | 0x80000001, | ||
16908 | 0xcc01216c, | ||
16909 | 0x7c40c000, | ||
16910 | 0x7c410000, | ||
16911 | 0x7c414000, | ||
16912 | 0x7c418000, | ||
16913 | 0x7c41c000, | ||
16914 | 0x28a40008, | ||
16915 | 0x326400ff, | ||
16916 | 0x0e68003c, | ||
16917 | 0x9680000a, | ||
16918 | 0x7c020000, | ||
16919 | 0x7c420000, | ||
16920 | 0x1e300003, | ||
16921 | 0xcc00006a, | ||
16922 | 0x9b000003, | ||
16923 | 0x42200005, | ||
16924 | 0x04200040, | ||
16925 | 0x80000110, | ||
16926 | 0x7c024000, | ||
16927 | 0x7e024000, | ||
16928 | 0x9a400000, | ||
16929 | 0x0a640001, | ||
16930 | 0x30ec0010, | ||
16931 | 0x9ac0000a, | ||
16932 | 0xcc000062, | ||
16933 | 0xc02a0004, | ||
16934 | 0xc82c0021, | ||
16935 | 0x7e92800c, | ||
16936 | 0xcc000041, | ||
16937 | 0xcc290000, | ||
16938 | 0xcec00021, | ||
16939 | 0x80000120, | ||
16940 | 0xc8300004, | ||
16941 | 0xcd01216d, | ||
16942 | 0xcd41216e, | ||
16943 | 0xc8300003, | ||
16944 | 0x7f1f000b, | ||
16945 | 0x30f40007, | ||
16946 | 0x27780001, | ||
16947 | 0x9740002a, | ||
16948 | 0x07b80125, | ||
16949 | 0x9f800000, | ||
16950 | 0x00000000, | ||
16951 | 0x80000135, | ||
16952 | 0x7f1b8004, | ||
16953 | 0x80000139, | ||
16954 | 0x7f1b8005, | ||
16955 | 0x8000013d, | ||
16956 | 0x7f1b8002, | ||
16957 | 0x80000141, | ||
16958 | 0x7f1b8003, | ||
16959 | 0x80000145, | ||
16960 | 0x7f1b8007, | ||
16961 | 0x80000149, | ||
16962 | 0x7f1b8006, | ||
16963 | 0x8000014e, | ||
16964 | 0x28a40008, | ||
16965 | 0x9b800019, | ||
16966 | 0x28a40008, | ||
16967 | 0x8000015e, | ||
16968 | 0x326400ff, | ||
16969 | 0x9b800015, | ||
16970 | 0x28a40008, | ||
16971 | 0x8000015e, | ||
16972 | 0x326400ff, | ||
16973 | 0x9b800011, | ||
16974 | 0x28a40008, | ||
16975 | 0x8000015e, | ||
16976 | 0x326400ff, | ||
16977 | 0x9b80000d, | ||
16978 | 0x28a40008, | ||
16979 | 0x8000015e, | ||
16980 | 0x326400ff, | ||
16981 | 0x9b800009, | ||
16982 | 0x28a40008, | ||
16983 | 0x8000015e, | ||
16984 | 0x326400ff, | ||
16985 | 0x9b800005, | ||
16986 | 0x28a40008, | ||
16987 | 0x8000015e, | ||
16988 | 0x326400ff, | ||
16989 | 0x28a40008, | ||
16990 | 0x326400ff, | ||
16991 | 0x0e68003c, | ||
16992 | 0x9a80feb1, | ||
16993 | 0x28ec0008, | ||
16994 | 0x7c434000, | ||
16995 | 0x7c438000, | ||
16996 | 0x7c43c000, | ||
16997 | 0x96c00007, | ||
16998 | 0xcc000062, | ||
16999 | 0xcf412169, | ||
17000 | 0xcf81216a, | ||
17001 | 0xcfc1216b, | ||
17002 | 0x80000001, | ||
17003 | 0xcc01216c, | ||
17004 | 0x80000001, | ||
17005 | 0xcff50000, | ||
17006 | 0xcc00006b, | ||
17007 | 0x840003a2, | ||
17008 | 0x0e68003c, | ||
17009 | 0x9a800004, | ||
17010 | 0xc8280015, | ||
17011 | 0x80000001, | ||
17012 | 0xd040007f, | ||
17013 | 0x9680ffab, | ||
17014 | 0x7e024000, | ||
17015 | 0x8400023b, | ||
17016 | 0xc00e0002, | ||
17017 | 0xcc000041, | ||
17018 | 0x80000239, | ||
17019 | 0xccc1304a, | ||
17020 | 0x7c40c000, | ||
17021 | 0x7c410000, | ||
17022 | 0xc01e0001, | ||
17023 | 0x29240012, | ||
17024 | 0xc0220002, | ||
17025 | 0x96400005, | ||
17026 | 0xc0260004, | ||
17027 | 0xc027fffb, | ||
17028 | 0x7d25000b, | ||
17029 | 0xc0260000, | ||
17030 | 0x7dd2800b, | ||
17031 | 0x7e12c00b, | ||
17032 | 0x7d25000c, | ||
17033 | 0x7c414000, | ||
17034 | 0x7c418000, | ||
17035 | 0xccc12169, | ||
17036 | 0x9a80000a, | ||
17037 | 0xcd01216a, | ||
17038 | 0xcd41216b, | ||
17039 | 0x96c0fe82, | ||
17040 | 0xcd81216c, | ||
17041 | 0xc8300018, | ||
17042 | 0x97000000, | ||
17043 | 0xc8300018, | ||
17044 | 0x80000001, | ||
17045 | 0xcc000018, | ||
17046 | 0x840003a2, | ||
17047 | 0xcc00007f, | ||
17048 | 0xc8140013, | ||
17049 | 0xc8180014, | ||
17050 | 0xcd41216b, | ||
17051 | 0x96c0fe76, | ||
17052 | 0xcd81216c, | ||
17053 | 0x80000182, | ||
17054 | 0xc8300018, | ||
17055 | 0xc80c0008, | ||
17056 | 0x98c00000, | ||
17057 | 0xc80c0008, | ||
17058 | 0x7c410000, | ||
17059 | 0x95000002, | ||
17060 | 0x00000000, | ||
17061 | 0x7c414000, | ||
17062 | 0xc8200009, | ||
17063 | 0xcc400043, | ||
17064 | 0xce01a1f4, | ||
17065 | 0xcc400044, | ||
17066 | 0xc00e8000, | ||
17067 | 0x7c424000, | ||
17068 | 0x7c428000, | ||
17069 | 0x2aac001f, | ||
17070 | 0x96c0fe63, | ||
17071 | 0xc035f000, | ||
17072 | 0xce4003e2, | ||
17073 | 0x32780003, | ||
17074 | 0x267c0008, | ||
17075 | 0x7ff7c00b, | ||
17076 | 0x7ffbc00c, | ||
17077 | 0x2a780018, | ||
17078 | 0xcfc003e3, | ||
17079 | 0xcf8003e4, | ||
17080 | 0x26b00002, | ||
17081 | 0x7f3f0000, | ||
17082 | 0xcf0003e5, | ||
17083 | 0x8000031f, | ||
17084 | 0x7c80c000, | ||
17085 | 0x7c40c000, | ||
17086 | 0x28d00008, | ||
17087 | 0x3110000f, | ||
17088 | 0x9500000f, | ||
17089 | 0x25280001, | ||
17090 | 0x06a801b3, | ||
17091 | 0x9e800000, | ||
17092 | 0x00000000, | ||
17093 | 0x800001d4, | ||
17094 | 0xc0120800, | ||
17095 | 0x800001e2, | ||
17096 | 0xc814000f, | ||
17097 | 0x800001e9, | ||
17098 | 0xc8140010, | ||
17099 | 0x800001f0, | ||
17100 | 0xccc1a2a4, | ||
17101 | 0x800001f9, | ||
17102 | 0xc8140011, | ||
17103 | 0x30d0003f, | ||
17104 | 0x0d280015, | ||
17105 | 0x9a800012, | ||
17106 | 0x0d28001e, | ||
17107 | 0x9a80001e, | ||
17108 | 0x0d280020, | ||
17109 | 0x9a800023, | ||
17110 | 0x0d24000f, | ||
17111 | 0x0d280010, | ||
17112 | 0x7e6a800c, | ||
17113 | 0x9a800026, | ||
17114 | 0x0d200004, | ||
17115 | 0x0d240014, | ||
17116 | 0x0d280028, | ||
17117 | 0x7e62400c, | ||
17118 | 0x7ea6800c, | ||
17119 | 0x9a80002a, | ||
17120 | 0xc8140011, | ||
17121 | 0x80000001, | ||
17122 | 0xccc1a2a4, | ||
17123 | 0xc0120800, | ||
17124 | 0x7c414000, | ||
17125 | 0x7d0cc00c, | ||
17126 | 0xc0120008, | ||
17127 | 0x29580003, | ||
17128 | 0x295c000c, | ||
17129 | 0x7c420000, | ||
17130 | 0x7dd1c00b, | ||
17131 | 0x26200014, | ||
17132 | 0x7e1e400c, | ||
17133 | 0x7e4e800c, | ||
17134 | 0xce81a2a4, | ||
17135 | 0x80000001, | ||
17136 | 0xcd81a1fe, | ||
17137 | 0xc814000f, | ||
17138 | 0x0410210e, | ||
17139 | 0x95400000, | ||
17140 | 0xc814000f, | ||
17141 | 0xd0510000, | ||
17142 | 0x80000001, | ||
17143 | 0xccc1a2a4, | ||
17144 | 0xc8140010, | ||
17145 | 0x04102108, | ||
17146 | 0x95400000, | ||
17147 | 0xc8140010, | ||
17148 | 0xd0510000, | ||
17149 | 0x80000001, | ||
17150 | 0xccc1a2a4, | ||
17151 | 0xccc1a2a4, | ||
17152 | 0x04100001, | ||
17153 | 0xcd000019, | ||
17154 | 0x840003a2, | ||
17155 | 0xcc00007f, | ||
17156 | 0xc8100019, | ||
17157 | 0x99000000, | ||
17158 | 0xc8100019, | ||
17159 | 0x80000002, | ||
17160 | 0x7c408000, | ||
17161 | 0x04102100, | ||
17162 | 0x09540001, | ||
17163 | 0x9540ffff, | ||
17164 | 0xc8140011, | ||
17165 | 0xd0510000, | ||
17166 | 0x8000039f, | ||
17167 | 0xccc1a2a4, | ||
17168 | 0x7c40c000, | ||
17169 | 0xcc40000d, | ||
17170 | 0x94c0fdff, | ||
17171 | 0xcc40000e, | ||
17172 | 0x7c410000, | ||
17173 | 0x95000005, | ||
17174 | 0x08cc0001, | ||
17175 | 0xc8140005, | ||
17176 | 0x99400014, | ||
17177 | 0x00000000, | ||
17178 | 0x98c0fffb, | ||
17179 | 0x7c410000, | ||
17180 | 0x80000002, | ||
17181 | 0x7d008000, | ||
17182 | 0xc8140005, | ||
17183 | 0x7c40c000, | ||
17184 | 0x9940000c, | ||
17185 | 0xc818000c, | ||
17186 | 0x7c410000, | ||
17187 | 0x9580fdee, | ||
17188 | 0xc820000e, | ||
17189 | 0xc81c000d, | ||
17190 | 0x66200020, | ||
17191 | 0x7e1e002c, | ||
17192 | 0x25240002, | ||
17193 | 0x7e624020, | ||
17194 | 0x80000001, | ||
17195 | 0xcce60000, | ||
17196 | 0x7c410000, | ||
17197 | 0xcc00006c, | ||
17198 | 0xcc00006d, | ||
17199 | 0xc818001f, | ||
17200 | 0xc81c001e, | ||
17201 | 0x65980020, | ||
17202 | 0x7dd9c02c, | ||
17203 | 0x7cd4c00c, | ||
17204 | 0xccde0000, | ||
17205 | 0x45dc0004, | ||
17206 | 0xc8280017, | ||
17207 | 0x9680000f, | ||
17208 | 0xc00e0001, | ||
17209 | 0x28680008, | ||
17210 | 0x2aac0016, | ||
17211 | 0x32a800ff, | ||
17212 | 0x0eb00049, | ||
17213 | 0x7f2f000b, | ||
17214 | 0x97000006, | ||
17215 | 0x00000000, | ||
17216 | 0xc8140005, | ||
17217 | 0x7c40c000, | ||
17218 | 0x80000223, | ||
17219 | 0x7c410000, | ||
17220 | 0x80000226, | ||
17221 | 0xd040007f, | ||
17222 | 0x8400023b, | ||
17223 | 0xcc000041, | ||
17224 | 0xccc1304a, | ||
17225 | 0x94000000, | ||
17226 | 0xc83c001a, | ||
17227 | 0x043c0005, | ||
17228 | 0xcfc1a2a4, | ||
17229 | 0xc0361f90, | ||
17230 | 0xc0387fff, | ||
17231 | 0x7c03c010, | ||
17232 | 0x7f7b400c, | ||
17233 | 0xcf41217c, | ||
17234 | 0xcfc1217d, | ||
17235 | 0xcc01217e, | ||
17236 | 0xc03a0004, | ||
17237 | 0x0434217f, | ||
17238 | 0x7f7b400c, | ||
17239 | 0xcc350000, | ||
17240 | 0xc83c0004, | ||
17241 | 0x2bfc001f, | ||
17242 | 0x04380020, | ||
17243 | 0x97c00005, | ||
17244 | 0xcc000062, | ||
17245 | 0x9b800000, | ||
17246 | 0x0bb80001, | ||
17247 | 0x80000247, | ||
17248 | 0xcc000071, | ||
17249 | 0xcc01a1f4, | ||
17250 | 0x04380016, | ||
17251 | 0xc0360002, | ||
17252 | 0xcf81a2a4, | ||
17253 | 0x88000000, | ||
17254 | 0xcf412010, | ||
17255 | 0x7c40c000, | ||
17256 | 0x28d0001c, | ||
17257 | 0x95000005, | ||
17258 | 0x04d40001, | ||
17259 | 0xcd400065, | ||
17260 | 0x80000001, | ||
17261 | 0xcd400068, | ||
17262 | 0x09540002, | ||
17263 | 0x80000001, | ||
17264 | 0xcd400066, | ||
17265 | 0x8400026c, | ||
17266 | 0xc81803ea, | ||
17267 | 0x7c40c000, | ||
17268 | 0x9980fd9d, | ||
17269 | 0xc8140016, | ||
17270 | 0x08d00001, | ||
17271 | 0x9940002b, | ||
17272 | 0xcd000068, | ||
17273 | 0x7c408000, | ||
17274 | 0xa0000000, | ||
17275 | 0xcc800062, | ||
17276 | 0x043c0005, | ||
17277 | 0xcfc1a2a4, | ||
17278 | 0xcc01a1f4, | ||
17279 | 0x840003a2, | ||
17280 | 0xcc000046, | ||
17281 | 0x88000000, | ||
17282 | 0xcc00007f, | ||
17283 | 0x8400027e, | ||
17284 | 0xc81803ea, | ||
17285 | 0x7c40c000, | ||
17286 | 0x9980fd8b, | ||
17287 | 0xc8140016, | ||
17288 | 0x08d00001, | ||
17289 | 0x99400019, | ||
17290 | 0xcd000068, | ||
17291 | 0x7c408000, | ||
17292 | 0xa0000000, | ||
17293 | 0xcc800062, | ||
17294 | 0x043c0022, | ||
17295 | 0xcfc1a2a4, | ||
17296 | 0x840003a2, | ||
17297 | 0xcc000047, | ||
17298 | 0x88000000, | ||
17299 | 0xcc00007f, | ||
17300 | 0xc8100016, | ||
17301 | 0x9900000d, | ||
17302 | 0xcc400067, | ||
17303 | 0x80000002, | ||
17304 | 0x7c408000, | ||
17305 | 0xc81803ea, | ||
17306 | 0x9980fd77, | ||
17307 | 0x7c40c000, | ||
17308 | 0x94c00003, | ||
17309 | 0xc8100016, | ||
17310 | 0x99000004, | ||
17311 | 0xccc00068, | ||
17312 | 0x80000002, | ||
17313 | 0x7c408000, | ||
17314 | 0x8400023b, | ||
17315 | 0xc0148000, | ||
17316 | 0xcc000041, | ||
17317 | 0xcd41304a, | ||
17318 | 0xc0148000, | ||
17319 | 0x99000000, | ||
17320 | 0xc8100016, | ||
17321 | 0x80000002, | ||
17322 | 0x7c408000, | ||
17323 | 0xc0120001, | ||
17324 | 0x7c51400c, | ||
17325 | 0x80000001, | ||
17326 | 0xd0550000, | ||
17327 | 0x7c40c000, | ||
17328 | 0x7c410000, | ||
17329 | 0x7c414000, | ||
17330 | 0x7c418000, | ||
17331 | 0x291c001f, | ||
17332 | 0xccc0004a, | ||
17333 | 0xcd00004b, | ||
17334 | 0x95c00003, | ||
17335 | 0xc01c8000, | ||
17336 | 0xcdc12010, | ||
17337 | 0xdd830000, | ||
17338 | 0x055c2000, | ||
17339 | 0xcc000062, | ||
17340 | 0x80000001, | ||
17341 | 0xd81f4100, | ||
17342 | 0x7c40c000, | ||
17343 | 0x7c410000, | ||
17344 | 0x7c414000, | ||
17345 | 0x7c418000, | ||
17346 | 0xccc0004c, | ||
17347 | 0xcd00004d, | ||
17348 | 0xdd830000, | ||
17349 | 0x055ca000, | ||
17350 | 0x80000001, | ||
17351 | 0xd81f4100, | ||
17352 | 0x7c40c000, | ||
17353 | 0x7c410000, | ||
17354 | 0x7c414000, | ||
17355 | 0x7c418000, | ||
17356 | 0xccc0004e, | ||
17357 | 0xcd00004f, | ||
17358 | 0xdd830000, | ||
17359 | 0x055cc000, | ||
17360 | 0x80000001, | ||
17361 | 0xd81f4100, | ||
17362 | 0x7c40c000, | ||
17363 | 0x7c410000, | ||
17364 | 0x7c414000, | ||
17365 | 0x7c418000, | ||
17366 | 0xccc00050, | ||
17367 | 0xcd000051, | ||
17368 | 0xdd830000, | ||
17369 | 0x055cf8e0, | ||
17370 | 0x80000001, | ||
17371 | 0xd81f4100, | ||
17372 | 0x7c40c000, | ||
17373 | 0x7c410000, | ||
17374 | 0x7c414000, | ||
17375 | 0x7c418000, | ||
17376 | 0xccc00052, | ||
17377 | 0xcd000053, | ||
17378 | 0xdd830000, | ||
17379 | 0x055cf880, | ||
17380 | 0x80000001, | ||
17381 | 0xd81f4100, | ||
17382 | 0x7c40c000, | ||
17383 | 0x7c410000, | ||
17384 | 0x7c414000, | ||
17385 | 0x7c418000, | ||
17386 | 0xccc00054, | ||
17387 | 0xcd000055, | ||
17388 | 0xdd830000, | ||
17389 | 0x055ce000, | ||
17390 | 0x80000001, | ||
17391 | 0xd81f4100, | ||
17392 | 0x7c40c000, | ||
17393 | 0x7c410000, | ||
17394 | 0x7c414000, | ||
17395 | 0x7c418000, | ||
17396 | 0xccc00056, | ||
17397 | 0xcd000057, | ||
17398 | 0xdd830000, | ||
17399 | 0x055cf000, | ||
17400 | 0x80000001, | ||
17401 | 0xd81f4100, | ||
17402 | 0x7c40c000, | ||
17403 | 0x7c410000, | ||
17404 | 0x7c414000, | ||
17405 | 0x7c418000, | ||
17406 | 0xccc00058, | ||
17407 | 0xcd000059, | ||
17408 | 0xdd830000, | ||
17409 | 0x055cf3fc, | ||
17410 | 0x80000001, | ||
17411 | 0xd81f4100, | ||
17412 | 0xd0432000, | ||
17413 | 0x7c408000, | ||
17414 | 0xa0000000, | ||
17415 | 0xcc800062, | ||
17416 | 0xd043a000, | ||
17417 | 0x7c408000, | ||
17418 | 0xa0000000, | ||
17419 | 0xcc800062, | ||
17420 | 0xd043c000, | ||
17421 | 0x7c408000, | ||
17422 | 0xa0000000, | ||
17423 | 0xcc800062, | ||
17424 | 0xd043f8e0, | ||
17425 | 0x7c408000, | ||
17426 | 0xa0000000, | ||
17427 | 0xcc800062, | ||
17428 | 0xd043f880, | ||
17429 | 0x7c408000, | ||
17430 | 0xa0000000, | ||
17431 | 0xcc800062, | ||
17432 | 0xd043e000, | ||
17433 | 0x7c408000, | ||
17434 | 0xa0000000, | ||
17435 | 0xcc800062, | ||
17436 | 0xd043f000, | ||
17437 | 0x7c408000, | ||
17438 | 0xa0000000, | ||
17439 | 0xcc800062, | ||
17440 | 0xd043f3fc, | ||
17441 | 0x7c408000, | ||
17442 | 0xa0000000, | ||
17443 | 0xcc800062, | ||
17444 | 0xc81403e0, | ||
17445 | 0xcc430000, | ||
17446 | 0xcc430000, | ||
17447 | 0xcc430000, | ||
17448 | 0x7d45c000, | ||
17449 | 0xcdc30000, | ||
17450 | 0xd0430000, | ||
17451 | 0x7c408000, | ||
17452 | 0xa0000000, | ||
17453 | 0xcc800062, | ||
17454 | 0x7c40c000, | ||
17455 | 0xc81003e2, | ||
17456 | 0xc81403e5, | ||
17457 | 0xc81803e3, | ||
17458 | 0xc81c03e4, | ||
17459 | 0xcd812169, | ||
17460 | 0xcdc1216a, | ||
17461 | 0xccc1216b, | ||
17462 | 0xcc01216c, | ||
17463 | 0x04200004, | ||
17464 | 0x7da18000, | ||
17465 | 0x7d964002, | ||
17466 | 0x9640fcd7, | ||
17467 | 0xcd8003e3, | ||
17468 | 0x31280003, | ||
17469 | 0xc02df000, | ||
17470 | 0x25180008, | ||
17471 | 0x7dad800b, | ||
17472 | 0x7da9800c, | ||
17473 | 0x80000001, | ||
17474 | 0xcd8003e3, | ||
17475 | 0x308cffff, | ||
17476 | 0xd04d0000, | ||
17477 | 0x7c408000, | ||
17478 | 0xa0000000, | ||
17479 | 0xcc800062, | ||
17480 | 0x7c40c000, | ||
17481 | 0x7c410000, | ||
17482 | 0x29240018, | ||
17483 | 0x32640001, | ||
17484 | 0x9a400013, | ||
17485 | 0xc8140020, | ||
17486 | 0x15580002, | ||
17487 | 0x9580ffff, | ||
17488 | 0xc8140020, | ||
17489 | 0xcc00006e, | ||
17490 | 0xccc12180, | ||
17491 | 0xcd01218d, | ||
17492 | 0xcc412181, | ||
17493 | 0x2914001f, | ||
17494 | 0x34588000, | ||
17495 | 0xcd81218c, | ||
17496 | 0x9540fcb9, | ||
17497 | 0xcc412182, | ||
17498 | 0xc8140020, | ||
17499 | 0x9940ffff, | ||
17500 | 0xc8140020, | ||
17501 | 0x80000002, | ||
17502 | 0x7c408000, | ||
17503 | 0x7c414000, | ||
17504 | 0x7c418000, | ||
17505 | 0x7c41c000, | ||
17506 | 0x65b40020, | ||
17507 | 0x7f57402c, | ||
17508 | 0xd4378100, | ||
17509 | 0x47740004, | ||
17510 | 0xd4378100, | ||
17511 | 0x47740004, | ||
17512 | 0xd4378100, | ||
17513 | 0x47740004, | ||
17514 | 0x09dc0004, | ||
17515 | 0xd4378100, | ||
17516 | 0x99c0fff8, | ||
17517 | 0x47740004, | ||
17518 | 0x2924001f, | ||
17519 | 0xc0380019, | ||
17520 | 0x9640fca1, | ||
17521 | 0xc03e0004, | ||
17522 | 0xcf8121f8, | ||
17523 | 0x37e021f9, | ||
17524 | 0xcc210000, | ||
17525 | 0xc8200004, | ||
17526 | 0x2a200018, | ||
17527 | 0x32200001, | ||
17528 | 0x9a00fffb, | ||
17529 | 0xcf8121f8, | ||
17530 | 0x80000002, | ||
17531 | 0x7c408000, | ||
17532 | 0x7c40c000, | ||
17533 | 0x28d00018, | ||
17534 | 0x31100001, | ||
17535 | 0xc0160080, | ||
17536 | 0x95000003, | ||
17537 | 0xc02a0004, | ||
17538 | 0x7cd4c00c, | ||
17539 | 0xccc1217c, | ||
17540 | 0xcc41217d, | ||
17541 | 0xcc41217e, | ||
17542 | 0x7c418000, | ||
17543 | 0x1db00003, | ||
17544 | 0x36a0217f, | ||
17545 | 0x9b000003, | ||
17546 | 0x419c0005, | ||
17547 | 0x041c0040, | ||
17548 | 0x99c00000, | ||
17549 | 0x09dc0001, | ||
17550 | 0xcc210000, | ||
17551 | 0xc8240004, | ||
17552 | 0x2a6c001f, | ||
17553 | 0x419c0005, | ||
17554 | 0x9ac0fffa, | ||
17555 | 0xcc800062, | ||
17556 | 0x80000002, | ||
17557 | 0x7c408000, | ||
17558 | 0x7c40c000, | ||
17559 | 0x04d403e6, | ||
17560 | 0x80000001, | ||
17561 | 0xcc540000, | ||
17562 | 0x8000039f, | ||
17563 | 0xcc4003ea, | ||
17564 | 0xc01c8000, | ||
17565 | 0x044ca000, | ||
17566 | 0xcdc12010, | ||
17567 | 0x7c410000, | ||
17568 | 0xc8140009, | ||
17569 | 0x04180000, | ||
17570 | 0x041c0008, | ||
17571 | 0xcd800071, | ||
17572 | 0x09dc0001, | ||
17573 | 0x05980001, | ||
17574 | 0xcd0d0000, | ||
17575 | 0x99c0fffc, | ||
17576 | 0xcc800062, | ||
17577 | 0x8000039f, | ||
17578 | 0xcd400071, | ||
17579 | 0xc00e0100, | ||
17580 | 0xcc000041, | ||
17581 | 0xccc1304a, | ||
17582 | 0xc83c007f, | ||
17583 | 0xcc00007f, | ||
17584 | 0x80000001, | ||
17585 | 0xcc00007f, | ||
17586 | 0xcc00007f, | ||
17587 | 0x88000000, | ||
17588 | 0xcc00007f, | ||
17589 | 0x00000000, | ||
17590 | 0x00000000, | ||
17591 | 0x00000000, | ||
17592 | 0x00000000, | ||
17593 | 0x00000000, | ||
17594 | 0x00000000, | ||
17595 | 0x00000000, | ||
17596 | 0x00000000, | ||
17597 | 0x00000000, | ||
17598 | 0x00000000, | ||
17599 | 0x00000000, | ||
17600 | 0x00000000, | ||
17601 | 0x00000000, | ||
17602 | 0x00000000, | ||
17603 | 0x00000000, | ||
17604 | 0x00000000, | ||
17605 | 0x00000000, | ||
17606 | 0x00000000, | ||
17607 | 0x00000000, | ||
17608 | 0x00000000, | ||
17609 | 0x00000000, | ||
17610 | 0x00000000, | ||
17611 | 0x00000000, | ||
17612 | 0x00000000, | ||
17613 | 0x00000000, | ||
17614 | 0x00000000, | ||
17615 | 0x00000000, | ||
17616 | 0x00000000, | ||
17617 | 0x00000000, | ||
17618 | 0x00000000, | ||
17619 | 0x00000000, | ||
17620 | 0x00000000, | ||
17621 | 0x00000000, | ||
17622 | 0x00000000, | ||
17623 | 0x00000000, | ||
17624 | 0x00000000, | ||
17625 | 0x00000000, | ||
17626 | 0x00000000, | ||
17627 | 0x00000000, | ||
17628 | 0x00000000, | ||
17629 | 0x00000000, | ||
17630 | 0x00000000, | ||
17631 | 0x00000000, | ||
17632 | 0x00000000, | ||
17633 | 0x00000000, | ||
17634 | 0x00000000, | ||
17635 | 0x00000000, | ||
17636 | 0x00000000, | ||
17637 | 0x00000000, | ||
17638 | 0x00000000, | ||
17639 | 0x00000000, | ||
17640 | 0x00000000, | ||
17641 | 0x00000000, | ||
17642 | 0x00000000, | ||
17643 | 0x00000000, | ||
17644 | 0x00000000, | ||
17645 | 0x00000000, | ||
17646 | 0x00000000, | ||
17647 | 0x00000000, | ||
17648 | 0x00000000, | ||
17649 | 0x00000000, | ||
17650 | 0x00000000, | ||
17651 | 0x00000000, | ||
17652 | 0x00000000, | ||
17653 | 0x00000000, | ||
17654 | 0x00000000, | ||
17655 | 0x00000000, | ||
17656 | 0x00000000, | ||
17657 | 0x00000000, | ||
17658 | 0x00000000, | ||
17659 | 0x00000000, | ||
17660 | 0x00000000, | ||
17661 | 0x00000000, | ||
17662 | 0x00000000, | ||
17663 | 0x00000000, | ||
17664 | 0x00000000, | ||
17665 | 0x00000000, | ||
17666 | 0x00000000, | ||
17667 | 0x00000000, | ||
17668 | 0x00000000, | ||
17669 | 0x00000000, | ||
17670 | 0x00000000, | ||
17671 | 0x00000000, | ||
17672 | 0x00000000, | ||
17673 | 0x00000000, | ||
17674 | 0x00000000, | ||
17675 | 0x00000000, | ||
17676 | 0x00000000, | ||
17677 | 0x00000000, | ||
17678 | 0x00000000, | ||
17679 | 0x00000000, | ||
17680 | 0x00000000, | ||
17681 | 0x00000000, | ||
17682 | 0x00000000, | ||
17683 | 0x00000000, | ||
17684 | 0x00000000, | ||
17685 | 0x00000000, | ||
17686 | 0x00000000, | ||
17687 | 0x00000000, | ||
17688 | 0x00000000, | ||
17689 | 0x00000000, | ||
17690 | 0x00000000, | ||
17691 | 0x00000000, | ||
17692 | 0x00000000, | ||
17693 | 0x00000000, | ||
17694 | 0x00000000, | ||
17695 | 0x00000000, | ||
17696 | 0x00000000, | ||
17697 | 0x00000000, | ||
17698 | 0x00000000, | ||
17699 | 0x00000000, | ||
17700 | 0x00000000, | ||
17701 | 0x00000000, | ||
17702 | 0x00000000, | ||
17703 | 0x00000000, | ||
17704 | 0x00000000, | ||
17705 | 0x00000000, | ||
17706 | 0x00000000, | ||
17707 | 0x00000000, | ||
17708 | 0x00000000, | ||
17709 | 0x00000000, | ||
17710 | 0x00000000, | ||
17711 | 0x00000000, | ||
17712 | 0x00000000, | ||
17713 | 0x00000000, | ||
17714 | 0x00000000, | ||
17715 | 0x00000000, | ||
17716 | 0x00000000, | ||
17717 | 0x00000000, | ||
17718 | 0x00000000, | ||
17719 | 0x00000000, | ||
17720 | 0x00000000, | ||
17721 | 0x00000000, | ||
17722 | 0x00000000, | ||
17723 | 0x00000000, | ||
17724 | 0x00000000, | ||
17725 | 0x00000000, | ||
17726 | 0x00000000, | ||
17727 | 0x00000000, | ||
17728 | 0x00000000, | ||
17729 | 0x00000000, | ||
17730 | 0x00000000, | ||
17731 | 0x00000000, | ||
17732 | 0x00000000, | ||
17733 | 0x00000000, | ||
17734 | 0x00000000, | ||
17735 | 0x00000000, | ||
17736 | 0x00000000, | ||
17737 | 0x00000000, | ||
17738 | 0x00000000, | ||
17739 | 0x00000000, | ||
17740 | 0x00000000, | ||
17741 | 0x00000000, | ||
17742 | 0x00000000, | ||
17743 | 0x00000000, | ||
17744 | 0x00000000, | ||
17745 | 0x00000000, | ||
17746 | 0x00000000, | ||
17747 | 0x00000000, | ||
17748 | 0x00000000, | ||
17749 | 0x00000000, | ||
17750 | 0x00000000, | ||
17751 | 0x00000000, | ||
17752 | 0x00000000, | ||
17753 | 0x00000000, | ||
17754 | 0x00000000, | ||
17755 | 0x00000000, | ||
17756 | 0x00000000, | ||
17757 | 0x00000000, | ||
17758 | 0x00000000, | ||
17759 | 0x00000000, | ||
17760 | 0x00000000, | ||
17761 | 0x00000000, | ||
17762 | 0x00000000, | ||
17763 | 0x00000000, | ||
17764 | 0x00000000, | ||
17765 | 0x00000000, | ||
17766 | 0x00000000, | ||
17767 | 0x00000000, | ||
17768 | 0x00000000, | ||
17769 | 0x00000000, | ||
17770 | 0x00000000, | ||
17771 | 0x00000000, | ||
17772 | 0x00000000, | ||
17773 | 0x00000000, | ||
17774 | 0x00000000, | ||
17775 | 0x00000000, | ||
17776 | 0x00000000, | ||
17777 | 0x00000000, | ||
17778 | 0x00000000, | ||
17779 | 0x00000000, | ||
17780 | 0x00000000, | ||
17781 | 0x00000000, | ||
17782 | 0x00000000, | ||
17783 | 0x00000000, | ||
17784 | 0x00000000, | ||
17785 | 0x00000000, | ||
17786 | 0x00000000, | ||
17787 | 0x00000000, | ||
17788 | 0x00000000, | ||
17789 | 0x00000000, | ||
17790 | 0x00000000, | ||
17791 | 0x00000000, | ||
17792 | 0x00000000, | ||
17793 | 0x00000000, | ||
17794 | 0x00000000, | ||
17795 | 0x00000000, | ||
17796 | 0x00000000, | ||
17797 | 0x00000000, | ||
17798 | 0x00000000, | ||
17799 | 0x00000000, | ||
17800 | 0x00000000, | ||
17801 | 0x00000000, | ||
17802 | 0x00000000, | ||
17803 | 0x00000000, | ||
17804 | 0x00000000, | ||
17805 | 0x00000000, | ||
17806 | 0x00000000, | ||
17807 | 0x00000000, | ||
17808 | 0x00000000, | ||
17809 | 0x00000000, | ||
17810 | 0x00000000, | ||
17811 | 0x00000000, | ||
17812 | 0x00000000, | ||
17813 | 0x00000000, | ||
17814 | 0x00000000, | ||
17815 | 0x00000000, | ||
17816 | 0x00000000, | ||
17817 | 0x00000000, | ||
17818 | 0x00000000, | ||
17819 | 0x00000000, | ||
17820 | 0x00000000, | ||
17821 | 0x00000000, | ||
17822 | 0x00000000, | ||
17823 | 0x00000000, | ||
17824 | 0x00000000, | ||
17825 | 0x00000000, | ||
17826 | 0x00000000, | ||
17827 | 0x00000000, | ||
17828 | 0x00000000, | ||
17829 | 0x00000000, | ||
17830 | 0x00000000, | ||
17831 | 0x00000000, | ||
17832 | 0x00000000, | ||
17833 | 0x00000000, | ||
17834 | 0x00000000, | ||
17835 | 0x00000000, | ||
17836 | 0x00000000, | ||
17837 | 0x00000000, | ||
17838 | 0x00000000, | ||
17839 | 0x00000000, | ||
17840 | 0x00000000, | ||
17841 | 0x00000000, | ||
17842 | 0x00000000, | ||
17843 | 0x00000000, | ||
17844 | 0x00000000, | ||
17845 | 0x00000000, | ||
17846 | 0x00000000, | ||
17847 | 0x00000000, | ||
17848 | 0x00000000, | ||
17849 | 0x00000000, | ||
17850 | 0x00000000, | ||
17851 | 0x00000000, | ||
17852 | 0x00000000, | ||
17853 | 0x00000000, | ||
17854 | 0x00000000, | ||
17855 | 0x00000000, | ||
17856 | 0x00000000, | ||
17857 | 0x00000000, | ||
17858 | 0x00000000, | ||
17859 | 0x00000000, | ||
17860 | 0x00000000, | ||
17861 | 0x00000000, | ||
17862 | 0x00000000, | ||
17863 | 0x00000000, | ||
17864 | 0x00000000, | ||
17865 | 0x00000000, | ||
17866 | 0x00000000, | ||
17867 | 0x00000000, | ||
17868 | 0x00000000, | ||
17869 | 0x00000000, | ||
17870 | 0x00000000, | ||
17871 | 0x00000000, | ||
17872 | 0x00000000, | ||
17873 | 0x00000000, | ||
17874 | 0x00000000, | ||
17875 | 0x00000000, | ||
17876 | 0x00000000, | ||
17877 | 0x00000000, | ||
17878 | 0x00000000, | ||
17879 | 0x00000000, | ||
17880 | 0x00000000, | ||
17881 | 0x00000000, | ||
17882 | 0x00000000, | ||
17883 | 0x00000000, | ||
17884 | 0x00000000, | ||
17885 | 0x00000000, | ||
17886 | 0x00000000, | ||
17887 | 0x00000000, | ||
17888 | 0x00000000, | ||
17889 | 0x00000000, | ||
17890 | 0x00000000, | ||
17891 | 0x00000000, | ||
17892 | 0x00000000, | ||
17893 | 0x00000000, | ||
17894 | 0x00000000, | ||
17895 | 0x00000000, | ||
17896 | 0x00000000, | ||
17897 | 0x00000000, | ||
17898 | 0x00000000, | ||
17899 | 0x00000000, | ||
17900 | 0x00000000, | ||
17901 | 0x00000000, | ||
17902 | 0x00000000, | ||
17903 | 0x00000000, | ||
17904 | 0x00000000, | ||
17905 | 0x00000000, | ||
17906 | 0x00000000, | ||
17907 | 0x00000000, | ||
17908 | 0x00000000, | ||
17909 | 0x00000000, | ||
17910 | 0x00000000, | ||
17911 | 0x00000000, | ||
17912 | 0x00000000, | ||
17913 | 0x00000000, | ||
17914 | 0x00000000, | ||
17915 | 0x00000000, | ||
17916 | 0x00000000, | ||
17917 | 0x00000000, | ||
17918 | 0x00000000, | ||
17919 | 0x00000000, | ||
17920 | 0x00000000, | ||
17921 | 0x00000000, | ||
17922 | 0x00000000, | ||
17923 | 0x00000000, | ||
17924 | 0x00000000, | ||
17925 | 0x00000000, | ||
17926 | 0x00000000, | ||
17927 | 0x00000000, | ||
17928 | 0x00000000, | ||
17929 | 0x00000000, | ||
17930 | 0x00000000, | ||
17931 | 0x00000000, | ||
17932 | 0x00000000, | ||
17933 | 0x00000000, | ||
17934 | 0x00000000, | ||
17935 | 0x00000000, | ||
17936 | 0x00010333, | ||
17937 | 0x00100004, | ||
17938 | 0x00170006, | ||
17939 | 0x00210008, | ||
17940 | 0x00270028, | ||
17941 | 0x00280023, | ||
17942 | 0x00290029, | ||
17943 | 0x002a0026, | ||
17944 | 0x002b0029, | ||
17945 | 0x002d0038, | ||
17946 | 0x002e003f, | ||
17947 | 0x002f004a, | ||
17948 | 0x0034004c, | ||
17949 | 0x00360030, | ||
17950 | 0x003900af, | ||
17951 | 0x003a00d0, | ||
17952 | 0x003b00e5, | ||
17953 | 0x003c00fd, | ||
17954 | 0x003d016c, | ||
17955 | 0x003f00ad, | ||
17956 | 0x00410338, | ||
17957 | 0x0043036c, | ||
17958 | 0x0044018f, | ||
17959 | 0x004500fd, | ||
17960 | 0x004601ad, | ||
17961 | 0x004701ad, | ||
17962 | 0x00480200, | ||
17963 | 0x0049020e, | ||
17964 | 0x004a0257, | ||
17965 | 0x004b0284, | ||
17966 | 0x00520261, | ||
17967 | 0x00530273, | ||
17968 | 0x00540289, | ||
17969 | 0x0057029b, | ||
17970 | 0x0060029f, | ||
17971 | 0x006102ae, | ||
17972 | 0x006202b8, | ||
17973 | 0x006302c2, | ||
17974 | 0x006402cc, | ||
17975 | 0x006502d6, | ||
17976 | 0x006602e0, | ||
17977 | 0x006702ea, | ||
17978 | 0x006802f4, | ||
17979 | 0x006902f8, | ||
17980 | 0x006a02fc, | ||
17981 | 0x006b0300, | ||
17982 | 0x006c0304, | ||
17983 | 0x006d0308, | ||
17984 | 0x006e030c, | ||
17985 | 0x006f0310, | ||
17986 | 0x00700314, | ||
17987 | 0x00720386, | ||
17988 | 0x0074038c, | ||
17989 | 0x0079038a, | ||
17990 | 0x007c031e, | ||
17991 | 0x000f039b, | ||
17992 | 0x000f039b, | ||
17993 | 0x000f039b, | ||
17994 | 0x000f039b, | ||
17995 | 0x000f039b, | ||
17996 | 0x000f039b, | ||
17997 | 0x000f039b, | ||
17998 | 0x000f039b, | ||
17999 | 0x000f039b, | ||
18000 | 0x000f039b, | ||
18001 | 0x000f039b, | ||
18002 | 0x000f039b, | ||
18003 | 0x000f039b, | ||
18004 | 0x000f039b, | ||
18005 | 0x000f039b, | ||
18006 | 0x000f039b, | ||
18007 | 0x000f039b, | ||
18008 | 0x000f039b, | ||
18009 | 0x000f039b, | ||
18010 | 0x000f039b, | ||
18011 | 0x000f039b, | ||
18012 | 0x000f039b, | ||
18013 | 0x000f039b, | ||
18014 | 0x000f039b, | ||
18015 | 0x000f039b, | ||
18016 | }; | ||
18017 | |||
18018 | static const u32 RV770_pfp_microcode[] = { | ||
18019 | 0x7c408000, | ||
18020 | 0xa0000000, | ||
18021 | 0x7e82800b, | ||
18022 | 0x80000000, | ||
18023 | 0xdc030000, | ||
18024 | 0xcc800040, | ||
18025 | 0xd0400040, | ||
18026 | 0x7c408000, | ||
18027 | 0xa0000000, | ||
18028 | 0x7e82800b, | ||
18029 | 0xc818000e, | ||
18030 | 0x31980001, | ||
18031 | 0x7c424000, | ||
18032 | 0x95800252, | ||
18033 | 0x7c428000, | ||
18034 | 0xc81c001c, | ||
18035 | 0xc037c000, | ||
18036 | 0x7c40c000, | ||
18037 | 0x7c410000, | ||
18038 | 0x7cb4800b, | ||
18039 | 0xc0360003, | ||
18040 | 0x99c00000, | ||
18041 | 0xc81c001c, | ||
18042 | 0x7cb4800c, | ||
18043 | 0x24d40002, | ||
18044 | 0x7d654000, | ||
18045 | 0xcd400043, | ||
18046 | 0xce800043, | ||
18047 | 0xcd000043, | ||
18048 | 0xcc800040, | ||
18049 | 0xce400040, | ||
18050 | 0xce800040, | ||
18051 | 0xccc00040, | ||
18052 | 0xdc3a0000, | ||
18053 | 0x9780ffde, | ||
18054 | 0xcd000040, | ||
18055 | 0x7c40c000, | ||
18056 | 0x80000018, | ||
18057 | 0x7c410000, | ||
18058 | 0xd4000340, | ||
18059 | 0xd4000fc0, | ||
18060 | 0xd4000fa2, | ||
18061 | 0xc818000e, | ||
18062 | 0x8000000c, | ||
18063 | 0x31980002, | ||
18064 | 0xd40003c0, | ||
18065 | 0xd4000fc0, | ||
18066 | 0xd4000fa2, | ||
18067 | 0xc818000e, | ||
18068 | 0x288c0008, | ||
18069 | 0x30cc000f, | ||
18070 | 0x34100001, | ||
18071 | 0x7d0d0008, | ||
18072 | 0x8000000c, | ||
18073 | 0x7d91800b, | ||
18074 | 0xcc800040, | ||
18075 | 0xd0400040, | ||
18076 | 0x7c408000, | ||
18077 | 0xa0000000, | ||
18078 | 0x7e82800b, | ||
18079 | 0xd4000340, | ||
18080 | 0xd4000fc0, | ||
18081 | 0xd4000fa2, | ||
18082 | 0xcc800040, | ||
18083 | 0xd0400040, | ||
18084 | 0x7c408000, | ||
18085 | 0xa0000000, | ||
18086 | 0x7e82800b, | ||
18087 | 0xd40003c0, | ||
18088 | 0xd4000fc0, | ||
18089 | 0xd4000fa2, | ||
18090 | 0xcc800040, | ||
18091 | 0xd0400040, | ||
18092 | 0x7c408000, | ||
18093 | 0xa0000000, | ||
18094 | 0x7e82800b, | ||
18095 | 0xcc4003f9, | ||
18096 | 0x80000261, | ||
18097 | 0xcc4003f8, | ||
18098 | 0xc82003f8, | ||
18099 | 0xc81c03f9, | ||
18100 | 0xc81803fb, | ||
18101 | 0xc037ffff, | ||
18102 | 0x7c414000, | ||
18103 | 0xcf41a29e, | ||
18104 | 0x66200020, | ||
18105 | 0x7de1c02c, | ||
18106 | 0x7d58c008, | ||
18107 | 0x7cdcc020, | ||
18108 | 0x68d00020, | ||
18109 | 0xc0360003, | ||
18110 | 0xcc000054, | ||
18111 | 0x7cb4800c, | ||
18112 | 0x8000006a, | ||
18113 | 0xcc800040, | ||
18114 | 0x7c418000, | ||
18115 | 0xcd81a29e, | ||
18116 | 0xcc800040, | ||
18117 | 0xcd800040, | ||
18118 | 0x80000068, | ||
18119 | 0xcc000054, | ||
18120 | 0xc019ffff, | ||
18121 | 0xcc800040, | ||
18122 | 0xcd81a29e, | ||
18123 | 0x7c40c000, | ||
18124 | 0x7c410000, | ||
18125 | 0x7c414000, | ||
18126 | 0xccc1a1fa, | ||
18127 | 0xcd01a1f9, | ||
18128 | 0xcd41a29d, | ||
18129 | 0xccc00040, | ||
18130 | 0xcd000040, | ||
18131 | 0xcd400040, | ||
18132 | 0xcc400040, | ||
18133 | 0x7c408000, | ||
18134 | 0xa0000000, | ||
18135 | 0x7e82800b, | ||
18136 | 0xcc000054, | ||
18137 | 0xcc800040, | ||
18138 | 0x7c40c000, | ||
18139 | 0x7c410000, | ||
18140 | 0x7c414000, | ||
18141 | 0xccc1a1fa, | ||
18142 | 0xcd01a1f9, | ||
18143 | 0xcd41a29d, | ||
18144 | 0xccc00040, | ||
18145 | 0xcd000040, | ||
18146 | 0xcd400040, | ||
18147 | 0xd0400040, | ||
18148 | 0x7c408000, | ||
18149 | 0xa0000000, | ||
18150 | 0x7e82800b, | ||
18151 | 0x7c40c000, | ||
18152 | 0x30d00001, | ||
18153 | 0xccc1a29f, | ||
18154 | 0x95000003, | ||
18155 | 0x04140001, | ||
18156 | 0x04140002, | ||
18157 | 0xcd4003fb, | ||
18158 | 0xcc800040, | ||
18159 | 0x80000000, | ||
18160 | 0xccc00040, | ||
18161 | 0x7c40c000, | ||
18162 | 0xcc800040, | ||
18163 | 0xccc1a2a2, | ||
18164 | 0x80000000, | ||
18165 | 0xccc00040, | ||
18166 | 0x7c40c000, | ||
18167 | 0x28d4001f, | ||
18168 | 0xcc800040, | ||
18169 | 0x95400003, | ||
18170 | 0x7c410000, | ||
18171 | 0xccc00057, | ||
18172 | 0x2918001f, | ||
18173 | 0xccc00040, | ||
18174 | 0x95800003, | ||
18175 | 0xcd000040, | ||
18176 | 0xcd000058, | ||
18177 | 0x80000261, | ||
18178 | 0xcc00007f, | ||
18179 | 0xc8200017, | ||
18180 | 0xc8300022, | ||
18181 | 0x9a000006, | ||
18182 | 0x0e280001, | ||
18183 | 0xc824001e, | ||
18184 | 0x0a640001, | ||
18185 | 0xd4001240, | ||
18186 | 0xce400040, | ||
18187 | 0xc036c000, | ||
18188 | 0x96800007, | ||
18189 | 0x37747900, | ||
18190 | 0x041c0001, | ||
18191 | 0xcf400040, | ||
18192 | 0xcdc00040, | ||
18193 | 0xcf0003fa, | ||
18194 | 0x7c030000, | ||
18195 | 0xca0c0010, | ||
18196 | 0x7c410000, | ||
18197 | 0x94c00004, | ||
18198 | 0x7c414000, | ||
18199 | 0xd42002c4, | ||
18200 | 0xcde00044, | ||
18201 | 0x9b00000b, | ||
18202 | 0x7c418000, | ||
18203 | 0xcc00004b, | ||
18204 | 0xcda00049, | ||
18205 | 0xcd200041, | ||
18206 | 0xcd600041, | ||
18207 | 0xcda00041, | ||
18208 | 0x06200001, | ||
18209 | 0xce000056, | ||
18210 | 0x80000261, | ||
18211 | 0xcc00007f, | ||
18212 | 0xc8280020, | ||
18213 | 0xc82c0021, | ||
18214 | 0xcc000063, | ||
18215 | 0x7eea4001, | ||
18216 | 0x65740020, | ||
18217 | 0x7f53402c, | ||
18218 | 0x269c0002, | ||
18219 | 0x7df5c020, | ||
18220 | 0x69f80020, | ||
18221 | 0xce80004b, | ||
18222 | 0xce600049, | ||
18223 | 0xcde00041, | ||
18224 | 0xcfa00041, | ||
18225 | 0xce600041, | ||
18226 | 0x271c0002, | ||
18227 | 0x7df5c020, | ||
18228 | 0x69f80020, | ||
18229 | 0x7db24001, | ||
18230 | 0xcf00004b, | ||
18231 | 0xce600049, | ||
18232 | 0xcde00041, | ||
18233 | 0xcfa00041, | ||
18234 | 0x800000bd, | ||
18235 | 0xce600041, | ||
18236 | 0xc8200017, | ||
18237 | 0xc8300022, | ||
18238 | 0x9a000006, | ||
18239 | 0x0e280001, | ||
18240 | 0xc824001e, | ||
18241 | 0x0a640001, | ||
18242 | 0xd4001240, | ||
18243 | 0xce400040, | ||
18244 | 0xca0c0010, | ||
18245 | 0x7c410000, | ||
18246 | 0x94c0000b, | ||
18247 | 0xc036c000, | ||
18248 | 0x96800007, | ||
18249 | 0x37747900, | ||
18250 | 0x041c0001, | ||
18251 | 0xcf400040, | ||
18252 | 0xcdc00040, | ||
18253 | 0xcf0003fa, | ||
18254 | 0x7c030000, | ||
18255 | 0x800000b6, | ||
18256 | 0x7c414000, | ||
18257 | 0xcc000048, | ||
18258 | 0x800000ef, | ||
18259 | 0x00000000, | ||
18260 | 0xc8200017, | ||
18261 | 0xc81c0023, | ||
18262 | 0x0e240002, | ||
18263 | 0x99c00015, | ||
18264 | 0x7c418000, | ||
18265 | 0x0a200001, | ||
18266 | 0xce000056, | ||
18267 | 0xd4000440, | ||
18268 | 0xcc000040, | ||
18269 | 0xc036c000, | ||
18270 | 0xca140013, | ||
18271 | 0x96400007, | ||
18272 | 0x37747900, | ||
18273 | 0xcf400040, | ||
18274 | 0xcc000040, | ||
18275 | 0xc83003fa, | ||
18276 | 0x80000104, | ||
18277 | 0xcf000022, | ||
18278 | 0xcc000022, | ||
18279 | 0x9540015d, | ||
18280 | 0xcc00007f, | ||
18281 | 0xcca00046, | ||
18282 | 0x80000000, | ||
18283 | 0xcc200046, | ||
18284 | 0x80000261, | ||
18285 | 0xcc000064, | ||
18286 | 0xc8200017, | ||
18287 | 0xc810001f, | ||
18288 | 0x96000005, | ||
18289 | 0x09100001, | ||
18290 | 0xd4000440, | ||
18291 | 0xcd000040, | ||
18292 | 0xcd000022, | ||
18293 | 0xcc800040, | ||
18294 | 0xd0400040, | ||
18295 | 0xc80c0025, | ||
18296 | 0x94c0feeb, | ||
18297 | 0xc8100008, | ||
18298 | 0xcd000040, | ||
18299 | 0xd4000fc0, | ||
18300 | 0x80000000, | ||
18301 | 0xd4000fa2, | ||
18302 | 0x7c40c000, | ||
18303 | 0x7c410000, | ||
18304 | 0xccc003fd, | ||
18305 | 0xcd0003fc, | ||
18306 | 0xccc00042, | ||
18307 | 0xcd000042, | ||
18308 | 0x2914001f, | ||
18309 | 0x29180010, | ||
18310 | 0x31980007, | ||
18311 | 0x3b5c0001, | ||
18312 | 0x7d76000b, | ||
18313 | 0x99800005, | ||
18314 | 0x7d5e400b, | ||
18315 | 0xcc000042, | ||
18316 | 0x80000261, | ||
18317 | 0xcc00004d, | ||
18318 | 0x29980001, | ||
18319 | 0x292c0008, | ||
18320 | 0x9980003d, | ||
18321 | 0x32ec0001, | ||
18322 | 0x96000004, | ||
18323 | 0x2930000c, | ||
18324 | 0x80000261, | ||
18325 | 0xcc000042, | ||
18326 | 0x04140010, | ||
18327 | 0xcd400042, | ||
18328 | 0x33300001, | ||
18329 | 0x34280001, | ||
18330 | 0x8400015e, | ||
18331 | 0xc8140003, | ||
18332 | 0x9b40001b, | ||
18333 | 0x0438000c, | ||
18334 | 0x8400015e, | ||
18335 | 0xc8140003, | ||
18336 | 0x9b400017, | ||
18337 | 0x04380008, | ||
18338 | 0x8400015e, | ||
18339 | 0xc8140003, | ||
18340 | 0x9b400013, | ||
18341 | 0x04380004, | ||
18342 | 0x8400015e, | ||
18343 | 0xc8140003, | ||
18344 | 0x9b400015, | ||
18345 | 0xc80c03fd, | ||
18346 | 0x9a800009, | ||
18347 | 0xc81003fc, | ||
18348 | 0x9b000118, | ||
18349 | 0xcc00004d, | ||
18350 | 0x04140010, | ||
18351 | 0xccc00042, | ||
18352 | 0xcd000042, | ||
18353 | 0x80000136, | ||
18354 | 0xcd400042, | ||
18355 | 0x96c00111, | ||
18356 | 0xcc00004d, | ||
18357 | 0x80000261, | ||
18358 | 0xcc00004e, | ||
18359 | 0x9ac00003, | ||
18360 | 0xcc00004d, | ||
18361 | 0xcc00004e, | ||
18362 | 0xdf830000, | ||
18363 | 0x80000000, | ||
18364 | 0xd80301ff, | ||
18365 | 0x9ac00107, | ||
18366 | 0xcc00004d, | ||
18367 | 0x80000261, | ||
18368 | 0xcc00004e, | ||
18369 | 0xc8180003, | ||
18370 | 0xc81c0003, | ||
18371 | 0xc8200003, | ||
18372 | 0x7d5d4003, | ||
18373 | 0x7da1c003, | ||
18374 | 0x7d5d400c, | ||
18375 | 0x2a10001f, | ||
18376 | 0x299c001f, | ||
18377 | 0x7d1d000b, | ||
18378 | 0x7d17400b, | ||
18379 | 0x88000000, | ||
18380 | 0x7e92800b, | ||
18381 | 0x96400004, | ||
18382 | 0xcc00004e, | ||
18383 | 0x80000261, | ||
18384 | 0xcc000042, | ||
18385 | 0x04380008, | ||
18386 | 0xcf800042, | ||
18387 | 0xc8080003, | ||
18388 | 0xc80c0003, | ||
18389 | 0xc8100003, | ||
18390 | 0xc8140003, | ||
18391 | 0xc8180003, | ||
18392 | 0xc81c0003, | ||
18393 | 0xc8240003, | ||
18394 | 0xc8280003, | ||
18395 | 0x29fc001f, | ||
18396 | 0x2ab0001f, | ||
18397 | 0x7ff3c00b, | ||
18398 | 0x28f0001f, | ||
18399 | 0x7ff3c00b, | ||
18400 | 0x2970001f, | ||
18401 | 0x7ff3c00b, | ||
18402 | 0x7d888001, | ||
18403 | 0x7dccc001, | ||
18404 | 0x7e510001, | ||
18405 | 0x7e954001, | ||
18406 | 0x7c908002, | ||
18407 | 0x7cd4c002, | ||
18408 | 0x7cbc800b, | ||
18409 | 0x9ac00003, | ||
18410 | 0x7c8f400b, | ||
18411 | 0x38b40001, | ||
18412 | 0x9b4000d8, | ||
18413 | 0xcc00004d, | ||
18414 | 0x9bc000d6, | ||
18415 | 0xcc00004e, | ||
18416 | 0xc80c03fd, | ||
18417 | 0xc81003fc, | ||
18418 | 0xccc00042, | ||
18419 | 0x8000016f, | ||
18420 | 0xcd000042, | ||
18421 | 0xd4000340, | ||
18422 | 0xd4000fc0, | ||
18423 | 0xd4000fa2, | ||
18424 | 0xcc800040, | ||
18425 | 0xcc400040, | ||
18426 | 0xcc400040, | ||
18427 | 0xcc400040, | ||
18428 | 0x7c40c000, | ||
18429 | 0xccc00040, | ||
18430 | 0xccc0000d, | ||
18431 | 0x80000000, | ||
18432 | 0xd0400040, | ||
18433 | 0x7c40c000, | ||
18434 | 0x7c410000, | ||
18435 | 0x65140020, | ||
18436 | 0x7d4d402c, | ||
18437 | 0x24580002, | ||
18438 | 0x7d598020, | ||
18439 | 0x7c41c000, | ||
18440 | 0xcd800042, | ||
18441 | 0x69980020, | ||
18442 | 0xcd800042, | ||
18443 | 0xcdc00042, | ||
18444 | 0xc023c000, | ||
18445 | 0x05e40002, | ||
18446 | 0x7ca0800b, | ||
18447 | 0x26640010, | ||
18448 | 0x7ca4800c, | ||
18449 | 0xcc800040, | ||
18450 | 0xcdc00040, | ||
18451 | 0xccc00040, | ||
18452 | 0x95c0000e, | ||
18453 | 0xcd000040, | ||
18454 | 0x09dc0001, | ||
18455 | 0xc8280003, | ||
18456 | 0x96800008, | ||
18457 | 0xce800040, | ||
18458 | 0xc834001d, | ||
18459 | 0x97400000, | ||
18460 | 0xc834001d, | ||
18461 | 0x26a80008, | ||
18462 | 0x84000264, | ||
18463 | 0xcc2b0000, | ||
18464 | 0x99c0fff7, | ||
18465 | 0x09dc0001, | ||
18466 | 0xdc3a0000, | ||
18467 | 0x97800004, | ||
18468 | 0x7c418000, | ||
18469 | 0x800001a3, | ||
18470 | 0x25980002, | ||
18471 | 0xa0000000, | ||
18472 | 0x7d808000, | ||
18473 | 0xc818001d, | ||
18474 | 0x7c40c000, | ||
18475 | 0x64d00008, | ||
18476 | 0x95800000, | ||
18477 | 0xc818001d, | ||
18478 | 0xcc130000, | ||
18479 | 0xcc800040, | ||
18480 | 0xccc00040, | ||
18481 | 0x80000000, | ||
18482 | 0xcc400040, | ||
18483 | 0xc810001f, | ||
18484 | 0x7c40c000, | ||
18485 | 0xcc800040, | ||
18486 | 0x7cd1400c, | ||
18487 | 0xcd400040, | ||
18488 | 0x05180001, | ||
18489 | 0x80000000, | ||
18490 | 0xcd800022, | ||
18491 | 0x7c40c000, | ||
18492 | 0x64500020, | ||
18493 | 0x84000264, | ||
18494 | 0xcc000061, | ||
18495 | 0x7cd0c02c, | ||
18496 | 0xc8200017, | ||
18497 | 0xc8d60000, | ||
18498 | 0x99400008, | ||
18499 | 0x7c438000, | ||
18500 | 0xdf830000, | ||
18501 | 0xcfa0004f, | ||
18502 | 0x84000264, | ||
18503 | 0xcc000062, | ||
18504 | 0x80000000, | ||
18505 | 0xd040007f, | ||
18506 | 0x80000261, | ||
18507 | 0xcc000062, | ||
18508 | 0x84000264, | ||
18509 | 0xcc000061, | ||
18510 | 0xc8200017, | ||
18511 | 0x7c40c000, | ||
18512 | 0xc036ff00, | ||
18513 | 0xc810000d, | ||
18514 | 0xc0303fff, | ||
18515 | 0x7cf5400b, | ||
18516 | 0x7d51800b, | ||
18517 | 0x7d81800f, | ||
18518 | 0x99800008, | ||
18519 | 0x7cf3800b, | ||
18520 | 0xdf830000, | ||
18521 | 0xcfa0004f, | ||
18522 | 0x84000264, | ||
18523 | 0xcc000062, | ||
18524 | 0x80000000, | ||
18525 | 0xd040007f, | ||
18526 | 0x80000261, | ||
18527 | 0xcc000062, | ||
18528 | 0x84000264, | ||
18529 | 0x7c40c000, | ||
18530 | 0x28dc0008, | ||
18531 | 0x95c00019, | ||
18532 | 0x30dc0010, | ||
18533 | 0x7c410000, | ||
18534 | 0x99c00004, | ||
18535 | 0x64540020, | ||
18536 | 0x80000209, | ||
18537 | 0xc91d0000, | ||
18538 | 0x7d15002c, | ||
18539 | 0xc91e0000, | ||
18540 | 0x7c420000, | ||
18541 | 0x7c424000, | ||
18542 | 0x7c418000, | ||
18543 | 0x7de5c00b, | ||
18544 | 0x7de28007, | ||
18545 | 0x9a80000e, | ||
18546 | 0x41ac0005, | ||
18547 | 0x9ac00000, | ||
18548 | 0x0aec0001, | ||
18549 | 0x30dc0010, | ||
18550 | 0x99c00004, | ||
18551 | 0x00000000, | ||
18552 | 0x8000020c, | ||
18553 | 0xc91d0000, | ||
18554 | 0x8000020c, | ||
18555 | 0xc91e0000, | ||
18556 | 0xcc800040, | ||
18557 | 0xccc00040, | ||
18558 | 0xd0400040, | ||
18559 | 0xc80c0025, | ||
18560 | 0x94c0fde3, | ||
18561 | 0xc8100008, | ||
18562 | 0xcd000040, | ||
18563 | 0xd4000fc0, | ||
18564 | 0x80000000, | ||
18565 | 0xd4000fa2, | ||
18566 | 0xd4000340, | ||
18567 | 0xd4000fc0, | ||
18568 | 0xd4000fa2, | ||
18569 | 0xcc800040, | ||
18570 | 0xd0400040, | ||
18571 | 0x7c408000, | ||
18572 | 0xa0000000, | ||
18573 | 0x7e82800b, | ||
18574 | 0xd40003c0, | ||
18575 | 0xd4000fc0, | ||
18576 | 0xd4000fa2, | ||
18577 | 0xcc800040, | ||
18578 | 0xd0400040, | ||
18579 | 0x7c408000, | ||
18580 | 0xa0000000, | ||
18581 | 0x7e82800b, | ||
18582 | 0x7c40c000, | ||
18583 | 0x30d00006, | ||
18584 | 0x0d100006, | ||
18585 | 0x99000007, | ||
18586 | 0xc8140015, | ||
18587 | 0x99400005, | ||
18588 | 0xcc000052, | ||
18589 | 0xd4000340, | ||
18590 | 0xd4000fc0, | ||
18591 | 0xd4000fa2, | ||
18592 | 0xcc800040, | ||
18593 | 0xccc00040, | ||
18594 | 0x80000000, | ||
18595 | 0xd0400040, | ||
18596 | 0x7c40c000, | ||
18597 | 0xcc4d0000, | ||
18598 | 0xdc3a0000, | ||
18599 | 0x9780fdbc, | ||
18600 | 0x04cc0001, | ||
18601 | 0x80000243, | ||
18602 | 0xcc4d0000, | ||
18603 | 0x7c40c000, | ||
18604 | 0x7c410000, | ||
18605 | 0x29240018, | ||
18606 | 0x32640001, | ||
18607 | 0x9640000f, | ||
18608 | 0xcc800040, | ||
18609 | 0x7c414000, | ||
18610 | 0x7c418000, | ||
18611 | 0x7c41c000, | ||
18612 | 0xccc00043, | ||
18613 | 0xcd000043, | ||
18614 | 0x31dc7fff, | ||
18615 | 0xcdc00043, | ||
18616 | 0xccc00040, | ||
18617 | 0xcd000040, | ||
18618 | 0xcd400040, | ||
18619 | 0xcd800040, | ||
18620 | 0x80000000, | ||
18621 | 0xcdc00040, | ||
18622 | 0xccc00040, | ||
18623 | 0xcd000040, | ||
18624 | 0x80000000, | ||
18625 | 0xd0400040, | ||
18626 | 0x80000000, | ||
18627 | 0xd040007f, | ||
18628 | 0xcc00007f, | ||
18629 | 0x80000000, | ||
18630 | 0xcc00007f, | ||
18631 | 0xcc00007f, | ||
18632 | 0x88000000, | ||
18633 | 0xcc00007f, | ||
18634 | 0x00000000, | ||
18635 | 0x00000000, | ||
18636 | 0x00000000, | ||
18637 | 0x00000000, | ||
18638 | 0x00000000, | ||
18639 | 0x00000000, | ||
18640 | 0x00000000, | ||
18641 | 0x00000000, | ||
18642 | 0x00000000, | ||
18643 | 0x00000000, | ||
18644 | 0x00000000, | ||
18645 | 0x00000000, | ||
18646 | 0x00000000, | ||
18647 | 0x00000000, | ||
18648 | 0x00000000, | ||
18649 | 0x00000000, | ||
18650 | 0x00000000, | ||
18651 | 0x00000000, | ||
18652 | 0x00000000, | ||
18653 | 0x00000000, | ||
18654 | 0x00000000, | ||
18655 | 0x00000000, | ||
18656 | 0x00000000, | ||
18657 | 0x00000000, | ||
18658 | 0x00000000, | ||
18659 | 0x00000000, | ||
18660 | 0x00000000, | ||
18661 | 0x00000000, | ||
18662 | 0x00000000, | ||
18663 | 0x00000000, | ||
18664 | 0x00000000, | ||
18665 | 0x00000000, | ||
18666 | 0x00000000, | ||
18667 | 0x00000000, | ||
18668 | 0x00000000, | ||
18669 | 0x00000000, | ||
18670 | 0x00000000, | ||
18671 | 0x00000000, | ||
18672 | 0x00000000, | ||
18673 | 0x00000000, | ||
18674 | 0x00000000, | ||
18675 | 0x00000000, | ||
18676 | 0x00000000, | ||
18677 | 0x00000000, | ||
18678 | 0x00000000, | ||
18679 | 0x00000000, | ||
18680 | 0x00000000, | ||
18681 | 0x00000000, | ||
18682 | 0x00000000, | ||
18683 | 0x00000000, | ||
18684 | 0x00000000, | ||
18685 | 0x00000000, | ||
18686 | 0x00000000, | ||
18687 | 0x00000000, | ||
18688 | 0x00000000, | ||
18689 | 0x00000000, | ||
18690 | 0x00000000, | ||
18691 | 0x00000000, | ||
18692 | 0x00000000, | ||
18693 | 0x00000000, | ||
18694 | 0x00000000, | ||
18695 | 0x00000000, | ||
18696 | 0x00000000, | ||
18697 | 0x00000000, | ||
18698 | 0x00000000, | ||
18699 | 0x00000000, | ||
18700 | 0x00000000, | ||
18701 | 0x00000000, | ||
18702 | 0x00000000, | ||
18703 | 0x00000000, | ||
18704 | 0x00000000, | ||
18705 | 0x00000000, | ||
18706 | 0x00000000, | ||
18707 | 0x00000000, | ||
18708 | 0x00000000, | ||
18709 | 0x00000000, | ||
18710 | 0x00000000, | ||
18711 | 0x00000000, | ||
18712 | 0x00000000, | ||
18713 | 0x00000000, | ||
18714 | 0x00000000, | ||
18715 | 0x00000000, | ||
18716 | 0x00000000, | ||
18717 | 0x00000000, | ||
18718 | 0x00000000, | ||
18719 | 0x00000000, | ||
18720 | 0x00000000, | ||
18721 | 0x00000000, | ||
18722 | 0x00000000, | ||
18723 | 0x00000000, | ||
18724 | 0x00000000, | ||
18725 | 0x00000000, | ||
18726 | 0x00000000, | ||
18727 | 0x00000000, | ||
18728 | 0x00000000, | ||
18729 | 0x00000000, | ||
18730 | 0x00000000, | ||
18731 | 0x00000000, | ||
18732 | 0x00000000, | ||
18733 | 0x00000000, | ||
18734 | 0x00000000, | ||
18735 | 0x00000000, | ||
18736 | 0x00000000, | ||
18737 | 0x00000000, | ||
18738 | 0x00000000, | ||
18739 | 0x00000000, | ||
18740 | 0x00000000, | ||
18741 | 0x00000000, | ||
18742 | 0x00000000, | ||
18743 | 0x00000000, | ||
18744 | 0x00000000, | ||
18745 | 0x00000000, | ||
18746 | 0x00000000, | ||
18747 | 0x00000000, | ||
18748 | 0x00000000, | ||
18749 | 0x00000000, | ||
18750 | 0x00000000, | ||
18751 | 0x00000000, | ||
18752 | 0x00000000, | ||
18753 | 0x00000000, | ||
18754 | 0x00000000, | ||
18755 | 0x00000000, | ||
18756 | 0x00000000, | ||
18757 | 0x00000000, | ||
18758 | 0x00000000, | ||
18759 | 0x00000000, | ||
18760 | 0x00000000, | ||
18761 | 0x00000000, | ||
18762 | 0x00000000, | ||
18763 | 0x00000000, | ||
18764 | 0x00000000, | ||
18765 | 0x00000000, | ||
18766 | 0x00000000, | ||
18767 | 0x00000000, | ||
18768 | 0x00000000, | ||
18769 | 0x00000000, | ||
18770 | 0x00000000, | ||
18771 | 0x00000000, | ||
18772 | 0x00000000, | ||
18773 | 0x00000000, | ||
18774 | 0x00000000, | ||
18775 | 0x00000000, | ||
18776 | 0x00000000, | ||
18777 | 0x00000000, | ||
18778 | 0x00000000, | ||
18779 | 0x00000000, | ||
18780 | 0x00000000, | ||
18781 | 0x00000000, | ||
18782 | 0x00000000, | ||
18783 | 0x00000000, | ||
18784 | 0x00000000, | ||
18785 | 0x00000000, | ||
18786 | 0x00000000, | ||
18787 | 0x00030223, | ||
18788 | 0x0004022b, | ||
18789 | 0x000500a0, | ||
18790 | 0x00020003, | ||
18791 | 0x0006003c, | ||
18792 | 0x00070027, | ||
18793 | 0x00080192, | ||
18794 | 0x00090044, | ||
18795 | 0x000a002d, | ||
18796 | 0x0010025f, | ||
18797 | 0x001700f1, | ||
18798 | 0x002201d8, | ||
18799 | 0x002301e9, | ||
18800 | 0x0026004c, | ||
18801 | 0x0027005f, | ||
18802 | 0x0020011b, | ||
18803 | 0x00280093, | ||
18804 | 0x0029004f, | ||
18805 | 0x002a0084, | ||
18806 | 0x002b0065, | ||
18807 | 0x002f008e, | ||
18808 | 0x003200d9, | ||
18809 | 0x00340233, | ||
18810 | 0x00360075, | ||
18811 | 0x0039010b, | ||
18812 | 0x003c01fd, | ||
18813 | 0x003f00a0, | ||
18814 | 0x00410248, | ||
18815 | 0x00440195, | ||
18816 | 0x0048019e, | ||
18817 | 0x004901c6, | ||
18818 | 0x004a01d0, | ||
18819 | 0x00550226, | ||
18820 | 0x0056022e, | ||
18821 | 0x0060000a, | ||
18822 | 0x0061002a, | ||
18823 | 0x00620030, | ||
18824 | 0x00630030, | ||
18825 | 0x00640030, | ||
18826 | 0x00650030, | ||
18827 | 0x00660030, | ||
18828 | 0x00670030, | ||
18829 | 0x00680037, | ||
18830 | 0x0069003f, | ||
18831 | 0x006a0047, | ||
18832 | 0x006b0047, | ||
18833 | 0x006c0047, | ||
18834 | 0x006d0047, | ||
18835 | 0x006e0047, | ||
18836 | 0x006f0047, | ||
18837 | 0x00700047, | ||
18838 | 0x0073025f, | ||
18839 | 0x007b0241, | ||
18840 | 0x00000005, | ||
18841 | 0x00000005, | ||
18842 | 0x00000005, | ||
18843 | 0x00000005, | ||
18844 | 0x00000005, | ||
18845 | 0x00000005, | ||
18846 | 0x00000005, | ||
18847 | 0x00000005, | ||
18848 | 0x00000005, | ||
18849 | 0x00000005, | ||
18850 | 0x00000005, | ||
18851 | 0x00000005, | ||
18852 | 0x00000005, | ||
18853 | 0x00000005, | ||
18854 | 0x00000005, | ||
18855 | 0x00000005, | ||
18856 | 0x00000005, | ||
18857 | 0x00000005, | ||
18858 | 0x00000005, | ||
18859 | 0x00000005, | ||
18860 | 0x00000005, | ||
18861 | 0x00000005, | ||
18862 | 0x00000005, | ||
18863 | 0x00000005, | ||
18864 | 0x00000005, | ||
18865 | 0x00000005, | ||
18866 | 0x00000005, | ||
18867 | }; | ||
18868 | |||
18869 | static const u32 RV730_pfp_microcode[] = { | ||
18870 | 0x7c408000, | ||
18871 | 0xa0000000, | ||
18872 | 0x7e82800b, | ||
18873 | 0x80000000, | ||
18874 | 0xdc030000, | ||
18875 | 0xcc800040, | ||
18876 | 0xd0400040, | ||
18877 | 0x7c408000, | ||
18878 | 0xa0000000, | ||
18879 | 0x7e82800b, | ||
18880 | 0xc818000e, | ||
18881 | 0x31980001, | ||
18882 | 0x7c424000, | ||
18883 | 0x9580023a, | ||
18884 | 0x7c428000, | ||
18885 | 0xc81c001c, | ||
18886 | 0xc037c000, | ||
18887 | 0x7c40c000, | ||
18888 | 0x7c410000, | ||
18889 | 0x7cb4800b, | ||
18890 | 0xc0360003, | ||
18891 | 0x99c00000, | ||
18892 | 0xc81c001c, | ||
18893 | 0x7cb4800c, | ||
18894 | 0x24d40002, | ||
18895 | 0x7d654000, | ||
18896 | 0xcd400043, | ||
18897 | 0xce800043, | ||
18898 | 0xcd000043, | ||
18899 | 0xcc800040, | ||
18900 | 0xce400040, | ||
18901 | 0xce800040, | ||
18902 | 0xccc00040, | ||
18903 | 0xdc3a0000, | ||
18904 | 0x9780ffde, | ||
18905 | 0xcd000040, | ||
18906 | 0x7c40c000, | ||
18907 | 0x80000018, | ||
18908 | 0x7c410000, | ||
18909 | 0xd4000340, | ||
18910 | 0xd4000fc0, | ||
18911 | 0xd4000fa2, | ||
18912 | 0xc818000e, | ||
18913 | 0x8000000c, | ||
18914 | 0x31980002, | ||
18915 | 0xd40003c0, | ||
18916 | 0xd4000fc0, | ||
18917 | 0xd4000fa2, | ||
18918 | 0xc818000e, | ||
18919 | 0x288c0008, | ||
18920 | 0x30cc000f, | ||
18921 | 0x34100001, | ||
18922 | 0x7d0d0008, | ||
18923 | 0x8000000c, | ||
18924 | 0x7d91800b, | ||
18925 | 0xcc800040, | ||
18926 | 0xd0400040, | ||
18927 | 0x7c408000, | ||
18928 | 0xa0000000, | ||
18929 | 0x7e82800b, | ||
18930 | 0xd4000340, | ||
18931 | 0xd4000fc0, | ||
18932 | 0xd4000fa2, | ||
18933 | 0xcc800040, | ||
18934 | 0xd0400040, | ||
18935 | 0x7c408000, | ||
18936 | 0xa0000000, | ||
18937 | 0x7e82800b, | ||
18938 | 0xd40003c0, | ||
18939 | 0xd4000fc0, | ||
18940 | 0xd4000fa2, | ||
18941 | 0xcc800040, | ||
18942 | 0xd0400040, | ||
18943 | 0x7c408000, | ||
18944 | 0xa0000000, | ||
18945 | 0x7e82800b, | ||
18946 | 0xcc4003f9, | ||
18947 | 0x80000249, | ||
18948 | 0xcc4003f8, | ||
18949 | 0xc037ffff, | ||
18950 | 0x7c414000, | ||
18951 | 0xcf41a29e, | ||
18952 | 0xc82003f8, | ||
18953 | 0xc81c03f9, | ||
18954 | 0x66200020, | ||
18955 | 0xc81803fb, | ||
18956 | 0x7de1c02c, | ||
18957 | 0x7d58c008, | ||
18958 | 0x7cdcc020, | ||
18959 | 0x69100020, | ||
18960 | 0xc0360003, | ||
18961 | 0xcc000054, | ||
18962 | 0x7cb4800c, | ||
18963 | 0x80000069, | ||
18964 | 0xcc800040, | ||
18965 | 0x7c418000, | ||
18966 | 0xcd81a29e, | ||
18967 | 0xcc800040, | ||
18968 | 0x80000067, | ||
18969 | 0xcd800040, | ||
18970 | 0xc019ffff, | ||
18971 | 0xcc800040, | ||
18972 | 0xcd81a29e, | ||
18973 | 0x7c40c000, | ||
18974 | 0x7c410000, | ||
18975 | 0x7c414000, | ||
18976 | 0xccc1a1fa, | ||
18977 | 0xcd01a1f9, | ||
18978 | 0xcd41a29d, | ||
18979 | 0xccc00040, | ||
18980 | 0xcd000040, | ||
18981 | 0xcd400040, | ||
18982 | 0xcc400040, | ||
18983 | 0x7c408000, | ||
18984 | 0xa0000000, | ||
18985 | 0x7e82800b, | ||
18986 | 0xcc000054, | ||
18987 | 0xcc800040, | ||
18988 | 0x7c40c000, | ||
18989 | 0x7c410000, | ||
18990 | 0x7c414000, | ||
18991 | 0xccc1a1fa, | ||
18992 | 0xcd01a1f9, | ||
18993 | 0xcd41a29d, | ||
18994 | 0xccc00040, | ||
18995 | 0xcd000040, | ||
18996 | 0xcd400040, | ||
18997 | 0xd0400040, | ||
18998 | 0x7c408000, | ||
18999 | 0xa0000000, | ||
19000 | 0x7e82800b, | ||
19001 | 0x7c40c000, | ||
19002 | 0x30d00001, | ||
19003 | 0xccc1a29f, | ||
19004 | 0x95000003, | ||
19005 | 0x04140001, | ||
19006 | 0x04140002, | ||
19007 | 0xcd4003fb, | ||
19008 | 0xcc800040, | ||
19009 | 0x80000000, | ||
19010 | 0xccc00040, | ||
19011 | 0x7c40c000, | ||
19012 | 0xcc800040, | ||
19013 | 0xccc1a2a2, | ||
19014 | 0x80000000, | ||
19015 | 0xccc00040, | ||
19016 | 0x7c40c000, | ||
19017 | 0x28d4001f, | ||
19018 | 0xcc800040, | ||
19019 | 0x95400003, | ||
19020 | 0x7c410000, | ||
19021 | 0xccc00057, | ||
19022 | 0x2918001f, | ||
19023 | 0xccc00040, | ||
19024 | 0x95800003, | ||
19025 | 0xcd000040, | ||
19026 | 0xcd000058, | ||
19027 | 0x80000249, | ||
19028 | 0xcc00007f, | ||
19029 | 0xc8200017, | ||
19030 | 0xc8300022, | ||
19031 | 0x9a000006, | ||
19032 | 0x0e280001, | ||
19033 | 0xc824001e, | ||
19034 | 0x0a640001, | ||
19035 | 0xd4001240, | ||
19036 | 0xce400040, | ||
19037 | 0xc036c000, | ||
19038 | 0x96800007, | ||
19039 | 0x37747900, | ||
19040 | 0x041c0001, | ||
19041 | 0xcf400040, | ||
19042 | 0xcdc00040, | ||
19043 | 0xcf0003fa, | ||
19044 | 0x7c030000, | ||
19045 | 0xca0c0010, | ||
19046 | 0x7c410000, | ||
19047 | 0x94c00004, | ||
19048 | 0x7c414000, | ||
19049 | 0xd42002c4, | ||
19050 | 0xcde00044, | ||
19051 | 0x9b00000b, | ||
19052 | 0x7c418000, | ||
19053 | 0xcc00004b, | ||
19054 | 0xcda00049, | ||
19055 | 0xcd200041, | ||
19056 | 0xcd600041, | ||
19057 | 0xcda00041, | ||
19058 | 0x06200001, | ||
19059 | 0xce000056, | ||
19060 | 0x80000249, | ||
19061 | 0xcc00007f, | ||
19062 | 0xc8280020, | ||
19063 | 0xc82c0021, | ||
19064 | 0xcc000063, | ||
19065 | 0x7eea4001, | ||
19066 | 0x65740020, | ||
19067 | 0x7f53402c, | ||
19068 | 0x269c0002, | ||
19069 | 0x7df5c020, | ||
19070 | 0x69f80020, | ||
19071 | 0xce80004b, | ||
19072 | 0xce600049, | ||
19073 | 0xcde00041, | ||
19074 | 0xcfa00041, | ||
19075 | 0xce600041, | ||
19076 | 0x271c0002, | ||
19077 | 0x7df5c020, | ||
19078 | 0x69f80020, | ||
19079 | 0x7db24001, | ||
19080 | 0xcf00004b, | ||
19081 | 0xce600049, | ||
19082 | 0xcde00041, | ||
19083 | 0xcfa00041, | ||
19084 | 0x800000bc, | ||
19085 | 0xce600041, | ||
19086 | 0xc8200017, | ||
19087 | 0xc8300022, | ||
19088 | 0x9a000006, | ||
19089 | 0x0e280001, | ||
19090 | 0xc824001e, | ||
19091 | 0x0a640001, | ||
19092 | 0xd4001240, | ||
19093 | 0xce400040, | ||
19094 | 0xca0c0010, | ||
19095 | 0x7c410000, | ||
19096 | 0x94c0000b, | ||
19097 | 0xc036c000, | ||
19098 | 0x96800007, | ||
19099 | 0x37747900, | ||
19100 | 0x041c0001, | ||
19101 | 0xcf400040, | ||
19102 | 0xcdc00040, | ||
19103 | 0xcf0003fa, | ||
19104 | 0x7c030000, | ||
19105 | 0x800000b5, | ||
19106 | 0x7c414000, | ||
19107 | 0xcc000048, | ||
19108 | 0x800000ee, | ||
19109 | 0x00000000, | ||
19110 | 0xc8200017, | ||
19111 | 0xc81c0023, | ||
19112 | 0x0e240002, | ||
19113 | 0x99c00015, | ||
19114 | 0x7c418000, | ||
19115 | 0x0a200001, | ||
19116 | 0xce000056, | ||
19117 | 0xd4000440, | ||
19118 | 0xcc000040, | ||
19119 | 0xc036c000, | ||
19120 | 0xca140013, | ||
19121 | 0x96400007, | ||
19122 | 0x37747900, | ||
19123 | 0xcf400040, | ||
19124 | 0xcc000040, | ||
19125 | 0xc83003fa, | ||
19126 | 0x80000103, | ||
19127 | 0xcf000022, | ||
19128 | 0xcc000022, | ||
19129 | 0x95400146, | ||
19130 | 0xcc00007f, | ||
19131 | 0xcca00046, | ||
19132 | 0x80000000, | ||
19133 | 0xcc200046, | ||
19134 | 0x80000249, | ||
19135 | 0xcc000064, | ||
19136 | 0xc8200017, | ||
19137 | 0xc810001f, | ||
19138 | 0x96000005, | ||
19139 | 0x09100001, | ||
19140 | 0xd4000440, | ||
19141 | 0xcd000040, | ||
19142 | 0xcd000022, | ||
19143 | 0xcc800040, | ||
19144 | 0xd0400040, | ||
19145 | 0xc80c0025, | ||
19146 | 0x94c0feec, | ||
19147 | 0xc8100008, | ||
19148 | 0xcd000040, | ||
19149 | 0xd4000fc0, | ||
19150 | 0x80000000, | ||
19151 | 0xd4000fa2, | ||
19152 | 0x7c40c000, | ||
19153 | 0x7c410000, | ||
19154 | 0xccc003fd, | ||
19155 | 0xcd0003fc, | ||
19156 | 0xccc00042, | ||
19157 | 0xcd000042, | ||
19158 | 0x2914001f, | ||
19159 | 0x29180010, | ||
19160 | 0x31980007, | ||
19161 | 0x3b5c0001, | ||
19162 | 0x7d76000b, | ||
19163 | 0x99800005, | ||
19164 | 0x7d5e400b, | ||
19165 | 0xcc000042, | ||
19166 | 0x80000249, | ||
19167 | 0xcc00004d, | ||
19168 | 0x29980001, | ||
19169 | 0x292c0008, | ||
19170 | 0x9980003d, | ||
19171 | 0x32ec0001, | ||
19172 | 0x96000004, | ||
19173 | 0x2930000c, | ||
19174 | 0x80000249, | ||
19175 | 0xcc000042, | ||
19176 | 0x04140010, | ||
19177 | 0xcd400042, | ||
19178 | 0x33300001, | ||
19179 | 0x34280001, | ||
19180 | 0x8400015d, | ||
19181 | 0xc8140003, | ||
19182 | 0x9b40001b, | ||
19183 | 0x0438000c, | ||
19184 | 0x8400015d, | ||
19185 | 0xc8140003, | ||
19186 | 0x9b400017, | ||
19187 | 0x04380008, | ||
19188 | 0x8400015d, | ||
19189 | 0xc8140003, | ||
19190 | 0x9b400013, | ||
19191 | 0x04380004, | ||
19192 | 0x8400015d, | ||
19193 | 0xc8140003, | ||
19194 | 0x9b400015, | ||
19195 | 0xc80c03fd, | ||
19196 | 0x9a800009, | ||
19197 | 0xc81003fc, | ||
19198 | 0x9b000101, | ||
19199 | 0xcc00004d, | ||
19200 | 0x04140010, | ||
19201 | 0xccc00042, | ||
19202 | 0xcd000042, | ||
19203 | 0x80000135, | ||
19204 | 0xcd400042, | ||
19205 | 0x96c000fa, | ||
19206 | 0xcc00004d, | ||
19207 | 0x80000249, | ||
19208 | 0xcc00004e, | ||
19209 | 0x9ac00003, | ||
19210 | 0xcc00004d, | ||
19211 | 0xcc00004e, | ||
19212 | 0xdf830000, | ||
19213 | 0x80000000, | ||
19214 | 0xd80301ff, | ||
19215 | 0x9ac000f0, | ||
19216 | 0xcc00004d, | ||
19217 | 0x80000249, | ||
19218 | 0xcc00004e, | ||
19219 | 0xc8180003, | ||
19220 | 0xc81c0003, | ||
19221 | 0xc8200003, | ||
19222 | 0x7d5d4003, | ||
19223 | 0x7da1c003, | ||
19224 | 0x7d5d400c, | ||
19225 | 0x2a10001f, | ||
19226 | 0x299c001f, | ||
19227 | 0x7d1d000b, | ||
19228 | 0x7d17400b, | ||
19229 | 0x88000000, | ||
19230 | 0x7e92800b, | ||
19231 | 0x96400004, | ||
19232 | 0xcc00004e, | ||
19233 | 0x80000249, | ||
19234 | 0xcc000042, | ||
19235 | 0x04380008, | ||
19236 | 0xcf800042, | ||
19237 | 0xc8080003, | ||
19238 | 0xc80c0003, | ||
19239 | 0xc8100003, | ||
19240 | 0xc8140003, | ||
19241 | 0xc8180003, | ||
19242 | 0xc81c0003, | ||
19243 | 0xc8240003, | ||
19244 | 0xc8280003, | ||
19245 | 0x29fc001f, | ||
19246 | 0x2ab0001f, | ||
19247 | 0x7ff3c00b, | ||
19248 | 0x28f0001f, | ||
19249 | 0x7ff3c00b, | ||
19250 | 0x2970001f, | ||
19251 | 0x7ff3c00b, | ||
19252 | 0x7d888001, | ||
19253 | 0x7dccc001, | ||
19254 | 0x7e510001, | ||
19255 | 0x7e954001, | ||
19256 | 0x7c908002, | ||
19257 | 0x7cd4c002, | ||
19258 | 0x7cbc800b, | ||
19259 | 0x9ac00003, | ||
19260 | 0x7c8f400b, | ||
19261 | 0x38b40001, | ||
19262 | 0x9b4000c1, | ||
19263 | 0xcc00004d, | ||
19264 | 0x9bc000bf, | ||
19265 | 0xcc00004e, | ||
19266 | 0xc80c03fd, | ||
19267 | 0xc81003fc, | ||
19268 | 0xccc00042, | ||
19269 | 0x8000016e, | ||
19270 | 0xcd000042, | ||
19271 | 0xd4000340, | ||
19272 | 0xd4000fc0, | ||
19273 | 0xd4000fa2, | ||
19274 | 0xcc800040, | ||
19275 | 0xcc400040, | ||
19276 | 0xcc400040, | ||
19277 | 0xcc400040, | ||
19278 | 0x7c40c000, | ||
19279 | 0xccc00040, | ||
19280 | 0xccc0000d, | ||
19281 | 0x80000000, | ||
19282 | 0xd0400040, | ||
19283 | 0x7c40c000, | ||
19284 | 0x7c410000, | ||
19285 | 0x65140020, | ||
19286 | 0x7d4d402c, | ||
19287 | 0x24580002, | ||
19288 | 0x7d598020, | ||
19289 | 0x7c41c000, | ||
19290 | 0xcd800042, | ||
19291 | 0x69980020, | ||
19292 | 0xcd800042, | ||
19293 | 0xcdc00042, | ||
19294 | 0xc023c000, | ||
19295 | 0x05e40002, | ||
19296 | 0x7ca0800b, | ||
19297 | 0x26640010, | ||
19298 | 0x7ca4800c, | ||
19299 | 0xcc800040, | ||
19300 | 0xcdc00040, | ||
19301 | 0xccc00040, | ||
19302 | 0x95c0000e, | ||
19303 | 0xcd000040, | ||
19304 | 0x09dc0001, | ||
19305 | 0xc8280003, | ||
19306 | 0x96800008, | ||
19307 | 0xce800040, | ||
19308 | 0xc834001d, | ||
19309 | 0x97400000, | ||
19310 | 0xc834001d, | ||
19311 | 0x26a80008, | ||
19312 | 0x8400024c, | ||
19313 | 0xcc2b0000, | ||
19314 | 0x99c0fff7, | ||
19315 | 0x09dc0001, | ||
19316 | 0xdc3a0000, | ||
19317 | 0x97800004, | ||
19318 | 0x7c418000, | ||
19319 | 0x800001a2, | ||
19320 | 0x25980002, | ||
19321 | 0xa0000000, | ||
19322 | 0x7d808000, | ||
19323 | 0xc818001d, | ||
19324 | 0x7c40c000, | ||
19325 | 0x64d00008, | ||
19326 | 0x95800000, | ||
19327 | 0xc818001d, | ||
19328 | 0xcc130000, | ||
19329 | 0xcc800040, | ||
19330 | 0xccc00040, | ||
19331 | 0x80000000, | ||
19332 | 0xcc400040, | ||
19333 | 0xc810001f, | ||
19334 | 0x7c40c000, | ||
19335 | 0xcc800040, | ||
19336 | 0x7cd1400c, | ||
19337 | 0xcd400040, | ||
19338 | 0x05180001, | ||
19339 | 0x80000000, | ||
19340 | 0xcd800022, | ||
19341 | 0x7c40c000, | ||
19342 | 0x64500020, | ||
19343 | 0x8400024c, | ||
19344 | 0xcc000061, | ||
19345 | 0x7cd0c02c, | ||
19346 | 0xc8200017, | ||
19347 | 0xc8d60000, | ||
19348 | 0x99400008, | ||
19349 | 0x7c438000, | ||
19350 | 0xdf830000, | ||
19351 | 0xcfa0004f, | ||
19352 | 0x8400024c, | ||
19353 | 0xcc000062, | ||
19354 | 0x80000000, | ||
19355 | 0xd040007f, | ||
19356 | 0x80000249, | ||
19357 | 0xcc000062, | ||
19358 | 0x8400024c, | ||
19359 | 0xcc000061, | ||
19360 | 0xc8200017, | ||
19361 | 0x7c40c000, | ||
19362 | 0xc036ff00, | ||
19363 | 0xc810000d, | ||
19364 | 0xc0303fff, | ||
19365 | 0x7cf5400b, | ||
19366 | 0x7d51800b, | ||
19367 | 0x7d81800f, | ||
19368 | 0x99800008, | ||
19369 | 0x7cf3800b, | ||
19370 | 0xdf830000, | ||
19371 | 0xcfa0004f, | ||
19372 | 0x8400024c, | ||
19373 | 0xcc000062, | ||
19374 | 0x80000000, | ||
19375 | 0xd040007f, | ||
19376 | 0x80000249, | ||
19377 | 0xcc000062, | ||
19378 | 0x8400024c, | ||
19379 | 0x7c40c000, | ||
19380 | 0x28dc0008, | ||
19381 | 0x95c00019, | ||
19382 | 0x30dc0010, | ||
19383 | 0x7c410000, | ||
19384 | 0x99c00004, | ||
19385 | 0x64540020, | ||
19386 | 0x80000208, | ||
19387 | 0xc91d0000, | ||
19388 | 0x7d15002c, | ||
19389 | 0xc91e0000, | ||
19390 | 0x7c420000, | ||
19391 | 0x7c424000, | ||
19392 | 0x7c418000, | ||
19393 | 0x7de5c00b, | ||
19394 | 0x7de28007, | ||
19395 | 0x9a80000e, | ||
19396 | 0x41ac0005, | ||
19397 | 0x9ac00000, | ||
19398 | 0x0aec0001, | ||
19399 | 0x30dc0010, | ||
19400 | 0x99c00004, | ||
19401 | 0x00000000, | ||
19402 | 0x8000020b, | ||
19403 | 0xc91d0000, | ||
19404 | 0x8000020b, | ||
19405 | 0xc91e0000, | ||
19406 | 0xcc800040, | ||
19407 | 0xccc00040, | ||
19408 | 0xd0400040, | ||
19409 | 0xc80c0025, | ||
19410 | 0x94c0fde4, | ||
19411 | 0xc8100008, | ||
19412 | 0xcd000040, | ||
19413 | 0xd4000fc0, | ||
19414 | 0x80000000, | ||
19415 | 0xd4000fa2, | ||
19416 | 0xd4000340, | ||
19417 | 0xd4000fc0, | ||
19418 | 0xd4000fa2, | ||
19419 | 0xcc800040, | ||
19420 | 0xd0400040, | ||
19421 | 0x7c408000, | ||
19422 | 0xa0000000, | ||
19423 | 0x7e82800b, | ||
19424 | 0xd40003c0, | ||
19425 | 0xd4000fc0, | ||
19426 | 0xd4000fa2, | ||
19427 | 0xcc800040, | ||
19428 | 0xd0400040, | ||
19429 | 0x7c408000, | ||
19430 | 0xa0000000, | ||
19431 | 0x7e82800b, | ||
19432 | 0x7c40c000, | ||
19433 | 0x30d00006, | ||
19434 | 0x0d100006, | ||
19435 | 0x99000007, | ||
19436 | 0xc8140015, | ||
19437 | 0x99400005, | ||
19438 | 0xcc000052, | ||
19439 | 0xd4000340, | ||
19440 | 0xd4000fc0, | ||
19441 | 0xd4000fa2, | ||
19442 | 0xcc800040, | ||
19443 | 0xccc00040, | ||
19444 | 0x80000000, | ||
19445 | 0xd0400040, | ||
19446 | 0x7c40c000, | ||
19447 | 0xcc4d0000, | ||
19448 | 0xdc3a0000, | ||
19449 | 0x9780fdbd, | ||
19450 | 0x04cc0001, | ||
19451 | 0x80000242, | ||
19452 | 0xcc4d0000, | ||
19453 | 0x80000000, | ||
19454 | 0xd040007f, | ||
19455 | 0xcc00007f, | ||
19456 | 0x80000000, | ||
19457 | 0xcc00007f, | ||
19458 | 0xcc00007f, | ||
19459 | 0x88000000, | ||
19460 | 0xcc00007f, | ||
19461 | 0x00000000, | ||
19462 | 0x00000000, | ||
19463 | 0x00000000, | ||
19464 | 0x00000000, | ||
19465 | 0x00000000, | ||
19466 | 0x00000000, | ||
19467 | 0x00000000, | ||
19468 | 0x00000000, | ||
19469 | 0x00000000, | ||
19470 | 0x00000000, | ||
19471 | 0x00000000, | ||
19472 | 0x00000000, | ||
19473 | 0x00000000, | ||
19474 | 0x00000000, | ||
19475 | 0x00000000, | ||
19476 | 0x00000000, | ||
19477 | 0x00000000, | ||
19478 | 0x00000000, | ||
19479 | 0x00000000, | ||
19480 | 0x00000000, | ||
19481 | 0x00000000, | ||
19482 | 0x00000000, | ||
19483 | 0x00000000, | ||
19484 | 0x00000000, | ||
19485 | 0x00000000, | ||
19486 | 0x00000000, | ||
19487 | 0x00000000, | ||
19488 | 0x00000000, | ||
19489 | 0x00000000, | ||
19490 | 0x00000000, | ||
19491 | 0x00000000, | ||
19492 | 0x00000000, | ||
19493 | 0x00000000, | ||
19494 | 0x00000000, | ||
19495 | 0x00000000, | ||
19496 | 0x00000000, | ||
19497 | 0x00000000, | ||
19498 | 0x00000000, | ||
19499 | 0x00000000, | ||
19500 | 0x00000000, | ||
19501 | 0x00000000, | ||
19502 | 0x00000000, | ||
19503 | 0x00000000, | ||
19504 | 0x00000000, | ||
19505 | 0x00000000, | ||
19506 | 0x00000000, | ||
19507 | 0x00000000, | ||
19508 | 0x00000000, | ||
19509 | 0x00000000, | ||
19510 | 0x00000000, | ||
19511 | 0x00000000, | ||
19512 | 0x00000000, | ||
19513 | 0x00000000, | ||
19514 | 0x00000000, | ||
19515 | 0x00000000, | ||
19516 | 0x00000000, | ||
19517 | 0x00000000, | ||
19518 | 0x00000000, | ||
19519 | 0x00000000, | ||
19520 | 0x00000000, | ||
19521 | 0x00000000, | ||
19522 | 0x00000000, | ||
19523 | 0x00000000, | ||
19524 | 0x00000000, | ||
19525 | 0x00000000, | ||
19526 | 0x00000000, | ||
19527 | 0x00000000, | ||
19528 | 0x00000000, | ||
19529 | 0x00000000, | ||
19530 | 0x00000000, | ||
19531 | 0x00000000, | ||
19532 | 0x00000000, | ||
19533 | 0x00000000, | ||
19534 | 0x00000000, | ||
19535 | 0x00000000, | ||
19536 | 0x00000000, | ||
19537 | 0x00000000, | ||
19538 | 0x00000000, | ||
19539 | 0x00000000, | ||
19540 | 0x00000000, | ||
19541 | 0x00000000, | ||
19542 | 0x00000000, | ||
19543 | 0x00000000, | ||
19544 | 0x00000000, | ||
19545 | 0x00000000, | ||
19546 | 0x00000000, | ||
19547 | 0x00000000, | ||
19548 | 0x00000000, | ||
19549 | 0x00000000, | ||
19550 | 0x00000000, | ||
19551 | 0x00000000, | ||
19552 | 0x00000000, | ||
19553 | 0x00000000, | ||
19554 | 0x00000000, | ||
19555 | 0x00000000, | ||
19556 | 0x00000000, | ||
19557 | 0x00000000, | ||
19558 | 0x00000000, | ||
19559 | 0x00000000, | ||
19560 | 0x00000000, | ||
19561 | 0x00000000, | ||
19562 | 0x00000000, | ||
19563 | 0x00000000, | ||
19564 | 0x00000000, | ||
19565 | 0x00000000, | ||
19566 | 0x00000000, | ||
19567 | 0x00000000, | ||
19568 | 0x00000000, | ||
19569 | 0x00000000, | ||
19570 | 0x00000000, | ||
19571 | 0x00000000, | ||
19572 | 0x00000000, | ||
19573 | 0x00000000, | ||
19574 | 0x00000000, | ||
19575 | 0x00000000, | ||
19576 | 0x00000000, | ||
19577 | 0x00000000, | ||
19578 | 0x00000000, | ||
19579 | 0x00000000, | ||
19580 | 0x00000000, | ||
19581 | 0x00000000, | ||
19582 | 0x00000000, | ||
19583 | 0x00000000, | ||
19584 | 0x00000000, | ||
19585 | 0x00000000, | ||
19586 | 0x00000000, | ||
19587 | 0x00000000, | ||
19588 | 0x00000000, | ||
19589 | 0x00000000, | ||
19590 | 0x00000000, | ||
19591 | 0x00000000, | ||
19592 | 0x00000000, | ||
19593 | 0x00000000, | ||
19594 | 0x00000000, | ||
19595 | 0x00000000, | ||
19596 | 0x00000000, | ||
19597 | 0x00000000, | ||
19598 | 0x00000000, | ||
19599 | 0x00000000, | ||
19600 | 0x00000000, | ||
19601 | 0x00000000, | ||
19602 | 0x00000000, | ||
19603 | 0x00000000, | ||
19604 | 0x00000000, | ||
19605 | 0x00000000, | ||
19606 | 0x00000000, | ||
19607 | 0x00000000, | ||
19608 | 0x00000000, | ||
19609 | 0x00000000, | ||
19610 | 0x00000000, | ||
19611 | 0x00000000, | ||
19612 | 0x00000000, | ||
19613 | 0x00000000, | ||
19614 | 0x00000000, | ||
19615 | 0x00000000, | ||
19616 | 0x00000000, | ||
19617 | 0x00000000, | ||
19618 | 0x00000000, | ||
19619 | 0x00000000, | ||
19620 | 0x00000000, | ||
19621 | 0x00000000, | ||
19622 | 0x00000000, | ||
19623 | 0x00000000, | ||
19624 | 0x00000000, | ||
19625 | 0x00000000, | ||
19626 | 0x00000000, | ||
19627 | 0x00000000, | ||
19628 | 0x00000000, | ||
19629 | 0x00000000, | ||
19630 | 0x00000000, | ||
19631 | 0x00000000, | ||
19632 | 0x00000000, | ||
19633 | 0x00000000, | ||
19634 | 0x00000000, | ||
19635 | 0x00000000, | ||
19636 | 0x00000000, | ||
19637 | 0x00000000, | ||
19638 | 0x00030222, | ||
19639 | 0x0004022a, | ||
19640 | 0x0005009f, | ||
19641 | 0x00020003, | ||
19642 | 0x0006003c, | ||
19643 | 0x00070027, | ||
19644 | 0x00080191, | ||
19645 | 0x00090044, | ||
19646 | 0x000a002d, | ||
19647 | 0x00100247, | ||
19648 | 0x001700f0, | ||
19649 | 0x002201d7, | ||
19650 | 0x002301e8, | ||
19651 | 0x0026004c, | ||
19652 | 0x0027005f, | ||
19653 | 0x0020011a, | ||
19654 | 0x00280092, | ||
19655 | 0x0029004f, | ||
19656 | 0x002a0083, | ||
19657 | 0x002b0064, | ||
19658 | 0x002f008d, | ||
19659 | 0x003200d8, | ||
19660 | 0x00340232, | ||
19661 | 0x00360074, | ||
19662 | 0x0039010a, | ||
19663 | 0x003c01fc, | ||
19664 | 0x003f009f, | ||
19665 | 0x00410005, | ||
19666 | 0x00440194, | ||
19667 | 0x0048019d, | ||
19668 | 0x004901c5, | ||
19669 | 0x004a01cf, | ||
19670 | 0x00550225, | ||
19671 | 0x0056022d, | ||
19672 | 0x0060000a, | ||
19673 | 0x0061002a, | ||
19674 | 0x00620030, | ||
19675 | 0x00630030, | ||
19676 | 0x00640030, | ||
19677 | 0x00650030, | ||
19678 | 0x00660030, | ||
19679 | 0x00670030, | ||
19680 | 0x00680037, | ||
19681 | 0x0069003f, | ||
19682 | 0x006a0047, | ||
19683 | 0x006b0047, | ||
19684 | 0x006c0047, | ||
19685 | 0x006d0047, | ||
19686 | 0x006e0047, | ||
19687 | 0x006f0047, | ||
19688 | 0x00700047, | ||
19689 | 0x00730247, | ||
19690 | 0x007b0240, | ||
19691 | 0x00000005, | ||
19692 | 0x00000005, | ||
19693 | 0x00000005, | ||
19694 | 0x00000005, | ||
19695 | 0x00000005, | ||
19696 | 0x00000005, | ||
19697 | 0x00000005, | ||
19698 | 0x00000005, | ||
19699 | 0x00000005, | ||
19700 | 0x00000005, | ||
19701 | 0x00000005, | ||
19702 | 0x00000005, | ||
19703 | 0x00000005, | ||
19704 | 0x00000005, | ||
19705 | 0x00000005, | ||
19706 | 0x00000005, | ||
19707 | 0x00000005, | ||
19708 | 0x00000005, | ||
19709 | 0x00000005, | ||
19710 | 0x00000005, | ||
19711 | 0x00000005, | ||
19712 | 0x00000005, | ||
19713 | 0x00000005, | ||
19714 | 0x00000005, | ||
19715 | 0x00000005, | ||
19716 | 0x00000005, | ||
19717 | 0x00000005, | ||
19718 | }; | ||
19719 | |||
19720 | static const u32 RV730_cp_microcode[] = { | ||
19721 | 0xcc0003ea, | ||
19722 | 0x7c408000, | ||
19723 | 0xa0000000, | ||
19724 | 0xcc800062, | ||
19725 | 0x80000001, | ||
19726 | 0xd040007f, | ||
19727 | 0x80000001, | ||
19728 | 0xcc400041, | ||
19729 | 0x7c40c000, | ||
19730 | 0xc0160004, | ||
19731 | 0x30d03fff, | ||
19732 | 0x7d15000c, | ||
19733 | 0xcc110000, | ||
19734 | 0x28d8001e, | ||
19735 | 0x31980001, | ||
19736 | 0x28dc001f, | ||
19737 | 0xc8200004, | ||
19738 | 0x95c00006, | ||
19739 | 0x7c424000, | ||
19740 | 0xcc000062, | ||
19741 | 0x7e56800c, | ||
19742 | 0xcc290000, | ||
19743 | 0xc8240004, | ||
19744 | 0x7e26000b, | ||
19745 | 0x95800006, | ||
19746 | 0x7c42c000, | ||
19747 | 0xcc000062, | ||
19748 | 0x7ed7000c, | ||
19749 | 0xcc310000, | ||
19750 | 0xc82c0004, | ||
19751 | 0x7e2e000c, | ||
19752 | 0xcc000062, | ||
19753 | 0x31103fff, | ||
19754 | 0x80000001, | ||
19755 | 0xce110000, | ||
19756 | 0x7c40c000, | ||
19757 | 0x80000001, | ||
19758 | 0xcc400040, | ||
19759 | 0x80000001, | ||
19760 | 0xcc412257, | ||
19761 | 0x7c418000, | ||
19762 | 0xcc400045, | ||
19763 | 0xcc400048, | ||
19764 | 0xcc41225c, | ||
19765 | 0xcc41a1fc, | ||
19766 | 0x7c408000, | ||
19767 | 0xa0000000, | ||
19768 | 0xcc800062, | ||
19769 | 0xcc400045, | ||
19770 | 0xcc400048, | ||
19771 | 0x7c40c000, | ||
19772 | 0xcc41225c, | ||
19773 | 0xcc41a1fc, | ||
19774 | 0x7c408000, | ||
19775 | 0xa0000000, | ||
19776 | 0xcc800062, | ||
19777 | 0xcc000045, | ||
19778 | 0xcc000048, | ||
19779 | 0xcc41225c, | ||
19780 | 0xcc41a1fc, | ||
19781 | 0x7c408000, | ||
19782 | 0xa0000000, | ||
19783 | 0xcc800062, | ||
19784 | 0x040ca1fd, | ||
19785 | 0xc0120001, | ||
19786 | 0xcc000045, | ||
19787 | 0xcc000048, | ||
19788 | 0x7cd0c00c, | ||
19789 | 0xcc41225c, | ||
19790 | 0xcc41a1fc, | ||
19791 | 0xd04d0000, | ||
19792 | 0x7c408000, | ||
19793 | 0xa0000000, | ||
19794 | 0xcc800062, | ||
19795 | 0x80000001, | ||
19796 | 0xcc41225d, | ||
19797 | 0x7c408000, | ||
19798 | 0x7c40c000, | ||
19799 | 0xc02a0002, | ||
19800 | 0x7c410000, | ||
19801 | 0x7d29000c, | ||
19802 | 0x30940001, | ||
19803 | 0x30980006, | ||
19804 | 0x309c0300, | ||
19805 | 0x29dc0008, | ||
19806 | 0x7c420000, | ||
19807 | 0x7c424000, | ||
19808 | 0x9540000f, | ||
19809 | 0xc02e0004, | ||
19810 | 0x05f02258, | ||
19811 | 0x7f2f000c, | ||
19812 | 0xcc310000, | ||
19813 | 0xc8280004, | ||
19814 | 0xccc12169, | ||
19815 | 0xcd01216a, | ||
19816 | 0xce81216b, | ||
19817 | 0x0db40002, | ||
19818 | 0xcc01216c, | ||
19819 | 0x9740000e, | ||
19820 | 0x0db40000, | ||
19821 | 0x8000007b, | ||
19822 | 0xc834000a, | ||
19823 | 0x0db40002, | ||
19824 | 0x97400009, | ||
19825 | 0x0db40000, | ||
19826 | 0xc02e0004, | ||
19827 | 0x05f02258, | ||
19828 | 0x7f2f000c, | ||
19829 | 0xcc310000, | ||
19830 | 0xc8280004, | ||
19831 | 0x8000007b, | ||
19832 | 0xc834000a, | ||
19833 | 0x97400004, | ||
19834 | 0x7e028000, | ||
19835 | 0x8000007b, | ||
19836 | 0xc834000a, | ||
19837 | 0x0db40004, | ||
19838 | 0x9740ff8c, | ||
19839 | 0x00000000, | ||
19840 | 0xce01216d, | ||
19841 | 0xce41216e, | ||
19842 | 0xc8280003, | ||
19843 | 0xc834000a, | ||
19844 | 0x9b400004, | ||
19845 | 0x043c0005, | ||
19846 | 0x8400026b, | ||
19847 | 0xcc000062, | ||
19848 | 0x0df40000, | ||
19849 | 0x9740000b, | ||
19850 | 0xc82c03e6, | ||
19851 | 0xce81a2b7, | ||
19852 | 0xc0300006, | ||
19853 | 0x7ef34028, | ||
19854 | 0xc0300020, | ||
19855 | 0x7f6b8020, | ||
19856 | 0x7fb3c029, | ||
19857 | 0xcf81a2c4, | ||
19858 | 0x80000001, | ||
19859 | 0xcfc1a2d1, | ||
19860 | 0x0df40001, | ||
19861 | 0x9740000b, | ||
19862 | 0xc82c03e7, | ||
19863 | 0xce81a2bb, | ||
19864 | 0xc0300006, | ||
19865 | 0x7ef34028, | ||
19866 | 0xc0300020, | ||
19867 | 0x7f6b8020, | ||
19868 | 0x7fb3c029, | ||
19869 | 0xcf81a2c5, | ||
19870 | 0x80000001, | ||
19871 | 0xcfc1a2d2, | ||
19872 | 0x0df40002, | ||
19873 | 0x9740000b, | ||
19874 | 0xc82c03e8, | ||
19875 | 0xce81a2bf, | ||
19876 | 0xc0300006, | ||
19877 | 0x7ef34028, | ||
19878 | 0xc0300020, | ||
19879 | 0x7f6b8020, | ||
19880 | 0x7fb3c029, | ||
19881 | 0xcf81a2c6, | ||
19882 | 0x80000001, | ||
19883 | 0xcfc1a2d3, | ||
19884 | 0xc82c03e9, | ||
19885 | 0xce81a2c3, | ||
19886 | 0xc0300006, | ||
19887 | 0x7ef34028, | ||
19888 | 0xc0300020, | ||
19889 | 0x7f6b8020, | ||
19890 | 0x7fb3c029, | ||
19891 | 0xcf81a2c7, | ||
19892 | 0x80000001, | ||
19893 | 0xcfc1a2d4, | ||
19894 | 0x80000001, | ||
19895 | 0xcc400042, | ||
19896 | 0x7c40c000, | ||
19897 | 0x7c410000, | ||
19898 | 0x2914001d, | ||
19899 | 0x31540001, | ||
19900 | 0x9940000c, | ||
19901 | 0x31181000, | ||
19902 | 0xc81c0011, | ||
19903 | 0x95c00000, | ||
19904 | 0xc81c0011, | ||
19905 | 0xccc12100, | ||
19906 | 0xcd012101, | ||
19907 | 0xccc12102, | ||
19908 | 0xcd012103, | ||
19909 | 0x04180004, | ||
19910 | 0x8000037c, | ||
19911 | 0xcd81a2a4, | ||
19912 | 0xc02a0004, | ||
19913 | 0x95800008, | ||
19914 | 0x36a821a3, | ||
19915 | 0xcc290000, | ||
19916 | 0xc8280004, | ||
19917 | 0xc81c0011, | ||
19918 | 0x0de40040, | ||
19919 | 0x9640ffff, | ||
19920 | 0xc81c0011, | ||
19921 | 0xccc12170, | ||
19922 | 0xcd012171, | ||
19923 | 0xc8200012, | ||
19924 | 0x96000000, | ||
19925 | 0xc8200012, | ||
19926 | 0x8000037c, | ||
19927 | 0xcc000064, | ||
19928 | 0x7c40c000, | ||
19929 | 0x7c410000, | ||
19930 | 0xcc000045, | ||
19931 | 0xcc000048, | ||
19932 | 0x40d40003, | ||
19933 | 0xcd41225c, | ||
19934 | 0xcd01a1fc, | ||
19935 | 0xc01a0001, | ||
19936 | 0x041ca1fd, | ||
19937 | 0x7dd9c00c, | ||
19938 | 0x7c420000, | ||
19939 | 0x08cc0001, | ||
19940 | 0x06240001, | ||
19941 | 0x06280002, | ||
19942 | 0xce1d0000, | ||
19943 | 0xce5d0000, | ||
19944 | 0x98c0fffa, | ||
19945 | 0xce9d0000, | ||
19946 | 0x7c408000, | ||
19947 | 0xa0000000, | ||
19948 | 0xcc800062, | ||
19949 | 0x7c40c000, | ||
19950 | 0x30d00001, | ||
19951 | 0x28cc0001, | ||
19952 | 0x7c414000, | ||
19953 | 0x95000006, | ||
19954 | 0x7c418000, | ||
19955 | 0xcd41216d, | ||
19956 | 0xcd81216e, | ||
19957 | 0x800000f2, | ||
19958 | 0xc81c0003, | ||
19959 | 0xc0220004, | ||
19960 | 0x7e16000c, | ||
19961 | 0xcc210000, | ||
19962 | 0xc81c0004, | ||
19963 | 0x7c424000, | ||
19964 | 0x98c00004, | ||
19965 | 0x7c428000, | ||
19966 | 0x80000001, | ||
19967 | 0xcde50000, | ||
19968 | 0xce412169, | ||
19969 | 0xce81216a, | ||
19970 | 0xcdc1216b, | ||
19971 | 0x80000001, | ||
19972 | 0xcc01216c, | ||
19973 | 0x7c40c000, | ||
19974 | 0x7c410000, | ||
19975 | 0x7c414000, | ||
19976 | 0x7c418000, | ||
19977 | 0x7c41c000, | ||
19978 | 0x28a40008, | ||
19979 | 0x326400ff, | ||
19980 | 0x0e68003c, | ||
19981 | 0x9680000a, | ||
19982 | 0x7c020000, | ||
19983 | 0x7c420000, | ||
19984 | 0x1e300003, | ||
19985 | 0xcc00006a, | ||
19986 | 0x9b000003, | ||
19987 | 0x42200005, | ||
19988 | 0x04200040, | ||
19989 | 0x8000010f, | ||
19990 | 0x7c024000, | ||
19991 | 0x7e024000, | ||
19992 | 0x9a400000, | ||
19993 | 0x0a640001, | ||
19994 | 0x30ec0010, | ||
19995 | 0x9ac0000a, | ||
19996 | 0xcc000062, | ||
19997 | 0xc02a0004, | ||
19998 | 0xc82c0021, | ||
19999 | 0x7e92800c, | ||
20000 | 0xcc000041, | ||
20001 | 0xcc290000, | ||
20002 | 0xcec00021, | ||
20003 | 0x8000011f, | ||
20004 | 0xc8300004, | ||
20005 | 0xcd01216d, | ||
20006 | 0xcd41216e, | ||
20007 | 0xc8300003, | ||
20008 | 0x7f1f000b, | ||
20009 | 0x30f40007, | ||
20010 | 0x27780001, | ||
20011 | 0x9740002a, | ||
20012 | 0x07b80124, | ||
20013 | 0x9f800000, | ||
20014 | 0x00000000, | ||
20015 | 0x80000134, | ||
20016 | 0x7f1b8004, | ||
20017 | 0x80000138, | ||
20018 | 0x7f1b8005, | ||
20019 | 0x8000013c, | ||
20020 | 0x7f1b8002, | ||
20021 | 0x80000140, | ||
20022 | 0x7f1b8003, | ||
20023 | 0x80000144, | ||
20024 | 0x7f1b8007, | ||
20025 | 0x80000148, | ||
20026 | 0x7f1b8006, | ||
20027 | 0x8000014d, | ||
20028 | 0x28a40008, | ||
20029 | 0x9b800019, | ||
20030 | 0x28a40008, | ||
20031 | 0x8000015d, | ||
20032 | 0x326400ff, | ||
20033 | 0x9b800015, | ||
20034 | 0x28a40008, | ||
20035 | 0x8000015d, | ||
20036 | 0x326400ff, | ||
20037 | 0x9b800011, | ||
20038 | 0x28a40008, | ||
20039 | 0x8000015d, | ||
20040 | 0x326400ff, | ||
20041 | 0x9b80000d, | ||
20042 | 0x28a40008, | ||
20043 | 0x8000015d, | ||
20044 | 0x326400ff, | ||
20045 | 0x9b800009, | ||
20046 | 0x28a40008, | ||
20047 | 0x8000015d, | ||
20048 | 0x326400ff, | ||
20049 | 0x9b800005, | ||
20050 | 0x28a40008, | ||
20051 | 0x8000015d, | ||
20052 | 0x326400ff, | ||
20053 | 0x28a40008, | ||
20054 | 0x326400ff, | ||
20055 | 0x0e68003c, | ||
20056 | 0x9a80feb2, | ||
20057 | 0x28ec0008, | ||
20058 | 0x7c434000, | ||
20059 | 0x7c438000, | ||
20060 | 0x7c43c000, | ||
20061 | 0x96c00007, | ||
20062 | 0xcc000062, | ||
20063 | 0xcf412169, | ||
20064 | 0xcf81216a, | ||
20065 | 0xcfc1216b, | ||
20066 | 0x80000001, | ||
20067 | 0xcc01216c, | ||
20068 | 0x80000001, | ||
20069 | 0xcff50000, | ||
20070 | 0xcc00006b, | ||
20071 | 0x8400037f, | ||
20072 | 0x0e68003c, | ||
20073 | 0x9a800004, | ||
20074 | 0xc8280015, | ||
20075 | 0x80000001, | ||
20076 | 0xd040007f, | ||
20077 | 0x9680ffab, | ||
20078 | 0x7e024000, | ||
20079 | 0x84000239, | ||
20080 | 0xc00e0002, | ||
20081 | 0xcc000041, | ||
20082 | 0x80000237, | ||
20083 | 0xccc1304a, | ||
20084 | 0x7c40c000, | ||
20085 | 0x7c410000, | ||
20086 | 0xc01e0001, | ||
20087 | 0x29240012, | ||
20088 | 0xc0220002, | ||
20089 | 0x96400005, | ||
20090 | 0xc0260004, | ||
20091 | 0xc027fffb, | ||
20092 | 0x7d25000b, | ||
20093 | 0xc0260000, | ||
20094 | 0x7dd2800b, | ||
20095 | 0x7e12c00b, | ||
20096 | 0x7d25000c, | ||
20097 | 0x7c414000, | ||
20098 | 0x7c418000, | ||
20099 | 0xccc12169, | ||
20100 | 0x9a80000a, | ||
20101 | 0xcd01216a, | ||
20102 | 0xcd41216b, | ||
20103 | 0x96c0fe83, | ||
20104 | 0xcd81216c, | ||
20105 | 0xc8300018, | ||
20106 | 0x97000000, | ||
20107 | 0xc8300018, | ||
20108 | 0x80000001, | ||
20109 | 0xcc000018, | ||
20110 | 0x8400037f, | ||
20111 | 0xcc00007f, | ||
20112 | 0xc8140013, | ||
20113 | 0xc8180014, | ||
20114 | 0xcd41216b, | ||
20115 | 0x96c0fe77, | ||
20116 | 0xcd81216c, | ||
20117 | 0x80000181, | ||
20118 | 0xc8300018, | ||
20119 | 0xc80c0008, | ||
20120 | 0x98c00000, | ||
20121 | 0xc80c0008, | ||
20122 | 0x7c410000, | ||
20123 | 0x95000002, | ||
20124 | 0x00000000, | ||
20125 | 0x7c414000, | ||
20126 | 0xc8200009, | ||
20127 | 0xcc400043, | ||
20128 | 0xce01a1f4, | ||
20129 | 0xcc400044, | ||
20130 | 0xc00e8000, | ||
20131 | 0x7c424000, | ||
20132 | 0x7c428000, | ||
20133 | 0x2aac001f, | ||
20134 | 0x96c0fe64, | ||
20135 | 0xc035f000, | ||
20136 | 0xce4003e2, | ||
20137 | 0x32780003, | ||
20138 | 0x267c0008, | ||
20139 | 0x7ff7c00b, | ||
20140 | 0x7ffbc00c, | ||
20141 | 0x2a780018, | ||
20142 | 0xcfc003e3, | ||
20143 | 0xcf8003e4, | ||
20144 | 0x26b00002, | ||
20145 | 0x7f3f0000, | ||
20146 | 0xcf0003e5, | ||
20147 | 0x8000031d, | ||
20148 | 0x7c80c000, | ||
20149 | 0x7c40c000, | ||
20150 | 0x28d00008, | ||
20151 | 0x3110000f, | ||
20152 | 0x9500000f, | ||
20153 | 0x25280001, | ||
20154 | 0x06a801b2, | ||
20155 | 0x9e800000, | ||
20156 | 0x00000000, | ||
20157 | 0x800001d3, | ||
20158 | 0xc0120800, | ||
20159 | 0x800001e1, | ||
20160 | 0xc814000f, | ||
20161 | 0x800001e8, | ||
20162 | 0xc8140010, | ||
20163 | 0x800001ef, | ||
20164 | 0xccc1a2a4, | ||
20165 | 0x800001f8, | ||
20166 | 0xc8140011, | ||
20167 | 0x30d0003f, | ||
20168 | 0x0d280015, | ||
20169 | 0x9a800012, | ||
20170 | 0x0d28001e, | ||
20171 | 0x9a80001e, | ||
20172 | 0x0d280020, | ||
20173 | 0x9a800023, | ||
20174 | 0x0d24000f, | ||
20175 | 0x0d280010, | ||
20176 | 0x7e6a800c, | ||
20177 | 0x9a800026, | ||
20178 | 0x0d200004, | ||
20179 | 0x0d240014, | ||
20180 | 0x0d280028, | ||
20181 | 0x7e62400c, | ||
20182 | 0x7ea6800c, | ||
20183 | 0x9a80002a, | ||
20184 | 0xc8140011, | ||
20185 | 0x80000001, | ||
20186 | 0xccc1a2a4, | ||
20187 | 0xc0120800, | ||
20188 | 0x7c414000, | ||
20189 | 0x7d0cc00c, | ||
20190 | 0xc0120008, | ||
20191 | 0x29580003, | ||
20192 | 0x295c000c, | ||
20193 | 0x7c420000, | ||
20194 | 0x7dd1c00b, | ||
20195 | 0x26200014, | ||
20196 | 0x7e1e400c, | ||
20197 | 0x7e4e800c, | ||
20198 | 0xce81a2a4, | ||
20199 | 0x80000001, | ||
20200 | 0xcd81a1fe, | ||
20201 | 0xc814000f, | ||
20202 | 0x0410210e, | ||
20203 | 0x95400000, | ||
20204 | 0xc814000f, | ||
20205 | 0xd0510000, | ||
20206 | 0x80000001, | ||
20207 | 0xccc1a2a4, | ||
20208 | 0xc8140010, | ||
20209 | 0x04102108, | ||
20210 | 0x95400000, | ||
20211 | 0xc8140010, | ||
20212 | 0xd0510000, | ||
20213 | 0x80000001, | ||
20214 | 0xccc1a2a4, | ||
20215 | 0xccc1a2a4, | ||
20216 | 0x04100001, | ||
20217 | 0xcd000019, | ||
20218 | 0x8400037f, | ||
20219 | 0xcc00007f, | ||
20220 | 0xc8100019, | ||
20221 | 0x99000000, | ||
20222 | 0xc8100019, | ||
20223 | 0x80000002, | ||
20224 | 0x7c408000, | ||
20225 | 0x04102100, | ||
20226 | 0x95400000, | ||
20227 | 0xc8140011, | ||
20228 | 0xd0510000, | ||
20229 | 0x8000037c, | ||
20230 | 0xccc1a2a4, | ||
20231 | 0x7c40c000, | ||
20232 | 0xcc40000d, | ||
20233 | 0x94c0fe01, | ||
20234 | 0xcc40000e, | ||
20235 | 0x7c410000, | ||
20236 | 0x95000005, | ||
20237 | 0x08cc0001, | ||
20238 | 0xc8140005, | ||
20239 | 0x99400014, | ||
20240 | 0x00000000, | ||
20241 | 0x98c0fffb, | ||
20242 | 0x7c410000, | ||
20243 | 0x80000002, | ||
20244 | 0x7d008000, | ||
20245 | 0xc8140005, | ||
20246 | 0x7c40c000, | ||
20247 | 0x9940000c, | ||
20248 | 0xc818000c, | ||
20249 | 0x7c410000, | ||
20250 | 0x9580fdf0, | ||
20251 | 0xc820000e, | ||
20252 | 0xc81c000d, | ||
20253 | 0x66200020, | ||
20254 | 0x7e1e002c, | ||
20255 | 0x25240002, | ||
20256 | 0x7e624020, | ||
20257 | 0x80000001, | ||
20258 | 0xcce60000, | ||
20259 | 0x7c410000, | ||
20260 | 0xcc00006c, | ||
20261 | 0xcc00006d, | ||
20262 | 0xc818001f, | ||
20263 | 0xc81c001e, | ||
20264 | 0x65980020, | ||
20265 | 0x7dd9c02c, | ||
20266 | 0x7cd4c00c, | ||
20267 | 0xccde0000, | ||
20268 | 0x45dc0004, | ||
20269 | 0xc8280017, | ||
20270 | 0x9680000f, | ||
20271 | 0xc00e0001, | ||
20272 | 0x28680008, | ||
20273 | 0x2aac0016, | ||
20274 | 0x32a800ff, | ||
20275 | 0x0eb00049, | ||
20276 | 0x7f2f000b, | ||
20277 | 0x97000006, | ||
20278 | 0x00000000, | ||
20279 | 0xc8140005, | ||
20280 | 0x7c40c000, | ||
20281 | 0x80000221, | ||
20282 | 0x7c410000, | ||
20283 | 0x80000224, | ||
20284 | 0xd040007f, | ||
20285 | 0x84000239, | ||
20286 | 0xcc000041, | ||
20287 | 0xccc1304a, | ||
20288 | 0x94000000, | ||
20289 | 0xc83c001a, | ||
20290 | 0x043c0005, | ||
20291 | 0xcfc1a2a4, | ||
20292 | 0xc0361f90, | ||
20293 | 0xc0387fff, | ||
20294 | 0x7c03c010, | ||
20295 | 0x7f7b400c, | ||
20296 | 0xcf41217c, | ||
20297 | 0xcfc1217d, | ||
20298 | 0xcc01217e, | ||
20299 | 0xc03a0004, | ||
20300 | 0x0434217f, | ||
20301 | 0x7f7b400c, | ||
20302 | 0xcc350000, | ||
20303 | 0xc83c0004, | ||
20304 | 0x2bfc001f, | ||
20305 | 0x04380020, | ||
20306 | 0x97c00005, | ||
20307 | 0xcc000062, | ||
20308 | 0x9b800000, | ||
20309 | 0x0bb80001, | ||
20310 | 0x80000245, | ||
20311 | 0xcc000071, | ||
20312 | 0xcc01a1f4, | ||
20313 | 0x04380016, | ||
20314 | 0xc0360002, | ||
20315 | 0xcf81a2a4, | ||
20316 | 0x88000000, | ||
20317 | 0xcf412010, | ||
20318 | 0x7c40c000, | ||
20319 | 0x28d0001c, | ||
20320 | 0x95000005, | ||
20321 | 0x04d40001, | ||
20322 | 0xcd400065, | ||
20323 | 0x80000001, | ||
20324 | 0xcd400068, | ||
20325 | 0x09540002, | ||
20326 | 0x80000001, | ||
20327 | 0xcd400066, | ||
20328 | 0x8400026a, | ||
20329 | 0xc81803ea, | ||
20330 | 0x7c40c000, | ||
20331 | 0x9980fd9f, | ||
20332 | 0xc8140016, | ||
20333 | 0x08d00001, | ||
20334 | 0x9940002b, | ||
20335 | 0xcd000068, | ||
20336 | 0x7c408000, | ||
20337 | 0xa0000000, | ||
20338 | 0xcc800062, | ||
20339 | 0x043c0005, | ||
20340 | 0xcfc1a2a4, | ||
20341 | 0xcc01a1f4, | ||
20342 | 0x8400037f, | ||
20343 | 0xcc000046, | ||
20344 | 0x88000000, | ||
20345 | 0xcc00007f, | ||
20346 | 0x8400027c, | ||
20347 | 0xc81803ea, | ||
20348 | 0x7c40c000, | ||
20349 | 0x9980fd8d, | ||
20350 | 0xc8140016, | ||
20351 | 0x08d00001, | ||
20352 | 0x99400019, | ||
20353 | 0xcd000068, | ||
20354 | 0x7c408000, | ||
20355 | 0xa0000000, | ||
20356 | 0xcc800062, | ||
20357 | 0x043c0022, | ||
20358 | 0xcfc1a2a4, | ||
20359 | 0x8400037f, | ||
20360 | 0xcc000047, | ||
20361 | 0x88000000, | ||
20362 | 0xcc00007f, | ||
20363 | 0xc8100016, | ||
20364 | 0x9900000d, | ||
20365 | 0xcc400067, | ||
20366 | 0x80000002, | ||
20367 | 0x7c408000, | ||
20368 | 0xc81803ea, | ||
20369 | 0x9980fd79, | ||
20370 | 0x7c40c000, | ||
20371 | 0x94c00003, | ||
20372 | 0xc8100016, | ||
20373 | 0x99000004, | ||
20374 | 0xccc00068, | ||
20375 | 0x80000002, | ||
20376 | 0x7c408000, | ||
20377 | 0x84000239, | ||
20378 | 0xc0148000, | ||
20379 | 0xcc000041, | ||
20380 | 0xcd41304a, | ||
20381 | 0xc0148000, | ||
20382 | 0x99000000, | ||
20383 | 0xc8100016, | ||
20384 | 0x80000002, | ||
20385 | 0x7c408000, | ||
20386 | 0xc0120001, | ||
20387 | 0x7c51400c, | ||
20388 | 0x80000001, | ||
20389 | 0xd0550000, | ||
20390 | 0x7c40c000, | ||
20391 | 0x7c410000, | ||
20392 | 0x7c414000, | ||
20393 | 0x7c418000, | ||
20394 | 0x291c001f, | ||
20395 | 0xccc0004a, | ||
20396 | 0xcd00004b, | ||
20397 | 0x95c00003, | ||
20398 | 0xc01c8000, | ||
20399 | 0xcdc12010, | ||
20400 | 0xdd830000, | ||
20401 | 0x055c2000, | ||
20402 | 0xcc000062, | ||
20403 | 0x80000001, | ||
20404 | 0xd81f4100, | ||
20405 | 0x7c40c000, | ||
20406 | 0x7c410000, | ||
20407 | 0x7c414000, | ||
20408 | 0x7c418000, | ||
20409 | 0xccc0004c, | ||
20410 | 0xcd00004d, | ||
20411 | 0xdd830000, | ||
20412 | 0x055ca000, | ||
20413 | 0x80000001, | ||
20414 | 0xd81f4100, | ||
20415 | 0x7c40c000, | ||
20416 | 0x7c410000, | ||
20417 | 0x7c414000, | ||
20418 | 0x7c418000, | ||
20419 | 0xccc0004e, | ||
20420 | 0xcd00004f, | ||
20421 | 0xdd830000, | ||
20422 | 0x055cc000, | ||
20423 | 0x80000001, | ||
20424 | 0xd81f4100, | ||
20425 | 0x7c40c000, | ||
20426 | 0x7c410000, | ||
20427 | 0x7c414000, | ||
20428 | 0x7c418000, | ||
20429 | 0xccc00050, | ||
20430 | 0xcd000051, | ||
20431 | 0xdd830000, | ||
20432 | 0x055cf8e0, | ||
20433 | 0x80000001, | ||
20434 | 0xd81f4100, | ||
20435 | 0x7c40c000, | ||
20436 | 0x7c410000, | ||
20437 | 0x7c414000, | ||
20438 | 0x7c418000, | ||
20439 | 0xccc00052, | ||
20440 | 0xcd000053, | ||
20441 | 0xdd830000, | ||
20442 | 0x055cf880, | ||
20443 | 0x80000001, | ||
20444 | 0xd81f4100, | ||
20445 | 0x7c40c000, | ||
20446 | 0x7c410000, | ||
20447 | 0x7c414000, | ||
20448 | 0x7c418000, | ||
20449 | 0xccc00054, | ||
20450 | 0xcd000055, | ||
20451 | 0xdd830000, | ||
20452 | 0x055ce000, | ||
20453 | 0x80000001, | ||
20454 | 0xd81f4100, | ||
20455 | 0x7c40c000, | ||
20456 | 0x7c410000, | ||
20457 | 0x7c414000, | ||
20458 | 0x7c418000, | ||
20459 | 0xccc00056, | ||
20460 | 0xcd000057, | ||
20461 | 0xdd830000, | ||
20462 | 0x055cf000, | ||
20463 | 0x80000001, | ||
20464 | 0xd81f4100, | ||
20465 | 0x7c40c000, | ||
20466 | 0x7c410000, | ||
20467 | 0x7c414000, | ||
20468 | 0x7c418000, | ||
20469 | 0xccc00058, | ||
20470 | 0xcd000059, | ||
20471 | 0xdd830000, | ||
20472 | 0x055cf3fc, | ||
20473 | 0x80000001, | ||
20474 | 0xd81f4100, | ||
20475 | 0xd0432000, | ||
20476 | 0x7c408000, | ||
20477 | 0xa0000000, | ||
20478 | 0xcc800062, | ||
20479 | 0xd043a000, | ||
20480 | 0x7c408000, | ||
20481 | 0xa0000000, | ||
20482 | 0xcc800062, | ||
20483 | 0xd043c000, | ||
20484 | 0x7c408000, | ||
20485 | 0xa0000000, | ||
20486 | 0xcc800062, | ||
20487 | 0xd043f8e0, | ||
20488 | 0x7c408000, | ||
20489 | 0xa0000000, | ||
20490 | 0xcc800062, | ||
20491 | 0xd043f880, | ||
20492 | 0x7c408000, | ||
20493 | 0xa0000000, | ||
20494 | 0xcc800062, | ||
20495 | 0xd043e000, | ||
20496 | 0x7c408000, | ||
20497 | 0xa0000000, | ||
20498 | 0xcc800062, | ||
20499 | 0xd043f000, | ||
20500 | 0x7c408000, | ||
20501 | 0xa0000000, | ||
20502 | 0xcc800062, | ||
20503 | 0xd043f3fc, | ||
20504 | 0x7c408000, | ||
20505 | 0xa0000000, | ||
20506 | 0xcc800062, | ||
20507 | 0xc81403e0, | ||
20508 | 0xcc430000, | ||
20509 | 0xcc430000, | ||
20510 | 0xcc430000, | ||
20511 | 0x7d45c000, | ||
20512 | 0xcdc30000, | ||
20513 | 0xd0430000, | ||
20514 | 0x7c408000, | ||
20515 | 0xa0000000, | ||
20516 | 0xcc800062, | ||
20517 | 0x7c40c000, | ||
20518 | 0xc81003e2, | ||
20519 | 0xc81403e5, | ||
20520 | 0xc81803e3, | ||
20521 | 0xc81c03e4, | ||
20522 | 0xcd812169, | ||
20523 | 0xcdc1216a, | ||
20524 | 0xccc1216b, | ||
20525 | 0xcc01216c, | ||
20526 | 0x04200004, | ||
20527 | 0x7da18000, | ||
20528 | 0x7d964002, | ||
20529 | 0x9640fcd9, | ||
20530 | 0xcd8003e3, | ||
20531 | 0x31280003, | ||
20532 | 0xc02df000, | ||
20533 | 0x25180008, | ||
20534 | 0x7dad800b, | ||
20535 | 0x7da9800c, | ||
20536 | 0x80000001, | ||
20537 | 0xcd8003e3, | ||
20538 | 0x308cffff, | ||
20539 | 0xd04d0000, | ||
20540 | 0x7c408000, | ||
20541 | 0xa0000000, | ||
20542 | 0xcc800062, | ||
20543 | 0xc8140020, | ||
20544 | 0x15580002, | ||
20545 | 0x9580ffff, | ||
20546 | 0xc8140020, | ||
20547 | 0xcc00006e, | ||
20548 | 0xcc412180, | ||
20549 | 0x7c40c000, | ||
20550 | 0xccc1218d, | ||
20551 | 0xcc412181, | ||
20552 | 0x28d0001f, | ||
20553 | 0x34588000, | ||
20554 | 0xcd81218c, | ||
20555 | 0x9500fcbf, | ||
20556 | 0xcc412182, | ||
20557 | 0xc8140020, | ||
20558 | 0x9940ffff, | ||
20559 | 0xc8140020, | ||
20560 | 0x80000002, | ||
20561 | 0x7c408000, | ||
20562 | 0x7c40c000, | ||
20563 | 0x28d00018, | ||
20564 | 0x31100001, | ||
20565 | 0xc0160080, | ||
20566 | 0x95000003, | ||
20567 | 0xc02a0004, | ||
20568 | 0x7cd4c00c, | ||
20569 | 0xccc1217c, | ||
20570 | 0xcc41217d, | ||
20571 | 0xcc41217e, | ||
20572 | 0x7c418000, | ||
20573 | 0x1db00003, | ||
20574 | 0x36a0217f, | ||
20575 | 0x9b000003, | ||
20576 | 0x419c0005, | ||
20577 | 0x041c0040, | ||
20578 | 0x99c00000, | ||
20579 | 0x09dc0001, | ||
20580 | 0xcc210000, | ||
20581 | 0xc8240004, | ||
20582 | 0x2a6c001f, | ||
20583 | 0x419c0005, | ||
20584 | 0x9ac0fffa, | ||
20585 | 0xcc800062, | ||
20586 | 0x80000002, | ||
20587 | 0x7c408000, | ||
20588 | 0x7c40c000, | ||
20589 | 0x04d403e6, | ||
20590 | 0x80000001, | ||
20591 | 0xcc540000, | ||
20592 | 0x8000037c, | ||
20593 | 0xcc4003ea, | ||
20594 | 0xc01c8000, | ||
20595 | 0x044ca000, | ||
20596 | 0xcdc12010, | ||
20597 | 0x7c410000, | ||
20598 | 0xc8140009, | ||
20599 | 0x04180000, | ||
20600 | 0x041c0008, | ||
20601 | 0xcd800071, | ||
20602 | 0x09dc0001, | ||
20603 | 0x05980001, | ||
20604 | 0xcd0d0000, | ||
20605 | 0x99c0fffc, | ||
20606 | 0xcc800062, | ||
20607 | 0x8000037c, | ||
20608 | 0xcd400071, | ||
20609 | 0xc00e0100, | ||
20610 | 0xcc000041, | ||
20611 | 0xccc1304a, | ||
20612 | 0xc83c007f, | ||
20613 | 0xcc00007f, | ||
20614 | 0x80000001, | ||
20615 | 0xcc00007f, | ||
20616 | 0xcc00007f, | ||
20617 | 0x88000000, | ||
20618 | 0xcc00007f, | ||
20619 | 0x00000000, | ||
20620 | 0x00000000, | ||
20621 | 0x00000000, | ||
20622 | 0x00000000, | ||
20623 | 0x00000000, | ||
20624 | 0x00000000, | ||
20625 | 0x00000000, | ||
20626 | 0x00000000, | ||
20627 | 0x00000000, | ||
20628 | 0x00000000, | ||
20629 | 0x00000000, | ||
20630 | 0x00000000, | ||
20631 | 0x00000000, | ||
20632 | 0x00000000, | ||
20633 | 0x00000000, | ||
20634 | 0x00000000, | ||
20635 | 0x00000000, | ||
20636 | 0x00000000, | ||
20637 | 0x00000000, | ||
20638 | 0x00000000, | ||
20639 | 0x00000000, | ||
20640 | 0x00000000, | ||
20641 | 0x00000000, | ||
20642 | 0x00000000, | ||
20643 | 0x00000000, | ||
20644 | 0x00000000, | ||
20645 | 0x00000000, | ||
20646 | 0x00000000, | ||
20647 | 0x00000000, | ||
20648 | 0x00000000, | ||
20649 | 0x00000000, | ||
20650 | 0x00000000, | ||
20651 | 0x00000000, | ||
20652 | 0x00000000, | ||
20653 | 0x00000000, | ||
20654 | 0x00000000, | ||
20655 | 0x00000000, | ||
20656 | 0x00000000, | ||
20657 | 0x00000000, | ||
20658 | 0x00000000, | ||
20659 | 0x00000000, | ||
20660 | 0x00000000, | ||
20661 | 0x00000000, | ||
20662 | 0x00000000, | ||
20663 | 0x00000000, | ||
20664 | 0x00000000, | ||
20665 | 0x00000000, | ||
20666 | 0x00000000, | ||
20667 | 0x00000000, | ||
20668 | 0x00000000, | ||
20669 | 0x00000000, | ||
20670 | 0x00000000, | ||
20671 | 0x00000000, | ||
20672 | 0x00000000, | ||
20673 | 0x00000000, | ||
20674 | 0x00000000, | ||
20675 | 0x00000000, | ||
20676 | 0x00000000, | ||
20677 | 0x00000000, | ||
20678 | 0x00000000, | ||
20679 | 0x00000000, | ||
20680 | 0x00000000, | ||
20681 | 0x00000000, | ||
20682 | 0x00000000, | ||
20683 | 0x00000000, | ||
20684 | 0x00000000, | ||
20685 | 0x00000000, | ||
20686 | 0x00000000, | ||
20687 | 0x00000000, | ||
20688 | 0x00000000, | ||
20689 | 0x00000000, | ||
20690 | 0x00000000, | ||
20691 | 0x00000000, | ||
20692 | 0x00000000, | ||
20693 | 0x00000000, | ||
20694 | 0x00000000, | ||
20695 | 0x00000000, | ||
20696 | 0x00000000, | ||
20697 | 0x00000000, | ||
20698 | 0x00000000, | ||
20699 | 0x00000000, | ||
20700 | 0x00000000, | ||
20701 | 0x00000000, | ||
20702 | 0x00000000, | ||
20703 | 0x00000000, | ||
20704 | 0x00000000, | ||
20705 | 0x00000000, | ||
20706 | 0x00000000, | ||
20707 | 0x00000000, | ||
20708 | 0x00000000, | ||
20709 | 0x00000000, | ||
20710 | 0x00000000, | ||
20711 | 0x00000000, | ||
20712 | 0x00000000, | ||
20713 | 0x00000000, | ||
20714 | 0x00000000, | ||
20715 | 0x00000000, | ||
20716 | 0x00000000, | ||
20717 | 0x00000000, | ||
20718 | 0x00000000, | ||
20719 | 0x00000000, | ||
20720 | 0x00000000, | ||
20721 | 0x00000000, | ||
20722 | 0x00000000, | ||
20723 | 0x00000000, | ||
20724 | 0x00000000, | ||
20725 | 0x00000000, | ||
20726 | 0x00000000, | ||
20727 | 0x00000000, | ||
20728 | 0x00000000, | ||
20729 | 0x00000000, | ||
20730 | 0x00000000, | ||
20731 | 0x00000000, | ||
20732 | 0x00000000, | ||
20733 | 0x00000000, | ||
20734 | 0x00000000, | ||
20735 | 0x00000000, | ||
20736 | 0x00000000, | ||
20737 | 0x00000000, | ||
20738 | 0x00000000, | ||
20739 | 0x00000000, | ||
20740 | 0x00000000, | ||
20741 | 0x00000000, | ||
20742 | 0x00000000, | ||
20743 | 0x00000000, | ||
20744 | 0x00000000, | ||
20745 | 0x00000000, | ||
20746 | 0x00000000, | ||
20747 | 0x00000000, | ||
20748 | 0x00000000, | ||
20749 | 0x00000000, | ||
20750 | 0x00000000, | ||
20751 | 0x00000000, | ||
20752 | 0x00000000, | ||
20753 | 0x00000000, | ||
20754 | 0x00000000, | ||
20755 | 0x00000000, | ||
20756 | 0x00000000, | ||
20757 | 0x00000000, | ||
20758 | 0x00000000, | ||
20759 | 0x00000000, | ||
20760 | 0x00000000, | ||
20761 | 0x00000000, | ||
20762 | 0x00000000, | ||
20763 | 0x00000000, | ||
20764 | 0x00000000, | ||
20765 | 0x00000000, | ||
20766 | 0x00000000, | ||
20767 | 0x00000000, | ||
20768 | 0x00000000, | ||
20769 | 0x00000000, | ||
20770 | 0x00000000, | ||
20771 | 0x00000000, | ||
20772 | 0x00000000, | ||
20773 | 0x00000000, | ||
20774 | 0x00000000, | ||
20775 | 0x00000000, | ||
20776 | 0x00000000, | ||
20777 | 0x00000000, | ||
20778 | 0x00000000, | ||
20779 | 0x00000000, | ||
20780 | 0x00000000, | ||
20781 | 0x00000000, | ||
20782 | 0x00000000, | ||
20783 | 0x00000000, | ||
20784 | 0x00000000, | ||
20785 | 0x00000000, | ||
20786 | 0x00000000, | ||
20787 | 0x00000000, | ||
20788 | 0x00000000, | ||
20789 | 0x00000000, | ||
20790 | 0x00000000, | ||
20791 | 0x00000000, | ||
20792 | 0x00000000, | ||
20793 | 0x00000000, | ||
20794 | 0x00000000, | ||
20795 | 0x00000000, | ||
20796 | 0x00000000, | ||
20797 | 0x00000000, | ||
20798 | 0x00000000, | ||
20799 | 0x00000000, | ||
20800 | 0x00000000, | ||
20801 | 0x00000000, | ||
20802 | 0x00000000, | ||
20803 | 0x00000000, | ||
20804 | 0x00000000, | ||
20805 | 0x00000000, | ||
20806 | 0x00000000, | ||
20807 | 0x00000000, | ||
20808 | 0x00000000, | ||
20809 | 0x00000000, | ||
20810 | 0x00000000, | ||
20811 | 0x00000000, | ||
20812 | 0x00000000, | ||
20813 | 0x00000000, | ||
20814 | 0x00000000, | ||
20815 | 0x00000000, | ||
20816 | 0x00000000, | ||
20817 | 0x00000000, | ||
20818 | 0x00000000, | ||
20819 | 0x00000000, | ||
20820 | 0x00000000, | ||
20821 | 0x00000000, | ||
20822 | 0x00000000, | ||
20823 | 0x00000000, | ||
20824 | 0x00000000, | ||
20825 | 0x00000000, | ||
20826 | 0x00000000, | ||
20827 | 0x00000000, | ||
20828 | 0x00000000, | ||
20829 | 0x00000000, | ||
20830 | 0x00000000, | ||
20831 | 0x00000000, | ||
20832 | 0x00000000, | ||
20833 | 0x00000000, | ||
20834 | 0x00000000, | ||
20835 | 0x00000000, | ||
20836 | 0x00000000, | ||
20837 | 0x00000000, | ||
20838 | 0x00000000, | ||
20839 | 0x00000000, | ||
20840 | 0x00000000, | ||
20841 | 0x00000000, | ||
20842 | 0x00000000, | ||
20843 | 0x00000000, | ||
20844 | 0x00000000, | ||
20845 | 0x00000000, | ||
20846 | 0x00000000, | ||
20847 | 0x00000000, | ||
20848 | 0x00000000, | ||
20849 | 0x00000000, | ||
20850 | 0x00000000, | ||
20851 | 0x00000000, | ||
20852 | 0x00000000, | ||
20853 | 0x00000000, | ||
20854 | 0x00000000, | ||
20855 | 0x00000000, | ||
20856 | 0x00000000, | ||
20857 | 0x00000000, | ||
20858 | 0x00000000, | ||
20859 | 0x00000000, | ||
20860 | 0x00000000, | ||
20861 | 0x00000000, | ||
20862 | 0x00000000, | ||
20863 | 0x00000000, | ||
20864 | 0x00000000, | ||
20865 | 0x00000000, | ||
20866 | 0x00000000, | ||
20867 | 0x00000000, | ||
20868 | 0x00000000, | ||
20869 | 0x00000000, | ||
20870 | 0x00000000, | ||
20871 | 0x00000000, | ||
20872 | 0x00000000, | ||
20873 | 0x00000000, | ||
20874 | 0x00000000, | ||
20875 | 0x00000000, | ||
20876 | 0x00000000, | ||
20877 | 0x00000000, | ||
20878 | 0x00000000, | ||
20879 | 0x00000000, | ||
20880 | 0x00000000, | ||
20881 | 0x00000000, | ||
20882 | 0x00000000, | ||
20883 | 0x00000000, | ||
20884 | 0x00000000, | ||
20885 | 0x00000000, | ||
20886 | 0x00000000, | ||
20887 | 0x00000000, | ||
20888 | 0x00000000, | ||
20889 | 0x00000000, | ||
20890 | 0x00000000, | ||
20891 | 0x00000000, | ||
20892 | 0x00000000, | ||
20893 | 0x00000000, | ||
20894 | 0x00000000, | ||
20895 | 0x00000000, | ||
20896 | 0x00000000, | ||
20897 | 0x00000000, | ||
20898 | 0x00000000, | ||
20899 | 0x00000000, | ||
20900 | 0x00000000, | ||
20901 | 0x00000000, | ||
20902 | 0x00000000, | ||
20903 | 0x00000000, | ||
20904 | 0x00000000, | ||
20905 | 0x00000000, | ||
20906 | 0x00000000, | ||
20907 | 0x00000000, | ||
20908 | 0x00000000, | ||
20909 | 0x00000000, | ||
20910 | 0x00000000, | ||
20911 | 0x00000000, | ||
20912 | 0x00000000, | ||
20913 | 0x00000000, | ||
20914 | 0x00000000, | ||
20915 | 0x00000000, | ||
20916 | 0x00000000, | ||
20917 | 0x00000000, | ||
20918 | 0x00000000, | ||
20919 | 0x00000000, | ||
20920 | 0x00000000, | ||
20921 | 0x00000000, | ||
20922 | 0x00000000, | ||
20923 | 0x00000000, | ||
20924 | 0x00000000, | ||
20925 | 0x00000000, | ||
20926 | 0x00000000, | ||
20927 | 0x00000000, | ||
20928 | 0x00000000, | ||
20929 | 0x00000000, | ||
20930 | 0x00000000, | ||
20931 | 0x00000000, | ||
20932 | 0x00000000, | ||
20933 | 0x00000000, | ||
20934 | 0x00000000, | ||
20935 | 0x00000000, | ||
20936 | 0x00000000, | ||
20937 | 0x00000000, | ||
20938 | 0x00000000, | ||
20939 | 0x00000000, | ||
20940 | 0x00000000, | ||
20941 | 0x00000000, | ||
20942 | 0x00000000, | ||
20943 | 0x00000000, | ||
20944 | 0x00000000, | ||
20945 | 0x00000000, | ||
20946 | 0x00000000, | ||
20947 | 0x00000000, | ||
20948 | 0x00000000, | ||
20949 | 0x00000000, | ||
20950 | 0x00000000, | ||
20951 | 0x00000000, | ||
20952 | 0x00000000, | ||
20953 | 0x00000000, | ||
20954 | 0x00000000, | ||
20955 | 0x00000000, | ||
20956 | 0x00000000, | ||
20957 | 0x00000000, | ||
20958 | 0x00000000, | ||
20959 | 0x00000000, | ||
20960 | 0x00000000, | ||
20961 | 0x00000000, | ||
20962 | 0x00000000, | ||
20963 | 0x00000000, | ||
20964 | 0x00000000, | ||
20965 | 0x00000000, | ||
20966 | 0x00000000, | ||
20967 | 0x00000000, | ||
20968 | 0x00000000, | ||
20969 | 0x00000000, | ||
20970 | 0x00000000, | ||
20971 | 0x00000000, | ||
20972 | 0x00000000, | ||
20973 | 0x00000000, | ||
20974 | 0x00000000, | ||
20975 | 0x00000000, | ||
20976 | 0x00000000, | ||
20977 | 0x00000000, | ||
20978 | 0x00000000, | ||
20979 | 0x00000000, | ||
20980 | 0x00000000, | ||
20981 | 0x00000000, | ||
20982 | 0x00000000, | ||
20983 | 0x00000000, | ||
20984 | 0x00000000, | ||
20985 | 0x00000000, | ||
20986 | 0x00000000, | ||
20987 | 0x00000000, | ||
20988 | 0x00000000, | ||
20989 | 0x00000000, | ||
20990 | 0x00000000, | ||
20991 | 0x00000000, | ||
20992 | 0x00000000, | ||
20993 | 0x00000000, | ||
20994 | 0x00000000, | ||
20995 | 0x00000000, | ||
20996 | 0x00000000, | ||
20997 | 0x00000000, | ||
20998 | 0x00000000, | ||
20999 | 0x00000000, | ||
21000 | 0x00000000, | ||
21001 | 0x00010331, | ||
21002 | 0x00100004, | ||
21003 | 0x00170006, | ||
21004 | 0x00210008, | ||
21005 | 0x00270028, | ||
21006 | 0x00280023, | ||
21007 | 0x00290029, | ||
21008 | 0x002a0026, | ||
21009 | 0x002b0029, | ||
21010 | 0x002d0038, | ||
21011 | 0x002e003f, | ||
21012 | 0x002f004a, | ||
21013 | 0x0034004c, | ||
21014 | 0x00360030, | ||
21015 | 0x003900af, | ||
21016 | 0x003a00cf, | ||
21017 | 0x003b00e4, | ||
21018 | 0x003c00fc, | ||
21019 | 0x003d016b, | ||
21020 | 0x003f00ad, | ||
21021 | 0x00410336, | ||
21022 | 0x00430349, | ||
21023 | 0x0044018e, | ||
21024 | 0x004500fc, | ||
21025 | 0x004601ac, | ||
21026 | 0x004701ac, | ||
21027 | 0x004801fe, | ||
21028 | 0x0049020c, | ||
21029 | 0x004a0255, | ||
21030 | 0x004b0282, | ||
21031 | 0x0052025f, | ||
21032 | 0x00530271, | ||
21033 | 0x00540287, | ||
21034 | 0x00570299, | ||
21035 | 0x0060029d, | ||
21036 | 0x006102ac, | ||
21037 | 0x006202b6, | ||
21038 | 0x006302c0, | ||
21039 | 0x006402ca, | ||
21040 | 0x006502d4, | ||
21041 | 0x006602de, | ||
21042 | 0x006702e8, | ||
21043 | 0x006802f2, | ||
21044 | 0x006902f6, | ||
21045 | 0x006a02fa, | ||
21046 | 0x006b02fe, | ||
21047 | 0x006c0302, | ||
21048 | 0x006d0306, | ||
21049 | 0x006e030a, | ||
21050 | 0x006f030e, | ||
21051 | 0x00700312, | ||
21052 | 0x00720363, | ||
21053 | 0x00740369, | ||
21054 | 0x00790367, | ||
21055 | 0x007c031c, | ||
21056 | 0x000f0378, | ||
21057 | 0x000f0378, | ||
21058 | 0x000f0378, | ||
21059 | 0x000f0378, | ||
21060 | 0x000f0378, | ||
21061 | 0x000f0378, | ||
21062 | 0x000f0378, | ||
21063 | 0x000f0378, | ||
21064 | 0x000f0378, | ||
21065 | 0x000f0378, | ||
21066 | 0x000f0378, | ||
21067 | 0x000f0378, | ||
21068 | 0x000f0378, | ||
21069 | 0x000f0378, | ||
21070 | 0x000f0378, | ||
21071 | 0x000f0378, | ||
21072 | 0x000f0378, | ||
21073 | 0x000f0378, | ||
21074 | 0x000f0378, | ||
21075 | 0x000f0378, | ||
21076 | 0x000f0378, | ||
21077 | 0x000f0378, | ||
21078 | 0x000f0378, | ||
21079 | 0x000f0378, | ||
21080 | 0x000f0378, | ||
21081 | }; | ||
21082 | |||
21083 | static const u32 RV710_pfp_microcode[] = { | ||
21084 | 0x7c408000, | ||
21085 | 0xa0000000, | ||
21086 | 0x7e82800b, | ||
21087 | 0x80000000, | ||
21088 | 0xdc030000, | ||
21089 | 0xcc800040, | ||
21090 | 0xd0400040, | ||
21091 | 0x7c408000, | ||
21092 | 0xa0000000, | ||
21093 | 0x7e82800b, | ||
21094 | 0xc818000e, | ||
21095 | 0x31980001, | ||
21096 | 0x7c424000, | ||
21097 | 0x9580023a, | ||
21098 | 0x7c428000, | ||
21099 | 0xc81c001c, | ||
21100 | 0xc037c000, | ||
21101 | 0x7c40c000, | ||
21102 | 0x7c410000, | ||
21103 | 0x7cb4800b, | ||
21104 | 0xc0360003, | ||
21105 | 0x99c00000, | ||
21106 | 0xc81c001c, | ||
21107 | 0x7cb4800c, | ||
21108 | 0x24d40002, | ||
21109 | 0x7d654000, | ||
21110 | 0xcd400043, | ||
21111 | 0xce800043, | ||
21112 | 0xcd000043, | ||
21113 | 0xcc800040, | ||
21114 | 0xce400040, | ||
21115 | 0xce800040, | ||
21116 | 0xccc00040, | ||
21117 | 0xdc3a0000, | ||
21118 | 0x9780ffde, | ||
21119 | 0xcd000040, | ||
21120 | 0x7c40c000, | ||
21121 | 0x80000018, | ||
21122 | 0x7c410000, | ||
21123 | 0xd4000340, | ||
21124 | 0xd4000fc0, | ||
21125 | 0xd4000fa2, | ||
21126 | 0xc818000e, | ||
21127 | 0x8000000c, | ||
21128 | 0x31980002, | ||
21129 | 0xd40003c0, | ||
21130 | 0xd4000fc0, | ||
21131 | 0xd4000fa2, | ||
21132 | 0xc818000e, | ||
21133 | 0x288c0008, | ||
21134 | 0x30cc000f, | ||
21135 | 0x34100001, | ||
21136 | 0x7d0d0008, | ||
21137 | 0x8000000c, | ||
21138 | 0x7d91800b, | ||
21139 | 0xcc800040, | ||
21140 | 0xd0400040, | ||
21141 | 0x7c408000, | ||
21142 | 0xa0000000, | ||
21143 | 0x7e82800b, | ||
21144 | 0xd4000340, | ||
21145 | 0xd4000fc0, | ||
21146 | 0xd4000fa2, | ||
21147 | 0xcc800040, | ||
21148 | 0xd0400040, | ||
21149 | 0x7c408000, | ||
21150 | 0xa0000000, | ||
21151 | 0x7e82800b, | ||
21152 | 0xd40003c0, | ||
21153 | 0xd4000fc0, | ||
21154 | 0xd4000fa2, | ||
21155 | 0xcc800040, | ||
21156 | 0xd0400040, | ||
21157 | 0x7c408000, | ||
21158 | 0xa0000000, | ||
21159 | 0x7e82800b, | ||
21160 | 0xcc4003f9, | ||
21161 | 0x80000249, | ||
21162 | 0xcc4003f8, | ||
21163 | 0xc037ffff, | ||
21164 | 0x7c414000, | ||
21165 | 0xcf41a29e, | ||
21166 | 0xc82003f8, | ||
21167 | 0xc81c03f9, | ||
21168 | 0x66200020, | ||
21169 | 0xc81803fb, | ||
21170 | 0x7de1c02c, | ||
21171 | 0x7d58c008, | ||
21172 | 0x7cdcc020, | ||
21173 | 0x69100020, | ||
21174 | 0xc0360003, | ||
21175 | 0xcc000054, | ||
21176 | 0x7cb4800c, | ||
21177 | 0x80000069, | ||
21178 | 0xcc800040, | ||
21179 | 0x7c418000, | ||
21180 | 0xcd81a29e, | ||
21181 | 0xcc800040, | ||
21182 | 0x80000067, | ||
21183 | 0xcd800040, | ||
21184 | 0xc019ffff, | ||
21185 | 0xcc800040, | ||
21186 | 0xcd81a29e, | ||
21187 | 0x7c40c000, | ||
21188 | 0x7c410000, | ||
21189 | 0x7c414000, | ||
21190 | 0xccc1a1fa, | ||
21191 | 0xcd01a1f9, | ||
21192 | 0xcd41a29d, | ||
21193 | 0xccc00040, | ||
21194 | 0xcd000040, | ||
21195 | 0xcd400040, | ||
21196 | 0xcc400040, | ||
21197 | 0x7c408000, | ||
21198 | 0xa0000000, | ||
21199 | 0x7e82800b, | ||
21200 | 0xcc000054, | ||
21201 | 0xcc800040, | ||
21202 | 0x7c40c000, | ||
21203 | 0x7c410000, | ||
21204 | 0x7c414000, | ||
21205 | 0xccc1a1fa, | ||
21206 | 0xcd01a1f9, | ||
21207 | 0xcd41a29d, | ||
21208 | 0xccc00040, | ||
21209 | 0xcd000040, | ||
21210 | 0xcd400040, | ||
21211 | 0xd0400040, | ||
21212 | 0x7c408000, | ||
21213 | 0xa0000000, | ||
21214 | 0x7e82800b, | ||
21215 | 0x7c40c000, | ||
21216 | 0x30d00001, | ||
21217 | 0xccc1a29f, | ||
21218 | 0x95000003, | ||
21219 | 0x04140001, | ||
21220 | 0x04140002, | ||
21221 | 0xcd4003fb, | ||
21222 | 0xcc800040, | ||
21223 | 0x80000000, | ||
21224 | 0xccc00040, | ||
21225 | 0x7c40c000, | ||
21226 | 0xcc800040, | ||
21227 | 0xccc1a2a2, | ||
21228 | 0x80000000, | ||
21229 | 0xccc00040, | ||
21230 | 0x7c40c000, | ||
21231 | 0x28d4001f, | ||
21232 | 0xcc800040, | ||
21233 | 0x95400003, | ||
21234 | 0x7c410000, | ||
21235 | 0xccc00057, | ||
21236 | 0x2918001f, | ||
21237 | 0xccc00040, | ||
21238 | 0x95800003, | ||
21239 | 0xcd000040, | ||
21240 | 0xcd000058, | ||
21241 | 0x80000249, | ||
21242 | 0xcc00007f, | ||
21243 | 0xc8200017, | ||
21244 | 0xc8300022, | ||
21245 | 0x9a000006, | ||
21246 | 0x0e280001, | ||
21247 | 0xc824001e, | ||
21248 | 0x0a640001, | ||
21249 | 0xd4001240, | ||
21250 | 0xce400040, | ||
21251 | 0xc036c000, | ||
21252 | 0x96800007, | ||
21253 | 0x37747900, | ||
21254 | 0x041c0001, | ||
21255 | 0xcf400040, | ||
21256 | 0xcdc00040, | ||
21257 | 0xcf0003fa, | ||
21258 | 0x7c030000, | ||
21259 | 0xca0c0010, | ||
21260 | 0x7c410000, | ||
21261 | 0x94c00004, | ||
21262 | 0x7c414000, | ||
21263 | 0xd42002c4, | ||
21264 | 0xcde00044, | ||
21265 | 0x9b00000b, | ||
21266 | 0x7c418000, | ||
21267 | 0xcc00004b, | ||
21268 | 0xcda00049, | ||
21269 | 0xcd200041, | ||
21270 | 0xcd600041, | ||
21271 | 0xcda00041, | ||
21272 | 0x06200001, | ||
21273 | 0xce000056, | ||
21274 | 0x80000249, | ||
21275 | 0xcc00007f, | ||
21276 | 0xc8280020, | ||
21277 | 0xc82c0021, | ||
21278 | 0xcc000063, | ||
21279 | 0x7eea4001, | ||
21280 | 0x65740020, | ||
21281 | 0x7f53402c, | ||
21282 | 0x269c0002, | ||
21283 | 0x7df5c020, | ||
21284 | 0x69f80020, | ||
21285 | 0xce80004b, | ||
21286 | 0xce600049, | ||
21287 | 0xcde00041, | ||
21288 | 0xcfa00041, | ||
21289 | 0xce600041, | ||
21290 | 0x271c0002, | ||
21291 | 0x7df5c020, | ||
21292 | 0x69f80020, | ||
21293 | 0x7db24001, | ||
21294 | 0xcf00004b, | ||
21295 | 0xce600049, | ||
21296 | 0xcde00041, | ||
21297 | 0xcfa00041, | ||
21298 | 0x800000bc, | ||
21299 | 0xce600041, | ||
21300 | 0xc8200017, | ||
21301 | 0xc8300022, | ||
21302 | 0x9a000006, | ||
21303 | 0x0e280001, | ||
21304 | 0xc824001e, | ||
21305 | 0x0a640001, | ||
21306 | 0xd4001240, | ||
21307 | 0xce400040, | ||
21308 | 0xca0c0010, | ||
21309 | 0x7c410000, | ||
21310 | 0x94c0000b, | ||
21311 | 0xc036c000, | ||
21312 | 0x96800007, | ||
21313 | 0x37747900, | ||
21314 | 0x041c0001, | ||
21315 | 0xcf400040, | ||
21316 | 0xcdc00040, | ||
21317 | 0xcf0003fa, | ||
21318 | 0x7c030000, | ||
21319 | 0x800000b5, | ||
21320 | 0x7c414000, | ||
21321 | 0xcc000048, | ||
21322 | 0x800000ee, | ||
21323 | 0x00000000, | ||
21324 | 0xc8200017, | ||
21325 | 0xc81c0023, | ||
21326 | 0x0e240002, | ||
21327 | 0x99c00015, | ||
21328 | 0x7c418000, | ||
21329 | 0x0a200001, | ||
21330 | 0xce000056, | ||
21331 | 0xd4000440, | ||
21332 | 0xcc000040, | ||
21333 | 0xc036c000, | ||
21334 | 0xca140013, | ||
21335 | 0x96400007, | ||
21336 | 0x37747900, | ||
21337 | 0xcf400040, | ||
21338 | 0xcc000040, | ||
21339 | 0xc83003fa, | ||
21340 | 0x80000103, | ||
21341 | 0xcf000022, | ||
21342 | 0xcc000022, | ||
21343 | 0x95400146, | ||
21344 | 0xcc00007f, | ||
21345 | 0xcca00046, | ||
21346 | 0x80000000, | ||
21347 | 0xcc200046, | ||
21348 | 0x80000249, | ||
21349 | 0xcc000064, | ||
21350 | 0xc8200017, | ||
21351 | 0xc810001f, | ||
21352 | 0x96000005, | ||
21353 | 0x09100001, | ||
21354 | 0xd4000440, | ||
21355 | 0xcd000040, | ||
21356 | 0xcd000022, | ||
21357 | 0xcc800040, | ||
21358 | 0xd0400040, | ||
21359 | 0xc80c0025, | ||
21360 | 0x94c0feec, | ||
21361 | 0xc8100008, | ||
21362 | 0xcd000040, | ||
21363 | 0xd4000fc0, | ||
21364 | 0x80000000, | ||
21365 | 0xd4000fa2, | ||
21366 | 0x7c40c000, | ||
21367 | 0x7c410000, | ||
21368 | 0xccc003fd, | ||
21369 | 0xcd0003fc, | ||
21370 | 0xccc00042, | ||
21371 | 0xcd000042, | ||
21372 | 0x2914001f, | ||
21373 | 0x29180010, | ||
21374 | 0x31980007, | ||
21375 | 0x3b5c0001, | ||
21376 | 0x7d76000b, | ||
21377 | 0x99800005, | ||
21378 | 0x7d5e400b, | ||
21379 | 0xcc000042, | ||
21380 | 0x80000249, | ||
21381 | 0xcc00004d, | ||
21382 | 0x29980001, | ||
21383 | 0x292c0008, | ||
21384 | 0x9980003d, | ||
21385 | 0x32ec0001, | ||
21386 | 0x96000004, | ||
21387 | 0x2930000c, | ||
21388 | 0x80000249, | ||
21389 | 0xcc000042, | ||
21390 | 0x04140010, | ||
21391 | 0xcd400042, | ||
21392 | 0x33300001, | ||
21393 | 0x34280001, | ||
21394 | 0x8400015d, | ||
21395 | 0xc8140003, | ||
21396 | 0x9b40001b, | ||
21397 | 0x0438000c, | ||
21398 | 0x8400015d, | ||
21399 | 0xc8140003, | ||
21400 | 0x9b400017, | ||
21401 | 0x04380008, | ||
21402 | 0x8400015d, | ||
21403 | 0xc8140003, | ||
21404 | 0x9b400013, | ||
21405 | 0x04380004, | ||
21406 | 0x8400015d, | ||
21407 | 0xc8140003, | ||
21408 | 0x9b400015, | ||
21409 | 0xc80c03fd, | ||
21410 | 0x9a800009, | ||
21411 | 0xc81003fc, | ||
21412 | 0x9b000101, | ||
21413 | 0xcc00004d, | ||
21414 | 0x04140010, | ||
21415 | 0xccc00042, | ||
21416 | 0xcd000042, | ||
21417 | 0x80000135, | ||
21418 | 0xcd400042, | ||
21419 | 0x96c000fa, | ||
21420 | 0xcc00004d, | ||
21421 | 0x80000249, | ||
21422 | 0xcc00004e, | ||
21423 | 0x9ac00003, | ||
21424 | 0xcc00004d, | ||
21425 | 0xcc00004e, | ||
21426 | 0xdf830000, | ||
21427 | 0x80000000, | ||
21428 | 0xd80301ff, | ||
21429 | 0x9ac000f0, | ||
21430 | 0xcc00004d, | ||
21431 | 0x80000249, | ||
21432 | 0xcc00004e, | ||
21433 | 0xc8180003, | ||
21434 | 0xc81c0003, | ||
21435 | 0xc8200003, | ||
21436 | 0x7d5d4003, | ||
21437 | 0x7da1c003, | ||
21438 | 0x7d5d400c, | ||
21439 | 0x2a10001f, | ||
21440 | 0x299c001f, | ||
21441 | 0x7d1d000b, | ||
21442 | 0x7d17400b, | ||
21443 | 0x88000000, | ||
21444 | 0x7e92800b, | ||
21445 | 0x96400004, | ||
21446 | 0xcc00004e, | ||
21447 | 0x80000249, | ||
21448 | 0xcc000042, | ||
21449 | 0x04380008, | ||
21450 | 0xcf800042, | ||
21451 | 0xc8080003, | ||
21452 | 0xc80c0003, | ||
21453 | 0xc8100003, | ||
21454 | 0xc8140003, | ||
21455 | 0xc8180003, | ||
21456 | 0xc81c0003, | ||
21457 | 0xc8240003, | ||
21458 | 0xc8280003, | ||
21459 | 0x29fc001f, | ||
21460 | 0x2ab0001f, | ||
21461 | 0x7ff3c00b, | ||
21462 | 0x28f0001f, | ||
21463 | 0x7ff3c00b, | ||
21464 | 0x2970001f, | ||
21465 | 0x7ff3c00b, | ||
21466 | 0x7d888001, | ||
21467 | 0x7dccc001, | ||
21468 | 0x7e510001, | ||
21469 | 0x7e954001, | ||
21470 | 0x7c908002, | ||
21471 | 0x7cd4c002, | ||
21472 | 0x7cbc800b, | ||
21473 | 0x9ac00003, | ||
21474 | 0x7c8f400b, | ||
21475 | 0x38b40001, | ||
21476 | 0x9b4000c1, | ||
21477 | 0xcc00004d, | ||
21478 | 0x9bc000bf, | ||
21479 | 0xcc00004e, | ||
21480 | 0xc80c03fd, | ||
21481 | 0xc81003fc, | ||
21482 | 0xccc00042, | ||
21483 | 0x8000016e, | ||
21484 | 0xcd000042, | ||
21485 | 0xd4000340, | ||
21486 | 0xd4000fc0, | ||
21487 | 0xd4000fa2, | ||
21488 | 0xcc800040, | ||
21489 | 0xcc400040, | ||
21490 | 0xcc400040, | ||
21491 | 0xcc400040, | ||
21492 | 0x7c40c000, | ||
21493 | 0xccc00040, | ||
21494 | 0xccc0000d, | ||
21495 | 0x80000000, | ||
21496 | 0xd0400040, | ||
21497 | 0x7c40c000, | ||
21498 | 0x7c410000, | ||
21499 | 0x65140020, | ||
21500 | 0x7d4d402c, | ||
21501 | 0x24580002, | ||
21502 | 0x7d598020, | ||
21503 | 0x7c41c000, | ||
21504 | 0xcd800042, | ||
21505 | 0x69980020, | ||
21506 | 0xcd800042, | ||
21507 | 0xcdc00042, | ||
21508 | 0xc023c000, | ||
21509 | 0x05e40002, | ||
21510 | 0x7ca0800b, | ||
21511 | 0x26640010, | ||
21512 | 0x7ca4800c, | ||
21513 | 0xcc800040, | ||
21514 | 0xcdc00040, | ||
21515 | 0xccc00040, | ||
21516 | 0x95c0000e, | ||
21517 | 0xcd000040, | ||
21518 | 0x09dc0001, | ||
21519 | 0xc8280003, | ||
21520 | 0x96800008, | ||
21521 | 0xce800040, | ||
21522 | 0xc834001d, | ||
21523 | 0x97400000, | ||
21524 | 0xc834001d, | ||
21525 | 0x26a80008, | ||
21526 | 0x8400024c, | ||
21527 | 0xcc2b0000, | ||
21528 | 0x99c0fff7, | ||
21529 | 0x09dc0001, | ||
21530 | 0xdc3a0000, | ||
21531 | 0x97800004, | ||
21532 | 0x7c418000, | ||
21533 | 0x800001a2, | ||
21534 | 0x25980002, | ||
21535 | 0xa0000000, | ||
21536 | 0x7d808000, | ||
21537 | 0xc818001d, | ||
21538 | 0x7c40c000, | ||
21539 | 0x64d00008, | ||
21540 | 0x95800000, | ||
21541 | 0xc818001d, | ||
21542 | 0xcc130000, | ||
21543 | 0xcc800040, | ||
21544 | 0xccc00040, | ||
21545 | 0x80000000, | ||
21546 | 0xcc400040, | ||
21547 | 0xc810001f, | ||
21548 | 0x7c40c000, | ||
21549 | 0xcc800040, | ||
21550 | 0x7cd1400c, | ||
21551 | 0xcd400040, | ||
21552 | 0x05180001, | ||
21553 | 0x80000000, | ||
21554 | 0xcd800022, | ||
21555 | 0x7c40c000, | ||
21556 | 0x64500020, | ||
21557 | 0x8400024c, | ||
21558 | 0xcc000061, | ||
21559 | 0x7cd0c02c, | ||
21560 | 0xc8200017, | ||
21561 | 0xc8d60000, | ||
21562 | 0x99400008, | ||
21563 | 0x7c438000, | ||
21564 | 0xdf830000, | ||
21565 | 0xcfa0004f, | ||
21566 | 0x8400024c, | ||
21567 | 0xcc000062, | ||
21568 | 0x80000000, | ||
21569 | 0xd040007f, | ||
21570 | 0x80000249, | ||
21571 | 0xcc000062, | ||
21572 | 0x8400024c, | ||
21573 | 0xcc000061, | ||
21574 | 0xc8200017, | ||
21575 | 0x7c40c000, | ||
21576 | 0xc036ff00, | ||
21577 | 0xc810000d, | ||
21578 | 0xc0303fff, | ||
21579 | 0x7cf5400b, | ||
21580 | 0x7d51800b, | ||
21581 | 0x7d81800f, | ||
21582 | 0x99800008, | ||
21583 | 0x7cf3800b, | ||
21584 | 0xdf830000, | ||
21585 | 0xcfa0004f, | ||
21586 | 0x8400024c, | ||
21587 | 0xcc000062, | ||
21588 | 0x80000000, | ||
21589 | 0xd040007f, | ||
21590 | 0x80000249, | ||
21591 | 0xcc000062, | ||
21592 | 0x8400024c, | ||
21593 | 0x7c40c000, | ||
21594 | 0x28dc0008, | ||
21595 | 0x95c00019, | ||
21596 | 0x30dc0010, | ||
21597 | 0x7c410000, | ||
21598 | 0x99c00004, | ||
21599 | 0x64540020, | ||
21600 | 0x80000208, | ||
21601 | 0xc91d0000, | ||
21602 | 0x7d15002c, | ||
21603 | 0xc91e0000, | ||
21604 | 0x7c420000, | ||
21605 | 0x7c424000, | ||
21606 | 0x7c418000, | ||
21607 | 0x7de5c00b, | ||
21608 | 0x7de28007, | ||
21609 | 0x9a80000e, | ||
21610 | 0x41ac0005, | ||
21611 | 0x9ac00000, | ||
21612 | 0x0aec0001, | ||
21613 | 0x30dc0010, | ||
21614 | 0x99c00004, | ||
21615 | 0x00000000, | ||
21616 | 0x8000020b, | ||
21617 | 0xc91d0000, | ||
21618 | 0x8000020b, | ||
21619 | 0xc91e0000, | ||
21620 | 0xcc800040, | ||
21621 | 0xccc00040, | ||
21622 | 0xd0400040, | ||
21623 | 0xc80c0025, | ||
21624 | 0x94c0fde4, | ||
21625 | 0xc8100008, | ||
21626 | 0xcd000040, | ||
21627 | 0xd4000fc0, | ||
21628 | 0x80000000, | ||
21629 | 0xd4000fa2, | ||
21630 | 0xd4000340, | ||
21631 | 0xd4000fc0, | ||
21632 | 0xd4000fa2, | ||
21633 | 0xcc800040, | ||
21634 | 0xd0400040, | ||
21635 | 0x7c408000, | ||
21636 | 0xa0000000, | ||
21637 | 0x7e82800b, | ||
21638 | 0xd40003c0, | ||
21639 | 0xd4000fc0, | ||
21640 | 0xd4000fa2, | ||
21641 | 0xcc800040, | ||
21642 | 0xd0400040, | ||
21643 | 0x7c408000, | ||
21644 | 0xa0000000, | ||
21645 | 0x7e82800b, | ||
21646 | 0x7c40c000, | ||
21647 | 0x30d00006, | ||
21648 | 0x0d100006, | ||
21649 | 0x99000007, | ||
21650 | 0xc8140015, | ||
21651 | 0x99400005, | ||
21652 | 0xcc000052, | ||
21653 | 0xd4000340, | ||
21654 | 0xd4000fc0, | ||
21655 | 0xd4000fa2, | ||
21656 | 0xcc800040, | ||
21657 | 0xccc00040, | ||
21658 | 0x80000000, | ||
21659 | 0xd0400040, | ||
21660 | 0x7c40c000, | ||
21661 | 0xcc4d0000, | ||
21662 | 0xdc3a0000, | ||
21663 | 0x9780fdbd, | ||
21664 | 0x04cc0001, | ||
21665 | 0x80000242, | ||
21666 | 0xcc4d0000, | ||
21667 | 0x80000000, | ||
21668 | 0xd040007f, | ||
21669 | 0xcc00007f, | ||
21670 | 0x80000000, | ||
21671 | 0xcc00007f, | ||
21672 | 0xcc00007f, | ||
21673 | 0x88000000, | ||
21674 | 0xcc00007f, | ||
21675 | 0x00000000, | ||
21676 | 0x00000000, | ||
21677 | 0x00000000, | ||
21678 | 0x00000000, | ||
21679 | 0x00000000, | ||
21680 | 0x00000000, | ||
21681 | 0x00000000, | ||
21682 | 0x00000000, | ||
21683 | 0x00000000, | ||
21684 | 0x00000000, | ||
21685 | 0x00000000, | ||
21686 | 0x00000000, | ||
21687 | 0x00000000, | ||
21688 | 0x00000000, | ||
21689 | 0x00000000, | ||
21690 | 0x00000000, | ||
21691 | 0x00000000, | ||
21692 | 0x00000000, | ||
21693 | 0x00000000, | ||
21694 | 0x00000000, | ||
21695 | 0x00000000, | ||
21696 | 0x00000000, | ||
21697 | 0x00000000, | ||
21698 | 0x00000000, | ||
21699 | 0x00000000, | ||
21700 | 0x00000000, | ||
21701 | 0x00000000, | ||
21702 | 0x00000000, | ||
21703 | 0x00000000, | ||
21704 | 0x00000000, | ||
21705 | 0x00000000, | ||
21706 | 0x00000000, | ||
21707 | 0x00000000, | ||
21708 | 0x00000000, | ||
21709 | 0x00000000, | ||
21710 | 0x00000000, | ||
21711 | 0x00000000, | ||
21712 | 0x00000000, | ||
21713 | 0x00000000, | ||
21714 | 0x00000000, | ||
21715 | 0x00000000, | ||
21716 | 0x00000000, | ||
21717 | 0x00000000, | ||
21718 | 0x00000000, | ||
21719 | 0x00000000, | ||
21720 | 0x00000000, | ||
21721 | 0x00000000, | ||
21722 | 0x00000000, | ||
21723 | 0x00000000, | ||
21724 | 0x00000000, | ||
21725 | 0x00000000, | ||
21726 | 0x00000000, | ||
21727 | 0x00000000, | ||
21728 | 0x00000000, | ||
21729 | 0x00000000, | ||
21730 | 0x00000000, | ||
21731 | 0x00000000, | ||
21732 | 0x00000000, | ||
21733 | 0x00000000, | ||
21734 | 0x00000000, | ||
21735 | 0x00000000, | ||
21736 | 0x00000000, | ||
21737 | 0x00000000, | ||
21738 | 0x00000000, | ||
21739 | 0x00000000, | ||
21740 | 0x00000000, | ||
21741 | 0x00000000, | ||
21742 | 0x00000000, | ||
21743 | 0x00000000, | ||
21744 | 0x00000000, | ||
21745 | 0x00000000, | ||
21746 | 0x00000000, | ||
21747 | 0x00000000, | ||
21748 | 0x00000000, | ||
21749 | 0x00000000, | ||
21750 | 0x00000000, | ||
21751 | 0x00000000, | ||
21752 | 0x00000000, | ||
21753 | 0x00000000, | ||
21754 | 0x00000000, | ||
21755 | 0x00000000, | ||
21756 | 0x00000000, | ||
21757 | 0x00000000, | ||
21758 | 0x00000000, | ||
21759 | 0x00000000, | ||
21760 | 0x00000000, | ||
21761 | 0x00000000, | ||
21762 | 0x00000000, | ||
21763 | 0x00000000, | ||
21764 | 0x00000000, | ||
21765 | 0x00000000, | ||
21766 | 0x00000000, | ||
21767 | 0x00000000, | ||
21768 | 0x00000000, | ||
21769 | 0x00000000, | ||
21770 | 0x00000000, | ||
21771 | 0x00000000, | ||
21772 | 0x00000000, | ||
21773 | 0x00000000, | ||
21774 | 0x00000000, | ||
21775 | 0x00000000, | ||
21776 | 0x00000000, | ||
21777 | 0x00000000, | ||
21778 | 0x00000000, | ||
21779 | 0x00000000, | ||
21780 | 0x00000000, | ||
21781 | 0x00000000, | ||
21782 | 0x00000000, | ||
21783 | 0x00000000, | ||
21784 | 0x00000000, | ||
21785 | 0x00000000, | ||
21786 | 0x00000000, | ||
21787 | 0x00000000, | ||
21788 | 0x00000000, | ||
21789 | 0x00000000, | ||
21790 | 0x00000000, | ||
21791 | 0x00000000, | ||
21792 | 0x00000000, | ||
21793 | 0x00000000, | ||
21794 | 0x00000000, | ||
21795 | 0x00000000, | ||
21796 | 0x00000000, | ||
21797 | 0x00000000, | ||
21798 | 0x00000000, | ||
21799 | 0x00000000, | ||
21800 | 0x00000000, | ||
21801 | 0x00000000, | ||
21802 | 0x00000000, | ||
21803 | 0x00000000, | ||
21804 | 0x00000000, | ||
21805 | 0x00000000, | ||
21806 | 0x00000000, | ||
21807 | 0x00000000, | ||
21808 | 0x00000000, | ||
21809 | 0x00000000, | ||
21810 | 0x00000000, | ||
21811 | 0x00000000, | ||
21812 | 0x00000000, | ||
21813 | 0x00000000, | ||
21814 | 0x00000000, | ||
21815 | 0x00000000, | ||
21816 | 0x00000000, | ||
21817 | 0x00000000, | ||
21818 | 0x00000000, | ||
21819 | 0x00000000, | ||
21820 | 0x00000000, | ||
21821 | 0x00000000, | ||
21822 | 0x00000000, | ||
21823 | 0x00000000, | ||
21824 | 0x00000000, | ||
21825 | 0x00000000, | ||
21826 | 0x00000000, | ||
21827 | 0x00000000, | ||
21828 | 0x00000000, | ||
21829 | 0x00000000, | ||
21830 | 0x00000000, | ||
21831 | 0x00000000, | ||
21832 | 0x00000000, | ||
21833 | 0x00000000, | ||
21834 | 0x00000000, | ||
21835 | 0x00000000, | ||
21836 | 0x00000000, | ||
21837 | 0x00000000, | ||
21838 | 0x00000000, | ||
21839 | 0x00000000, | ||
21840 | 0x00000000, | ||
21841 | 0x00000000, | ||
21842 | 0x00000000, | ||
21843 | 0x00000000, | ||
21844 | 0x00000000, | ||
21845 | 0x00000000, | ||
21846 | 0x00000000, | ||
21847 | 0x00000000, | ||
21848 | 0x00000000, | ||
21849 | 0x00000000, | ||
21850 | 0x00000000, | ||
21851 | 0x00000000, | ||
21852 | 0x00030222, | ||
21853 | 0x0004022a, | ||
21854 | 0x0005009f, | ||
21855 | 0x00020003, | ||
21856 | 0x0006003c, | ||
21857 | 0x00070027, | ||
21858 | 0x00080191, | ||
21859 | 0x00090044, | ||
21860 | 0x000a002d, | ||
21861 | 0x00100247, | ||
21862 | 0x001700f0, | ||
21863 | 0x002201d7, | ||
21864 | 0x002301e8, | ||
21865 | 0x0026004c, | ||
21866 | 0x0027005f, | ||
21867 | 0x0020011a, | ||
21868 | 0x00280092, | ||
21869 | 0x0029004f, | ||
21870 | 0x002a0083, | ||
21871 | 0x002b0064, | ||
21872 | 0x002f008d, | ||
21873 | 0x003200d8, | ||
21874 | 0x00340232, | ||
21875 | 0x00360074, | ||
21876 | 0x0039010a, | ||
21877 | 0x003c01fc, | ||
21878 | 0x003f009f, | ||
21879 | 0x00410005, | ||
21880 | 0x00440194, | ||
21881 | 0x0048019d, | ||
21882 | 0x004901c5, | ||
21883 | 0x004a01cf, | ||
21884 | 0x00550225, | ||
21885 | 0x0056022d, | ||
21886 | 0x0060000a, | ||
21887 | 0x0061002a, | ||
21888 | 0x00620030, | ||
21889 | 0x00630030, | ||
21890 | 0x00640030, | ||
21891 | 0x00650030, | ||
21892 | 0x00660030, | ||
21893 | 0x00670030, | ||
21894 | 0x00680037, | ||
21895 | 0x0069003f, | ||
21896 | 0x006a0047, | ||
21897 | 0x006b0047, | ||
21898 | 0x006c0047, | ||
21899 | 0x006d0047, | ||
21900 | 0x006e0047, | ||
21901 | 0x006f0047, | ||
21902 | 0x00700047, | ||
21903 | 0x00730247, | ||
21904 | 0x007b0240, | ||
21905 | 0x00000005, | ||
21906 | 0x00000005, | ||
21907 | 0x00000005, | ||
21908 | 0x00000005, | ||
21909 | 0x00000005, | ||
21910 | 0x00000005, | ||
21911 | 0x00000005, | ||
21912 | 0x00000005, | ||
21913 | 0x00000005, | ||
21914 | 0x00000005, | ||
21915 | 0x00000005, | ||
21916 | 0x00000005, | ||
21917 | 0x00000005, | ||
21918 | 0x00000005, | ||
21919 | 0x00000005, | ||
21920 | 0x00000005, | ||
21921 | 0x00000005, | ||
21922 | 0x00000005, | ||
21923 | 0x00000005, | ||
21924 | 0x00000005, | ||
21925 | 0x00000005, | ||
21926 | 0x00000005, | ||
21927 | 0x00000005, | ||
21928 | 0x00000005, | ||
21929 | 0x00000005, | ||
21930 | 0x00000005, | ||
21931 | 0x00000005, | ||
21932 | }; | ||
21933 | |||
21934 | static const u32 RV710_cp_microcode[] = { | ||
21935 | 0xcc0003ea, | ||
21936 | 0x04080003, | ||
21937 | 0xcc800043, | ||
21938 | 0x7c408000, | ||
21939 | 0xa0000000, | ||
21940 | 0xcc800062, | ||
21941 | 0x80000003, | ||
21942 | 0xd040007f, | ||
21943 | 0x80000003, | ||
21944 | 0xcc400041, | ||
21945 | 0x7c40c000, | ||
21946 | 0xc0160004, | ||
21947 | 0x30d03fff, | ||
21948 | 0x7d15000c, | ||
21949 | 0xcc110000, | ||
21950 | 0x28d8001e, | ||
21951 | 0x31980001, | ||
21952 | 0x28dc001f, | ||
21953 | 0xc8200004, | ||
21954 | 0x95c00006, | ||
21955 | 0x7c424000, | ||
21956 | 0xcc000062, | ||
21957 | 0x7e56800c, | ||
21958 | 0xcc290000, | ||
21959 | 0xc8240004, | ||
21960 | 0x7e26000b, | ||
21961 | 0x95800006, | ||
21962 | 0x7c42c000, | ||
21963 | 0xcc000062, | ||
21964 | 0x7ed7000c, | ||
21965 | 0xcc310000, | ||
21966 | 0xc82c0004, | ||
21967 | 0x7e2e000c, | ||
21968 | 0xcc000062, | ||
21969 | 0x31103fff, | ||
21970 | 0x80000003, | ||
21971 | 0xce110000, | ||
21972 | 0x7c40c000, | ||
21973 | 0x80000003, | ||
21974 | 0xcc400040, | ||
21975 | 0x80000003, | ||
21976 | 0xcc412257, | ||
21977 | 0x7c418000, | ||
21978 | 0xcc400045, | ||
21979 | 0xcc400048, | ||
21980 | 0xcc41225c, | ||
21981 | 0xcc41a1fc, | ||
21982 | 0x7c408000, | ||
21983 | 0xa0000000, | ||
21984 | 0xcc800062, | ||
21985 | 0xcc400045, | ||
21986 | 0xcc400048, | ||
21987 | 0x7c40c000, | ||
21988 | 0xcc41225c, | ||
21989 | 0xcc41a1fc, | ||
21990 | 0x7c408000, | ||
21991 | 0xa0000000, | ||
21992 | 0xcc800062, | ||
21993 | 0xcc000045, | ||
21994 | 0xcc000048, | ||
21995 | 0xcc41225c, | ||
21996 | 0xcc41a1fc, | ||
21997 | 0x7c408000, | ||
21998 | 0xa0000000, | ||
21999 | 0xcc800062, | ||
22000 | 0x040ca1fd, | ||
22001 | 0xc0120001, | ||
22002 | 0xcc000045, | ||
22003 | 0xcc000048, | ||
22004 | 0x7cd0c00c, | ||
22005 | 0xcc41225c, | ||
22006 | 0xcc41a1fc, | ||
22007 | 0xd04d0000, | ||
22008 | 0x7c408000, | ||
22009 | 0xa0000000, | ||
22010 | 0xcc800062, | ||
22011 | 0x80000003, | ||
22012 | 0xcc41225d, | ||
22013 | 0x7c408000, | ||
22014 | 0x7c40c000, | ||
22015 | 0xc02a0002, | ||
22016 | 0x7c410000, | ||
22017 | 0x7d29000c, | ||
22018 | 0x30940001, | ||
22019 | 0x30980006, | ||
22020 | 0x309c0300, | ||
22021 | 0x29dc0008, | ||
22022 | 0x7c420000, | ||
22023 | 0x7c424000, | ||
22024 | 0x9540000f, | ||
22025 | 0xc02e0004, | ||
22026 | 0x05f02258, | ||
22027 | 0x7f2f000c, | ||
22028 | 0xcc310000, | ||
22029 | 0xc8280004, | ||
22030 | 0xccc12169, | ||
22031 | 0xcd01216a, | ||
22032 | 0xce81216b, | ||
22033 | 0x0db40002, | ||
22034 | 0xcc01216c, | ||
22035 | 0x9740000e, | ||
22036 | 0x0db40000, | ||
22037 | 0x8000007d, | ||
22038 | 0xc834000a, | ||
22039 | 0x0db40002, | ||
22040 | 0x97400009, | ||
22041 | 0x0db40000, | ||
22042 | 0xc02e0004, | ||
22043 | 0x05f02258, | ||
22044 | 0x7f2f000c, | ||
22045 | 0xcc310000, | ||
22046 | 0xc8280004, | ||
22047 | 0x8000007d, | ||
22048 | 0xc834000a, | ||
22049 | 0x97400004, | ||
22050 | 0x7e028000, | ||
22051 | 0x8000007d, | ||
22052 | 0xc834000a, | ||
22053 | 0x0db40004, | ||
22054 | 0x9740ff8c, | ||
22055 | 0x00000000, | ||
22056 | 0xce01216d, | ||
22057 | 0xce41216e, | ||
22058 | 0xc8280003, | ||
22059 | 0xc834000a, | ||
22060 | 0x9b400004, | ||
22061 | 0x043c0005, | ||
22062 | 0x8400026d, | ||
22063 | 0xcc000062, | ||
22064 | 0x0df40000, | ||
22065 | 0x9740000b, | ||
22066 | 0xc82c03e6, | ||
22067 | 0xce81a2b7, | ||
22068 | 0xc0300006, | ||
22069 | 0x7ef34028, | ||
22070 | 0xc0300020, | ||
22071 | 0x7f6b8020, | ||
22072 | 0x7fb3c029, | ||
22073 | 0xcf81a2c4, | ||
22074 | 0x80000003, | ||
22075 | 0xcfc1a2d1, | ||
22076 | 0x0df40001, | ||
22077 | 0x9740000b, | ||
22078 | 0xc82c03e7, | ||
22079 | 0xce81a2bb, | ||
22080 | 0xc0300006, | ||
22081 | 0x7ef34028, | ||
22082 | 0xc0300020, | ||
22083 | 0x7f6b8020, | ||
22084 | 0x7fb3c029, | ||
22085 | 0xcf81a2c5, | ||
22086 | 0x80000003, | ||
22087 | 0xcfc1a2d2, | ||
22088 | 0x0df40002, | ||
22089 | 0x9740000b, | ||
22090 | 0xc82c03e8, | ||
22091 | 0xce81a2bf, | ||
22092 | 0xc0300006, | ||
22093 | 0x7ef34028, | ||
22094 | 0xc0300020, | ||
22095 | 0x7f6b8020, | ||
22096 | 0x7fb3c029, | ||
22097 | 0xcf81a2c6, | ||
22098 | 0x80000003, | ||
22099 | 0xcfc1a2d3, | ||
22100 | 0xc82c03e9, | ||
22101 | 0xce81a2c3, | ||
22102 | 0xc0300006, | ||
22103 | 0x7ef34028, | ||
22104 | 0xc0300020, | ||
22105 | 0x7f6b8020, | ||
22106 | 0x7fb3c029, | ||
22107 | 0xcf81a2c7, | ||
22108 | 0x80000003, | ||
22109 | 0xcfc1a2d4, | ||
22110 | 0x80000003, | ||
22111 | 0xcc400042, | ||
22112 | 0x7c40c000, | ||
22113 | 0x7c410000, | ||
22114 | 0x2914001d, | ||
22115 | 0x31540001, | ||
22116 | 0x9940000c, | ||
22117 | 0x31181000, | ||
22118 | 0xc81c0011, | ||
22119 | 0x95c00000, | ||
22120 | 0xc81c0011, | ||
22121 | 0xccc12100, | ||
22122 | 0xcd012101, | ||
22123 | 0xccc12102, | ||
22124 | 0xcd012103, | ||
22125 | 0x04180004, | ||
22126 | 0x8000037e, | ||
22127 | 0xcd81a2a4, | ||
22128 | 0xc02a0004, | ||
22129 | 0x95800008, | ||
22130 | 0x36a821a3, | ||
22131 | 0xcc290000, | ||
22132 | 0xc8280004, | ||
22133 | 0xc81c0011, | ||
22134 | 0x0de40040, | ||
22135 | 0x9640ffff, | ||
22136 | 0xc81c0011, | ||
22137 | 0xccc12170, | ||
22138 | 0xcd012171, | ||
22139 | 0xc8200012, | ||
22140 | 0x96000000, | ||
22141 | 0xc8200012, | ||
22142 | 0x8000037e, | ||
22143 | 0xcc000064, | ||
22144 | 0x7c40c000, | ||
22145 | 0x7c410000, | ||
22146 | 0xcc000045, | ||
22147 | 0xcc000048, | ||
22148 | 0x40d40003, | ||
22149 | 0xcd41225c, | ||
22150 | 0xcd01a1fc, | ||
22151 | 0xc01a0001, | ||
22152 | 0x041ca1fd, | ||
22153 | 0x7dd9c00c, | ||
22154 | 0x7c420000, | ||
22155 | 0x08cc0001, | ||
22156 | 0x06240001, | ||
22157 | 0x06280002, | ||
22158 | 0xce1d0000, | ||
22159 | 0xce5d0000, | ||
22160 | 0x98c0fffa, | ||
22161 | 0xce9d0000, | ||
22162 | 0x7c408000, | ||
22163 | 0xa0000000, | ||
22164 | 0xcc800062, | ||
22165 | 0x7c40c000, | ||
22166 | 0x30d00001, | ||
22167 | 0x28cc0001, | ||
22168 | 0x7c414000, | ||
22169 | 0x95000006, | ||
22170 | 0x7c418000, | ||
22171 | 0xcd41216d, | ||
22172 | 0xcd81216e, | ||
22173 | 0x800000f4, | ||
22174 | 0xc81c0003, | ||
22175 | 0xc0220004, | ||
22176 | 0x7e16000c, | ||
22177 | 0xcc210000, | ||
22178 | 0xc81c0004, | ||
22179 | 0x7c424000, | ||
22180 | 0x98c00004, | ||
22181 | 0x7c428000, | ||
22182 | 0x80000003, | ||
22183 | 0xcde50000, | ||
22184 | 0xce412169, | ||
22185 | 0xce81216a, | ||
22186 | 0xcdc1216b, | ||
22187 | 0x80000003, | ||
22188 | 0xcc01216c, | ||
22189 | 0x7c40c000, | ||
22190 | 0x7c410000, | ||
22191 | 0x7c414000, | ||
22192 | 0x7c418000, | ||
22193 | 0x7c41c000, | ||
22194 | 0x28a40008, | ||
22195 | 0x326400ff, | ||
22196 | 0x0e68003c, | ||
22197 | 0x9680000a, | ||
22198 | 0x7c020000, | ||
22199 | 0x7c420000, | ||
22200 | 0x1e300003, | ||
22201 | 0xcc00006a, | ||
22202 | 0x9b000003, | ||
22203 | 0x42200005, | ||
22204 | 0x04200040, | ||
22205 | 0x80000111, | ||
22206 | 0x7c024000, | ||
22207 | 0x7e024000, | ||
22208 | 0x9a400000, | ||
22209 | 0x0a640001, | ||
22210 | 0x30ec0010, | ||
22211 | 0x9ac0000a, | ||
22212 | 0xcc000062, | ||
22213 | 0xc02a0004, | ||
22214 | 0xc82c0021, | ||
22215 | 0x7e92800c, | ||
22216 | 0xcc000041, | ||
22217 | 0xcc290000, | ||
22218 | 0xcec00021, | ||
22219 | 0x80000121, | ||
22220 | 0xc8300004, | ||
22221 | 0xcd01216d, | ||
22222 | 0xcd41216e, | ||
22223 | 0xc8300003, | ||
22224 | 0x7f1f000b, | ||
22225 | 0x30f40007, | ||
22226 | 0x27780001, | ||
22227 | 0x9740002a, | ||
22228 | 0x07b80126, | ||
22229 | 0x9f800000, | ||
22230 | 0x00000000, | ||
22231 | 0x80000136, | ||
22232 | 0x7f1b8004, | ||
22233 | 0x8000013a, | ||
22234 | 0x7f1b8005, | ||
22235 | 0x8000013e, | ||
22236 | 0x7f1b8002, | ||
22237 | 0x80000142, | ||
22238 | 0x7f1b8003, | ||
22239 | 0x80000146, | ||
22240 | 0x7f1b8007, | ||
22241 | 0x8000014a, | ||
22242 | 0x7f1b8006, | ||
22243 | 0x8000014f, | ||
22244 | 0x28a40008, | ||
22245 | 0x9b800019, | ||
22246 | 0x28a40008, | ||
22247 | 0x8000015f, | ||
22248 | 0x326400ff, | ||
22249 | 0x9b800015, | ||
22250 | 0x28a40008, | ||
22251 | 0x8000015f, | ||
22252 | 0x326400ff, | ||
22253 | 0x9b800011, | ||
22254 | 0x28a40008, | ||
22255 | 0x8000015f, | ||
22256 | 0x326400ff, | ||
22257 | 0x9b80000d, | ||
22258 | 0x28a40008, | ||
22259 | 0x8000015f, | ||
22260 | 0x326400ff, | ||
22261 | 0x9b800009, | ||
22262 | 0x28a40008, | ||
22263 | 0x8000015f, | ||
22264 | 0x326400ff, | ||
22265 | 0x9b800005, | ||
22266 | 0x28a40008, | ||
22267 | 0x8000015f, | ||
22268 | 0x326400ff, | ||
22269 | 0x28a40008, | ||
22270 | 0x326400ff, | ||
22271 | 0x0e68003c, | ||
22272 | 0x9a80feb2, | ||
22273 | 0x28ec0008, | ||
22274 | 0x7c434000, | ||
22275 | 0x7c438000, | ||
22276 | 0x7c43c000, | ||
22277 | 0x96c00007, | ||
22278 | 0xcc000062, | ||
22279 | 0xcf412169, | ||
22280 | 0xcf81216a, | ||
22281 | 0xcfc1216b, | ||
22282 | 0x80000003, | ||
22283 | 0xcc01216c, | ||
22284 | 0x80000003, | ||
22285 | 0xcff50000, | ||
22286 | 0xcc00006b, | ||
22287 | 0x84000381, | ||
22288 | 0x0e68003c, | ||
22289 | 0x9a800004, | ||
22290 | 0xc8280015, | ||
22291 | 0x80000003, | ||
22292 | 0xd040007f, | ||
22293 | 0x9680ffab, | ||
22294 | 0x7e024000, | ||
22295 | 0x8400023b, | ||
22296 | 0xc00e0002, | ||
22297 | 0xcc000041, | ||
22298 | 0x80000239, | ||
22299 | 0xccc1304a, | ||
22300 | 0x7c40c000, | ||
22301 | 0x7c410000, | ||
22302 | 0xc01e0001, | ||
22303 | 0x29240012, | ||
22304 | 0xc0220002, | ||
22305 | 0x96400005, | ||
22306 | 0xc0260004, | ||
22307 | 0xc027fffb, | ||
22308 | 0x7d25000b, | ||
22309 | 0xc0260000, | ||
22310 | 0x7dd2800b, | ||
22311 | 0x7e12c00b, | ||
22312 | 0x7d25000c, | ||
22313 | 0x7c414000, | ||
22314 | 0x7c418000, | ||
22315 | 0xccc12169, | ||
22316 | 0x9a80000a, | ||
22317 | 0xcd01216a, | ||
22318 | 0xcd41216b, | ||
22319 | 0x96c0fe83, | ||
22320 | 0xcd81216c, | ||
22321 | 0xc8300018, | ||
22322 | 0x97000000, | ||
22323 | 0xc8300018, | ||
22324 | 0x80000003, | ||
22325 | 0xcc000018, | ||
22326 | 0x84000381, | ||
22327 | 0xcc00007f, | ||
22328 | 0xc8140013, | ||
22329 | 0xc8180014, | ||
22330 | 0xcd41216b, | ||
22331 | 0x96c0fe77, | ||
22332 | 0xcd81216c, | ||
22333 | 0x80000183, | ||
22334 | 0xc8300018, | ||
22335 | 0xc80c0008, | ||
22336 | 0x98c00000, | ||
22337 | 0xc80c0008, | ||
22338 | 0x7c410000, | ||
22339 | 0x95000002, | ||
22340 | 0x00000000, | ||
22341 | 0x7c414000, | ||
22342 | 0xc8200009, | ||
22343 | 0xcc400043, | ||
22344 | 0xce01a1f4, | ||
22345 | 0xcc400044, | ||
22346 | 0xc00e8000, | ||
22347 | 0x7c424000, | ||
22348 | 0x7c428000, | ||
22349 | 0x2aac001f, | ||
22350 | 0x96c0fe64, | ||
22351 | 0xc035f000, | ||
22352 | 0xce4003e2, | ||
22353 | 0x32780003, | ||
22354 | 0x267c0008, | ||
22355 | 0x7ff7c00b, | ||
22356 | 0x7ffbc00c, | ||
22357 | 0x2a780018, | ||
22358 | 0xcfc003e3, | ||
22359 | 0xcf8003e4, | ||
22360 | 0x26b00002, | ||
22361 | 0x7f3f0000, | ||
22362 | 0xcf0003e5, | ||
22363 | 0x8000031f, | ||
22364 | 0x7c80c000, | ||
22365 | 0x7c40c000, | ||
22366 | 0x28d00008, | ||
22367 | 0x3110000f, | ||
22368 | 0x9500000f, | ||
22369 | 0x25280001, | ||
22370 | 0x06a801b4, | ||
22371 | 0x9e800000, | ||
22372 | 0x00000000, | ||
22373 | 0x800001d5, | ||
22374 | 0xc0120800, | ||
22375 | 0x800001e3, | ||
22376 | 0xc814000f, | ||
22377 | 0x800001ea, | ||
22378 | 0xc8140010, | ||
22379 | 0x800001f1, | ||
22380 | 0xccc1a2a4, | ||
22381 | 0x800001fa, | ||
22382 | 0xc8140011, | ||
22383 | 0x30d0003f, | ||
22384 | 0x0d280015, | ||
22385 | 0x9a800012, | ||
22386 | 0x0d28001e, | ||
22387 | 0x9a80001e, | ||
22388 | 0x0d280020, | ||
22389 | 0x9a800023, | ||
22390 | 0x0d24000f, | ||
22391 | 0x0d280010, | ||
22392 | 0x7e6a800c, | ||
22393 | 0x9a800026, | ||
22394 | 0x0d200004, | ||
22395 | 0x0d240014, | ||
22396 | 0x0d280028, | ||
22397 | 0x7e62400c, | ||
22398 | 0x7ea6800c, | ||
22399 | 0x9a80002a, | ||
22400 | 0xc8140011, | ||
22401 | 0x80000003, | ||
22402 | 0xccc1a2a4, | ||
22403 | 0xc0120800, | ||
22404 | 0x7c414000, | ||
22405 | 0x7d0cc00c, | ||
22406 | 0xc0120008, | ||
22407 | 0x29580003, | ||
22408 | 0x295c000c, | ||
22409 | 0x7c420000, | ||
22410 | 0x7dd1c00b, | ||
22411 | 0x26200014, | ||
22412 | 0x7e1e400c, | ||
22413 | 0x7e4e800c, | ||
22414 | 0xce81a2a4, | ||
22415 | 0x80000003, | ||
22416 | 0xcd81a1fe, | ||
22417 | 0xc814000f, | ||
22418 | 0x0410210e, | ||
22419 | 0x95400000, | ||
22420 | 0xc814000f, | ||
22421 | 0xd0510000, | ||
22422 | 0x80000003, | ||
22423 | 0xccc1a2a4, | ||
22424 | 0xc8140010, | ||
22425 | 0x04102108, | ||
22426 | 0x95400000, | ||
22427 | 0xc8140010, | ||
22428 | 0xd0510000, | ||
22429 | 0x80000003, | ||
22430 | 0xccc1a2a4, | ||
22431 | 0xccc1a2a4, | ||
22432 | 0x04100001, | ||
22433 | 0xcd000019, | ||
22434 | 0x84000381, | ||
22435 | 0xcc00007f, | ||
22436 | 0xc8100019, | ||
22437 | 0x99000000, | ||
22438 | 0xc8100019, | ||
22439 | 0x80000004, | ||
22440 | 0x7c408000, | ||
22441 | 0x04102100, | ||
22442 | 0x95400000, | ||
22443 | 0xc8140011, | ||
22444 | 0xd0510000, | ||
22445 | 0x8000037e, | ||
22446 | 0xccc1a2a4, | ||
22447 | 0x7c40c000, | ||
22448 | 0xcc40000d, | ||
22449 | 0x94c0fe01, | ||
22450 | 0xcc40000e, | ||
22451 | 0x7c410000, | ||
22452 | 0x95000005, | ||
22453 | 0x08cc0001, | ||
22454 | 0xc8140005, | ||
22455 | 0x99400014, | ||
22456 | 0x00000000, | ||
22457 | 0x98c0fffb, | ||
22458 | 0x7c410000, | ||
22459 | 0x80000004, | ||
22460 | 0x7d008000, | ||
22461 | 0xc8140005, | ||
22462 | 0x7c40c000, | ||
22463 | 0x9940000c, | ||
22464 | 0xc818000c, | ||
22465 | 0x7c410000, | ||
22466 | 0x9580fdf0, | ||
22467 | 0xc820000e, | ||
22468 | 0xc81c000d, | ||
22469 | 0x66200020, | ||
22470 | 0x7e1e002c, | ||
22471 | 0x25240002, | ||
22472 | 0x7e624020, | ||
22473 | 0x80000003, | ||
22474 | 0xcce60000, | ||
22475 | 0x7c410000, | ||
22476 | 0xcc00006c, | ||
22477 | 0xcc00006d, | ||
22478 | 0xc818001f, | ||
22479 | 0xc81c001e, | ||
22480 | 0x65980020, | ||
22481 | 0x7dd9c02c, | ||
22482 | 0x7cd4c00c, | ||
22483 | 0xccde0000, | ||
22484 | 0x45dc0004, | ||
22485 | 0xc8280017, | ||
22486 | 0x9680000f, | ||
22487 | 0xc00e0001, | ||
22488 | 0x28680008, | ||
22489 | 0x2aac0016, | ||
22490 | 0x32a800ff, | ||
22491 | 0x0eb00049, | ||
22492 | 0x7f2f000b, | ||
22493 | 0x97000006, | ||
22494 | 0x00000000, | ||
22495 | 0xc8140005, | ||
22496 | 0x7c40c000, | ||
22497 | 0x80000223, | ||
22498 | 0x7c410000, | ||
22499 | 0x80000226, | ||
22500 | 0xd040007f, | ||
22501 | 0x8400023b, | ||
22502 | 0xcc000041, | ||
22503 | 0xccc1304a, | ||
22504 | 0x94000000, | ||
22505 | 0xc83c001a, | ||
22506 | 0x043c0005, | ||
22507 | 0xcfc1a2a4, | ||
22508 | 0xc0361f90, | ||
22509 | 0xc0387fff, | ||
22510 | 0x7c03c010, | ||
22511 | 0x7f7b400c, | ||
22512 | 0xcf41217c, | ||
22513 | 0xcfc1217d, | ||
22514 | 0xcc01217e, | ||
22515 | 0xc03a0004, | ||
22516 | 0x0434217f, | ||
22517 | 0x7f7b400c, | ||
22518 | 0xcc350000, | ||
22519 | 0xc83c0004, | ||
22520 | 0x2bfc001f, | ||
22521 | 0x04380020, | ||
22522 | 0x97c00005, | ||
22523 | 0xcc000062, | ||
22524 | 0x9b800000, | ||
22525 | 0x0bb80001, | ||
22526 | 0x80000247, | ||
22527 | 0xcc000071, | ||
22528 | 0xcc01a1f4, | ||
22529 | 0x04380016, | ||
22530 | 0xc0360002, | ||
22531 | 0xcf81a2a4, | ||
22532 | 0x88000000, | ||
22533 | 0xcf412010, | ||
22534 | 0x7c40c000, | ||
22535 | 0x28d0001c, | ||
22536 | 0x95000005, | ||
22537 | 0x04d40001, | ||
22538 | 0xcd400065, | ||
22539 | 0x80000003, | ||
22540 | 0xcd400068, | ||
22541 | 0x09540002, | ||
22542 | 0x80000003, | ||
22543 | 0xcd400066, | ||
22544 | 0x8400026c, | ||
22545 | 0xc81803ea, | ||
22546 | 0x7c40c000, | ||
22547 | 0x9980fd9f, | ||
22548 | 0xc8140016, | ||
22549 | 0x08d00001, | ||
22550 | 0x9940002b, | ||
22551 | 0xcd000068, | ||
22552 | 0x7c408000, | ||
22553 | 0xa0000000, | ||
22554 | 0xcc800062, | ||
22555 | 0x043c0005, | ||
22556 | 0xcfc1a2a4, | ||
22557 | 0xcc01a1f4, | ||
22558 | 0x84000381, | ||
22559 | 0xcc000046, | ||
22560 | 0x88000000, | ||
22561 | 0xcc00007f, | ||
22562 | 0x8400027e, | ||
22563 | 0xc81803ea, | ||
22564 | 0x7c40c000, | ||
22565 | 0x9980fd8d, | ||
22566 | 0xc8140016, | ||
22567 | 0x08d00001, | ||
22568 | 0x99400019, | ||
22569 | 0xcd000068, | ||
22570 | 0x7c408000, | ||
22571 | 0xa0000000, | ||
22572 | 0xcc800062, | ||
22573 | 0x043c0022, | ||
22574 | 0xcfc1a2a4, | ||
22575 | 0x84000381, | ||
22576 | 0xcc000047, | ||
22577 | 0x88000000, | ||
22578 | 0xcc00007f, | ||
22579 | 0xc8100016, | ||
22580 | 0x9900000d, | ||
22581 | 0xcc400067, | ||
22582 | 0x80000004, | ||
22583 | 0x7c408000, | ||
22584 | 0xc81803ea, | ||
22585 | 0x9980fd79, | ||
22586 | 0x7c40c000, | ||
22587 | 0x94c00003, | ||
22588 | 0xc8100016, | ||
22589 | 0x99000004, | ||
22590 | 0xccc00068, | ||
22591 | 0x80000004, | ||
22592 | 0x7c408000, | ||
22593 | 0x8400023b, | ||
22594 | 0xc0148000, | ||
22595 | 0xcc000041, | ||
22596 | 0xcd41304a, | ||
22597 | 0xc0148000, | ||
22598 | 0x99000000, | ||
22599 | 0xc8100016, | ||
22600 | 0x80000004, | ||
22601 | 0x7c408000, | ||
22602 | 0xc0120001, | ||
22603 | 0x7c51400c, | ||
22604 | 0x80000003, | ||
22605 | 0xd0550000, | ||
22606 | 0x7c40c000, | ||
22607 | 0x7c410000, | ||
22608 | 0x7c414000, | ||
22609 | 0x7c418000, | ||
22610 | 0x291c001f, | ||
22611 | 0xccc0004a, | ||
22612 | 0xcd00004b, | ||
22613 | 0x95c00003, | ||
22614 | 0xc01c8000, | ||
22615 | 0xcdc12010, | ||
22616 | 0xdd830000, | ||
22617 | 0x055c2000, | ||
22618 | 0xcc000062, | ||
22619 | 0x80000003, | ||
22620 | 0xd81f4100, | ||
22621 | 0x7c40c000, | ||
22622 | 0x7c410000, | ||
22623 | 0x7c414000, | ||
22624 | 0x7c418000, | ||
22625 | 0xccc0004c, | ||
22626 | 0xcd00004d, | ||
22627 | 0xdd830000, | ||
22628 | 0x055ca000, | ||
22629 | 0x80000003, | ||
22630 | 0xd81f4100, | ||
22631 | 0x7c40c000, | ||
22632 | 0x7c410000, | ||
22633 | 0x7c414000, | ||
22634 | 0x7c418000, | ||
22635 | 0xccc0004e, | ||
22636 | 0xcd00004f, | ||
22637 | 0xdd830000, | ||
22638 | 0x055cc000, | ||
22639 | 0x80000003, | ||
22640 | 0xd81f4100, | ||
22641 | 0x7c40c000, | ||
22642 | 0x7c410000, | ||
22643 | 0x7c414000, | ||
22644 | 0x7c418000, | ||
22645 | 0xccc00050, | ||
22646 | 0xcd000051, | ||
22647 | 0xdd830000, | ||
22648 | 0x055cf8e0, | ||
22649 | 0x80000003, | ||
22650 | 0xd81f4100, | ||
22651 | 0x7c40c000, | ||
22652 | 0x7c410000, | ||
22653 | 0x7c414000, | ||
22654 | 0x7c418000, | ||
22655 | 0xccc00052, | ||
22656 | 0xcd000053, | ||
22657 | 0xdd830000, | ||
22658 | 0x055cf880, | ||
22659 | 0x80000003, | ||
22660 | 0xd81f4100, | ||
22661 | 0x7c40c000, | ||
22662 | 0x7c410000, | ||
22663 | 0x7c414000, | ||
22664 | 0x7c418000, | ||
22665 | 0xccc00054, | ||
22666 | 0xcd000055, | ||
22667 | 0xdd830000, | ||
22668 | 0x055ce000, | ||
22669 | 0x80000003, | ||
22670 | 0xd81f4100, | ||
22671 | 0x7c40c000, | ||
22672 | 0x7c410000, | ||
22673 | 0x7c414000, | ||
22674 | 0x7c418000, | ||
22675 | 0xccc00056, | ||
22676 | 0xcd000057, | ||
22677 | 0xdd830000, | ||
22678 | 0x055cf000, | ||
22679 | 0x80000003, | ||
22680 | 0xd81f4100, | ||
22681 | 0x7c40c000, | ||
22682 | 0x7c410000, | ||
22683 | 0x7c414000, | ||
22684 | 0x7c418000, | ||
22685 | 0xccc00058, | ||
22686 | 0xcd000059, | ||
22687 | 0xdd830000, | ||
22688 | 0x055cf3fc, | ||
22689 | 0x80000003, | ||
22690 | 0xd81f4100, | ||
22691 | 0xd0432000, | ||
22692 | 0x7c408000, | ||
22693 | 0xa0000000, | ||
22694 | 0xcc800062, | ||
22695 | 0xd043a000, | ||
22696 | 0x7c408000, | ||
22697 | 0xa0000000, | ||
22698 | 0xcc800062, | ||
22699 | 0xd043c000, | ||
22700 | 0x7c408000, | ||
22701 | 0xa0000000, | ||
22702 | 0xcc800062, | ||
22703 | 0xd043f8e0, | ||
22704 | 0x7c408000, | ||
22705 | 0xa0000000, | ||
22706 | 0xcc800062, | ||
22707 | 0xd043f880, | ||
22708 | 0x7c408000, | ||
22709 | 0xa0000000, | ||
22710 | 0xcc800062, | ||
22711 | 0xd043e000, | ||
22712 | 0x7c408000, | ||
22713 | 0xa0000000, | ||
22714 | 0xcc800062, | ||
22715 | 0xd043f000, | ||
22716 | 0x7c408000, | ||
22717 | 0xa0000000, | ||
22718 | 0xcc800062, | ||
22719 | 0xd043f3fc, | ||
22720 | 0x7c408000, | ||
22721 | 0xa0000000, | ||
22722 | 0xcc800062, | ||
22723 | 0xc81403e0, | ||
22724 | 0xcc430000, | ||
22725 | 0xcc430000, | ||
22726 | 0xcc430000, | ||
22727 | 0x7d45c000, | ||
22728 | 0xcdc30000, | ||
22729 | 0xd0430000, | ||
22730 | 0x7c408000, | ||
22731 | 0xa0000000, | ||
22732 | 0xcc800062, | ||
22733 | 0x7c40c000, | ||
22734 | 0xc81003e2, | ||
22735 | 0xc81403e5, | ||
22736 | 0xc81803e3, | ||
22737 | 0xc81c03e4, | ||
22738 | 0xcd812169, | ||
22739 | 0xcdc1216a, | ||
22740 | 0xccc1216b, | ||
22741 | 0xcc01216c, | ||
22742 | 0x04200004, | ||
22743 | 0x7da18000, | ||
22744 | 0x7d964002, | ||
22745 | 0x9640fcd9, | ||
22746 | 0xcd8003e3, | ||
22747 | 0x31280003, | ||
22748 | 0xc02df000, | ||
22749 | 0x25180008, | ||
22750 | 0x7dad800b, | ||
22751 | 0x7da9800c, | ||
22752 | 0x80000003, | ||
22753 | 0xcd8003e3, | ||
22754 | 0x308cffff, | ||
22755 | 0xd04d0000, | ||
22756 | 0x7c408000, | ||
22757 | 0xa0000000, | ||
22758 | 0xcc800062, | ||
22759 | 0xc8140020, | ||
22760 | 0x15580002, | ||
22761 | 0x9580ffff, | ||
22762 | 0xc8140020, | ||
22763 | 0xcc00006e, | ||
22764 | 0xcc412180, | ||
22765 | 0x7c40c000, | ||
22766 | 0xccc1218d, | ||
22767 | 0xcc412181, | ||
22768 | 0x28d0001f, | ||
22769 | 0x34588000, | ||
22770 | 0xcd81218c, | ||
22771 | 0x9500fcbf, | ||
22772 | 0xcc412182, | ||
22773 | 0xc8140020, | ||
22774 | 0x9940ffff, | ||
22775 | 0xc8140020, | ||
22776 | 0x80000004, | ||
22777 | 0x7c408000, | ||
22778 | 0x7c40c000, | ||
22779 | 0x28d00018, | ||
22780 | 0x31100001, | ||
22781 | 0xc0160080, | ||
22782 | 0x95000003, | ||
22783 | 0xc02a0004, | ||
22784 | 0x7cd4c00c, | ||
22785 | 0xccc1217c, | ||
22786 | 0xcc41217d, | ||
22787 | 0xcc41217e, | ||
22788 | 0x7c418000, | ||
22789 | 0x1db00003, | ||
22790 | 0x36a0217f, | ||
22791 | 0x9b000003, | ||
22792 | 0x419c0005, | ||
22793 | 0x041c0040, | ||
22794 | 0x99c00000, | ||
22795 | 0x09dc0001, | ||
22796 | 0xcc210000, | ||
22797 | 0xc8240004, | ||
22798 | 0x2a6c001f, | ||
22799 | 0x419c0005, | ||
22800 | 0x9ac0fffa, | ||
22801 | 0xcc800062, | ||
22802 | 0x80000004, | ||
22803 | 0x7c408000, | ||
22804 | 0x7c40c000, | ||
22805 | 0x04d403e6, | ||
22806 | 0x80000003, | ||
22807 | 0xcc540000, | ||
22808 | 0x8000037e, | ||
22809 | 0xcc4003ea, | ||
22810 | 0xc01c8000, | ||
22811 | 0x044ca000, | ||
22812 | 0xcdc12010, | ||
22813 | 0x7c410000, | ||
22814 | 0xc8140009, | ||
22815 | 0x04180000, | ||
22816 | 0x041c0008, | ||
22817 | 0xcd800071, | ||
22818 | 0x09dc0001, | ||
22819 | 0x05980001, | ||
22820 | 0xcd0d0000, | ||
22821 | 0x99c0fffc, | ||
22822 | 0xcc800062, | ||
22823 | 0x8000037e, | ||
22824 | 0xcd400071, | ||
22825 | 0xc00e0100, | ||
22826 | 0xcc000041, | ||
22827 | 0xccc1304a, | ||
22828 | 0xc83c007f, | ||
22829 | 0xcc00007f, | ||
22830 | 0x80000003, | ||
22831 | 0xcc00007f, | ||
22832 | 0xcc00007f, | ||
22833 | 0x88000000, | ||
22834 | 0xcc00007f, | ||
22835 | 0x00000000, | ||
22836 | 0x00000000, | ||
22837 | 0x00000000, | ||
22838 | 0x00000000, | ||
22839 | 0x00000000, | ||
22840 | 0x00000000, | ||
22841 | 0x00000000, | ||
22842 | 0x00000000, | ||
22843 | 0x00000000, | ||
22844 | 0x00000000, | ||
22845 | 0x00000000, | ||
22846 | 0x00000000, | ||
22847 | 0x00000000, | ||
22848 | 0x00000000, | ||
22849 | 0x00000000, | ||
22850 | 0x00000000, | ||
22851 | 0x00000000, | ||
22852 | 0x00000000, | ||
22853 | 0x00000000, | ||
22854 | 0x00000000, | ||
22855 | 0x00000000, | ||
22856 | 0x00000000, | ||
22857 | 0x00000000, | ||
22858 | 0x00000000, | ||
22859 | 0x00000000, | ||
22860 | 0x00000000, | ||
22861 | 0x00000000, | ||
22862 | 0x00000000, | ||
22863 | 0x00000000, | ||
22864 | 0x00000000, | ||
22865 | 0x00000000, | ||
22866 | 0x00000000, | ||
22867 | 0x00000000, | ||
22868 | 0x00000000, | ||
22869 | 0x00000000, | ||
22870 | 0x00000000, | ||
22871 | 0x00000000, | ||
22872 | 0x00000000, | ||
22873 | 0x00000000, | ||
22874 | 0x00000000, | ||
22875 | 0x00000000, | ||
22876 | 0x00000000, | ||
22877 | 0x00000000, | ||
22878 | 0x00000000, | ||
22879 | 0x00000000, | ||
22880 | 0x00000000, | ||
22881 | 0x00000000, | ||
22882 | 0x00000000, | ||
22883 | 0x00000000, | ||
22884 | 0x00000000, | ||
22885 | 0x00000000, | ||
22886 | 0x00000000, | ||
22887 | 0x00000000, | ||
22888 | 0x00000000, | ||
22889 | 0x00000000, | ||
22890 | 0x00000000, | ||
22891 | 0x00000000, | ||
22892 | 0x00000000, | ||
22893 | 0x00000000, | ||
22894 | 0x00000000, | ||
22895 | 0x00000000, | ||
22896 | 0x00000000, | ||
22897 | 0x00000000, | ||
22898 | 0x00000000, | ||
22899 | 0x00000000, | ||
22900 | 0x00000000, | ||
22901 | 0x00000000, | ||
22902 | 0x00000000, | ||
22903 | 0x00000000, | ||
22904 | 0x00000000, | ||
22905 | 0x00000000, | ||
22906 | 0x00000000, | ||
22907 | 0x00000000, | ||
22908 | 0x00000000, | ||
22909 | 0x00000000, | ||
22910 | 0x00000000, | ||
22911 | 0x00000000, | ||
22912 | 0x00000000, | ||
22913 | 0x00000000, | ||
22914 | 0x00000000, | ||
22915 | 0x00000000, | ||
22916 | 0x00000000, | ||
22917 | 0x00000000, | ||
22918 | 0x00000000, | ||
22919 | 0x00000000, | ||
22920 | 0x00000000, | ||
22921 | 0x00000000, | ||
22922 | 0x00000000, | ||
22923 | 0x00000000, | ||
22924 | 0x00000000, | ||
22925 | 0x00000000, | ||
22926 | 0x00000000, | ||
22927 | 0x00000000, | ||
22928 | 0x00000000, | ||
22929 | 0x00000000, | ||
22930 | 0x00000000, | ||
22931 | 0x00000000, | ||
22932 | 0x00000000, | ||
22933 | 0x00000000, | ||
22934 | 0x00000000, | ||
22935 | 0x00000000, | ||
22936 | 0x00000000, | ||
22937 | 0x00000000, | ||
22938 | 0x00000000, | ||
22939 | 0x00000000, | ||
22940 | 0x00000000, | ||
22941 | 0x00000000, | ||
22942 | 0x00000000, | ||
22943 | 0x00000000, | ||
22944 | 0x00000000, | ||
22945 | 0x00000000, | ||
22946 | 0x00000000, | ||
22947 | 0x00000000, | ||
22948 | 0x00000000, | ||
22949 | 0x00000000, | ||
22950 | 0x00000000, | ||
22951 | 0x00000000, | ||
22952 | 0x00000000, | ||
22953 | 0x00000000, | ||
22954 | 0x00000000, | ||
22955 | 0x00000000, | ||
22956 | 0x00000000, | ||
22957 | 0x00000000, | ||
22958 | 0x00000000, | ||
22959 | 0x00000000, | ||
22960 | 0x00000000, | ||
22961 | 0x00000000, | ||
22962 | 0x00000000, | ||
22963 | 0x00000000, | ||
22964 | 0x00000000, | ||
22965 | 0x00000000, | ||
22966 | 0x00000000, | ||
22967 | 0x00000000, | ||
22968 | 0x00000000, | ||
22969 | 0x00000000, | ||
22970 | 0x00000000, | ||
22971 | 0x00000000, | ||
22972 | 0x00000000, | ||
22973 | 0x00000000, | ||
22974 | 0x00000000, | ||
22975 | 0x00000000, | ||
22976 | 0x00000000, | ||
22977 | 0x00000000, | ||
22978 | 0x00000000, | ||
22979 | 0x00000000, | ||
22980 | 0x00000000, | ||
22981 | 0x00000000, | ||
22982 | 0x00000000, | ||
22983 | 0x00000000, | ||
22984 | 0x00000000, | ||
22985 | 0x00000000, | ||
22986 | 0x00000000, | ||
22987 | 0x00000000, | ||
22988 | 0x00000000, | ||
22989 | 0x00000000, | ||
22990 | 0x00000000, | ||
22991 | 0x00000000, | ||
22992 | 0x00000000, | ||
22993 | 0x00000000, | ||
22994 | 0x00000000, | ||
22995 | 0x00000000, | ||
22996 | 0x00000000, | ||
22997 | 0x00000000, | ||
22998 | 0x00000000, | ||
22999 | 0x00000000, | ||
23000 | 0x00000000, | ||
23001 | 0x00000000, | ||
23002 | 0x00000000, | ||
23003 | 0x00000000, | ||
23004 | 0x00000000, | ||
23005 | 0x00000000, | ||
23006 | 0x00000000, | ||
23007 | 0x00000000, | ||
23008 | 0x00000000, | ||
23009 | 0x00000000, | ||
23010 | 0x00000000, | ||
23011 | 0x00000000, | ||
23012 | 0x00000000, | ||
23013 | 0x00000000, | ||
23014 | 0x00000000, | ||
23015 | 0x00000000, | ||
23016 | 0x00000000, | ||
23017 | 0x00000000, | ||
23018 | 0x00000000, | ||
23019 | 0x00000000, | ||
23020 | 0x00000000, | ||
23021 | 0x00000000, | ||
23022 | 0x00000000, | ||
23023 | 0x00000000, | ||
23024 | 0x00000000, | ||
23025 | 0x00000000, | ||
23026 | 0x00000000, | ||
23027 | 0x00000000, | ||
23028 | 0x00000000, | ||
23029 | 0x00000000, | ||
23030 | 0x00000000, | ||
23031 | 0x00000000, | ||
23032 | 0x00000000, | ||
23033 | 0x00000000, | ||
23034 | 0x00000000, | ||
23035 | 0x00000000, | ||
23036 | 0x00000000, | ||
23037 | 0x00000000, | ||
23038 | 0x00000000, | ||
23039 | 0x00000000, | ||
23040 | 0x00000000, | ||
23041 | 0x00000000, | ||
23042 | 0x00000000, | ||
23043 | 0x00000000, | ||
23044 | 0x00000000, | ||
23045 | 0x00000000, | ||
23046 | 0x00000000, | ||
23047 | 0x00000000, | ||
23048 | 0x00000000, | ||
23049 | 0x00000000, | ||
23050 | 0x00000000, | ||
23051 | 0x00000000, | ||
23052 | 0x00000000, | ||
23053 | 0x00000000, | ||
23054 | 0x00000000, | ||
23055 | 0x00000000, | ||
23056 | 0x00000000, | ||
23057 | 0x00000000, | ||
23058 | 0x00000000, | ||
23059 | 0x00000000, | ||
23060 | 0x00000000, | ||
23061 | 0x00000000, | ||
23062 | 0x00000000, | ||
23063 | 0x00000000, | ||
23064 | 0x00000000, | ||
23065 | 0x00000000, | ||
23066 | 0x00000000, | ||
23067 | 0x00000000, | ||
23068 | 0x00000000, | ||
23069 | 0x00000000, | ||
23070 | 0x00000000, | ||
23071 | 0x00000000, | ||
23072 | 0x00000000, | ||
23073 | 0x00000000, | ||
23074 | 0x00000000, | ||
23075 | 0x00000000, | ||
23076 | 0x00000000, | ||
23077 | 0x00000000, | ||
23078 | 0x00000000, | ||
23079 | 0x00000000, | ||
23080 | 0x00000000, | ||
23081 | 0x00000000, | ||
23082 | 0x00000000, | ||
23083 | 0x00000000, | ||
23084 | 0x00000000, | ||
23085 | 0x00000000, | ||
23086 | 0x00000000, | ||
23087 | 0x00000000, | ||
23088 | 0x00000000, | ||
23089 | 0x00000000, | ||
23090 | 0x00000000, | ||
23091 | 0x00000000, | ||
23092 | 0x00000000, | ||
23093 | 0x00000000, | ||
23094 | 0x00000000, | ||
23095 | 0x00000000, | ||
23096 | 0x00000000, | ||
23097 | 0x00000000, | ||
23098 | 0x00000000, | ||
23099 | 0x00000000, | ||
23100 | 0x00000000, | ||
23101 | 0x00000000, | ||
23102 | 0x00000000, | ||
23103 | 0x00000000, | ||
23104 | 0x00000000, | ||
23105 | 0x00000000, | ||
23106 | 0x00000000, | ||
23107 | 0x00000000, | ||
23108 | 0x00000000, | ||
23109 | 0x00000000, | ||
23110 | 0x00000000, | ||
23111 | 0x00000000, | ||
23112 | 0x00000000, | ||
23113 | 0x00000000, | ||
23114 | 0x00000000, | ||
23115 | 0x00000000, | ||
23116 | 0x00000000, | ||
23117 | 0x00000000, | ||
23118 | 0x00000000, | ||
23119 | 0x00000000, | ||
23120 | 0x00000000, | ||
23121 | 0x00000000, | ||
23122 | 0x00000000, | ||
23123 | 0x00000000, | ||
23124 | 0x00000000, | ||
23125 | 0x00000000, | ||
23126 | 0x00000000, | ||
23127 | 0x00000000, | ||
23128 | 0x00000000, | ||
23129 | 0x00000000, | ||
23130 | 0x00000000, | ||
23131 | 0x00000000, | ||
23132 | 0x00000000, | ||
23133 | 0x00000000, | ||
23134 | 0x00000000, | ||
23135 | 0x00000000, | ||
23136 | 0x00000000, | ||
23137 | 0x00000000, | ||
23138 | 0x00000000, | ||
23139 | 0x00000000, | ||
23140 | 0x00000000, | ||
23141 | 0x00000000, | ||
23142 | 0x00000000, | ||
23143 | 0x00000000, | ||
23144 | 0x00000000, | ||
23145 | 0x00000000, | ||
23146 | 0x00000000, | ||
23147 | 0x00000000, | ||
23148 | 0x00000000, | ||
23149 | 0x00000000, | ||
23150 | 0x00000000, | ||
23151 | 0x00000000, | ||
23152 | 0x00000000, | ||
23153 | 0x00000000, | ||
23154 | 0x00000000, | ||
23155 | 0x00000000, | ||
23156 | 0x00000000, | ||
23157 | 0x00000000, | ||
23158 | 0x00000000, | ||
23159 | 0x00000000, | ||
23160 | 0x00000000, | ||
23161 | 0x00000000, | ||
23162 | 0x00000000, | ||
23163 | 0x00000000, | ||
23164 | 0x00000000, | ||
23165 | 0x00000000, | ||
23166 | 0x00000000, | ||
23167 | 0x00000000, | ||
23168 | 0x00000000, | ||
23169 | 0x00000000, | ||
23170 | 0x00000000, | ||
23171 | 0x00000000, | ||
23172 | 0x00000000, | ||
23173 | 0x00000000, | ||
23174 | 0x00000000, | ||
23175 | 0x00000000, | ||
23176 | 0x00000000, | ||
23177 | 0x00000000, | ||
23178 | 0x00000000, | ||
23179 | 0x00000000, | ||
23180 | 0x00000000, | ||
23181 | 0x00000000, | ||
23182 | 0x00000000, | ||
23183 | 0x00000000, | ||
23184 | 0x00000000, | ||
23185 | 0x00000000, | ||
23186 | 0x00000000, | ||
23187 | 0x00000000, | ||
23188 | 0x00000000, | ||
23189 | 0x00000000, | ||
23190 | 0x00000000, | ||
23191 | 0x00000000, | ||
23192 | 0x00000000, | ||
23193 | 0x00000000, | ||
23194 | 0x00000000, | ||
23195 | 0x00000000, | ||
23196 | 0x00000000, | ||
23197 | 0x00000000, | ||
23198 | 0x00000000, | ||
23199 | 0x00000000, | ||
23200 | 0x00000000, | ||
23201 | 0x00000000, | ||
23202 | 0x00000000, | ||
23203 | 0x00000000, | ||
23204 | 0x00000000, | ||
23205 | 0x00000000, | ||
23206 | 0x00000000, | ||
23207 | 0x00000000, | ||
23208 | 0x00000000, | ||
23209 | 0x00000000, | ||
23210 | 0x00000000, | ||
23211 | 0x00000000, | ||
23212 | 0x00000000, | ||
23213 | 0x00000000, | ||
23214 | 0x00000000, | ||
23215 | 0x00010333, | ||
23216 | 0x00100006, | ||
23217 | 0x00170008, | ||
23218 | 0x0021000a, | ||
23219 | 0x0027002a, | ||
23220 | 0x00280025, | ||
23221 | 0x0029002b, | ||
23222 | 0x002a0028, | ||
23223 | 0x002b002b, | ||
23224 | 0x002d003a, | ||
23225 | 0x002e0041, | ||
23226 | 0x002f004c, | ||
23227 | 0x0034004e, | ||
23228 | 0x00360032, | ||
23229 | 0x003900b1, | ||
23230 | 0x003a00d1, | ||
23231 | 0x003b00e6, | ||
23232 | 0x003c00fe, | ||
23233 | 0x003d016d, | ||
23234 | 0x003f00af, | ||
23235 | 0x00410338, | ||
23236 | 0x0043034b, | ||
23237 | 0x00440190, | ||
23238 | 0x004500fe, | ||
23239 | 0x004601ae, | ||
23240 | 0x004701ae, | ||
23241 | 0x00480200, | ||
23242 | 0x0049020e, | ||
23243 | 0x004a0257, | ||
23244 | 0x004b0284, | ||
23245 | 0x00520261, | ||
23246 | 0x00530273, | ||
23247 | 0x00540289, | ||
23248 | 0x0057029b, | ||
23249 | 0x0060029f, | ||
23250 | 0x006102ae, | ||
23251 | 0x006202b8, | ||
23252 | 0x006302c2, | ||
23253 | 0x006402cc, | ||
23254 | 0x006502d6, | ||
23255 | 0x006602e0, | ||
23256 | 0x006702ea, | ||
23257 | 0x006802f4, | ||
23258 | 0x006902f8, | ||
23259 | 0x006a02fc, | ||
23260 | 0x006b0300, | ||
23261 | 0x006c0304, | ||
23262 | 0x006d0308, | ||
23263 | 0x006e030c, | ||
23264 | 0x006f0310, | ||
23265 | 0x00700314, | ||
23266 | 0x00720365, | ||
23267 | 0x0074036b, | ||
23268 | 0x00790369, | ||
23269 | 0x007c031e, | ||
23270 | 0x000f037a, | ||
23271 | 0x000f037a, | ||
23272 | 0x000f037a, | ||
23273 | 0x000f037a, | ||
23274 | 0x000f037a, | ||
23275 | 0x000f037a, | ||
23276 | 0x000f037a, | ||
23277 | 0x000f037a, | ||
23278 | 0x000f037a, | ||
23279 | 0x000f037a, | ||
23280 | 0x000f037a, | ||
23281 | 0x000f037a, | ||
23282 | 0x000f037a, | ||
23283 | 0x000f037a, | ||
23284 | 0x000f037a, | ||
23285 | 0x000f037a, | ||
23286 | 0x000f037a, | ||
23287 | 0x000f037a, | ||
23288 | 0x000f037a, | ||
23289 | 0x000f037a, | ||
23290 | 0x000f037a, | ||
23291 | 0x000f037a, | ||
23292 | 0x000f037a, | ||
23293 | 0x000f037a, | ||
23294 | 0x000f037a, | ||
23295 | }; | ||
23296 | |||
23297 | #endif | ||
diff --git a/drivers/gpu/drm/radeon/radeon_cp.c b/drivers/gpu/drm/radeon/radeon_cp.c index 92965dbb3c14..77a7a4d84650 100644 --- a/drivers/gpu/drm/radeon/radeon_cp.c +++ b/drivers/gpu/drm/radeon/radeon_cp.c | |||
@@ -43,6 +43,78 @@ | |||
43 | static int radeon_do_cleanup_cp(struct drm_device * dev); | 43 | static int radeon_do_cleanup_cp(struct drm_device * dev); |
44 | static void radeon_do_cp_start(drm_radeon_private_t * dev_priv); | 44 | static void radeon_do_cp_start(drm_radeon_private_t * dev_priv); |
45 | 45 | ||
46 | u32 radeon_read_ring_rptr(drm_radeon_private_t *dev_priv, u32 off) | ||
47 | { | ||
48 | u32 val; | ||
49 | |||
50 | if (dev_priv->flags & RADEON_IS_AGP) { | ||
51 | val = DRM_READ32(dev_priv->ring_rptr, off); | ||
52 | } else { | ||
53 | val = *(((volatile u32 *) | ||
54 | dev_priv->ring_rptr->handle) + | ||
55 | (off / sizeof(u32))); | ||
56 | val = le32_to_cpu(val); | ||
57 | } | ||
58 | return val; | ||
59 | } | ||
60 | |||
61 | u32 radeon_get_ring_head(drm_radeon_private_t *dev_priv) | ||
62 | { | ||
63 | if (dev_priv->writeback_works) | ||
64 | return radeon_read_ring_rptr(dev_priv, 0); | ||
65 | else { | ||
66 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) | ||
67 | return RADEON_READ(R600_CP_RB_RPTR); | ||
68 | else | ||
69 | return RADEON_READ(RADEON_CP_RB_RPTR); | ||
70 | } | ||
71 | } | ||
72 | |||
73 | void radeon_write_ring_rptr(drm_radeon_private_t *dev_priv, u32 off, u32 val) | ||
74 | { | ||
75 | if (dev_priv->flags & RADEON_IS_AGP) | ||
76 | DRM_WRITE32(dev_priv->ring_rptr, off, val); | ||
77 | else | ||
78 | *(((volatile u32 *) dev_priv->ring_rptr->handle) + | ||
79 | (off / sizeof(u32))) = cpu_to_le32(val); | ||
80 | } | ||
81 | |||
82 | void radeon_set_ring_head(drm_radeon_private_t *dev_priv, u32 val) | ||
83 | { | ||
84 | radeon_write_ring_rptr(dev_priv, 0, val); | ||
85 | } | ||
86 | |||
87 | u32 radeon_get_scratch(drm_radeon_private_t *dev_priv, int index) | ||
88 | { | ||
89 | if (dev_priv->writeback_works) { | ||
90 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) | ||
91 | return radeon_read_ring_rptr(dev_priv, | ||
92 | R600_SCRATCHOFF(index)); | ||
93 | else | ||
94 | return radeon_read_ring_rptr(dev_priv, | ||
95 | RADEON_SCRATCHOFF(index)); | ||
96 | } else { | ||
97 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) | ||
98 | return RADEON_READ(R600_SCRATCH_REG0 + 4*index); | ||
99 | else | ||
100 | return RADEON_READ(RADEON_SCRATCH_REG0 + 4*index); | ||
101 | } | ||
102 | } | ||
103 | |||
104 | u32 RADEON_READ_MM(drm_radeon_private_t *dev_priv, int addr) | ||
105 | { | ||
106 | u32 ret; | ||
107 | |||
108 | if (addr < 0x10000) | ||
109 | ret = DRM_READ32(dev_priv->mmio, addr); | ||
110 | else { | ||
111 | DRM_WRITE32(dev_priv->mmio, RADEON_MM_INDEX, addr); | ||
112 | ret = DRM_READ32(dev_priv->mmio, RADEON_MM_DATA); | ||
113 | } | ||
114 | |||
115 | return ret; | ||
116 | } | ||
117 | |||
46 | static u32 R500_READ_MCIND(drm_radeon_private_t *dev_priv, int addr) | 118 | static u32 R500_READ_MCIND(drm_radeon_private_t *dev_priv, int addr) |
47 | { | 119 | { |
48 | u32 ret; | 120 | u32 ret; |
@@ -70,11 +142,22 @@ static u32 RS690_READ_MCIND(drm_radeon_private_t *dev_priv, int addr) | |||
70 | return ret; | 142 | return ret; |
71 | } | 143 | } |
72 | 144 | ||
145 | static u32 RS600_READ_MCIND(drm_radeon_private_t *dev_priv, int addr) | ||
146 | { | ||
147 | u32 ret; | ||
148 | RADEON_WRITE(RS600_MC_INDEX, ((addr & RS600_MC_ADDR_MASK) | | ||
149 | RS600_MC_IND_CITF_ARB0)); | ||
150 | ret = RADEON_READ(RS600_MC_DATA); | ||
151 | return ret; | ||
152 | } | ||
153 | |||
73 | static u32 IGP_READ_MCIND(drm_radeon_private_t *dev_priv, int addr) | 154 | static u32 IGP_READ_MCIND(drm_radeon_private_t *dev_priv, int addr) |
74 | { | 155 | { |
75 | if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS690) || | 156 | if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS690) || |
76 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS740)) | 157 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS740)) |
77 | return RS690_READ_MCIND(dev_priv, addr); | 158 | return RS690_READ_MCIND(dev_priv, addr); |
159 | else if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS600) | ||
160 | return RS600_READ_MCIND(dev_priv, addr); | ||
78 | else | 161 | else |
79 | return RS480_READ_MCIND(dev_priv, addr); | 162 | return RS480_READ_MCIND(dev_priv, addr); |
80 | } | 163 | } |
@@ -82,11 +165,17 @@ static u32 IGP_READ_MCIND(drm_radeon_private_t *dev_priv, int addr) | |||
82 | u32 radeon_read_fb_location(drm_radeon_private_t *dev_priv) | 165 | u32 radeon_read_fb_location(drm_radeon_private_t *dev_priv) |
83 | { | 166 | { |
84 | 167 | ||
85 | if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV515) | 168 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RV770) |
169 | return RADEON_READ(R700_MC_VM_FB_LOCATION); | ||
170 | else if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) | ||
171 | return RADEON_READ(R600_MC_VM_FB_LOCATION); | ||
172 | else if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV515) | ||
86 | return R500_READ_MCIND(dev_priv, RV515_MC_FB_LOCATION); | 173 | return R500_READ_MCIND(dev_priv, RV515_MC_FB_LOCATION); |
87 | else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS690) || | 174 | else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS690) || |
88 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS740)) | 175 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS740)) |
89 | return RS690_READ_MCIND(dev_priv, RS690_MC_FB_LOCATION); | 176 | return RS690_READ_MCIND(dev_priv, RS690_MC_FB_LOCATION); |
177 | else if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS600) | ||
178 | return RS600_READ_MCIND(dev_priv, RS600_MC_FB_LOCATION); | ||
90 | else if ((dev_priv->flags & RADEON_FAMILY_MASK) > CHIP_RV515) | 179 | else if ((dev_priv->flags & RADEON_FAMILY_MASK) > CHIP_RV515) |
91 | return R500_READ_MCIND(dev_priv, R520_MC_FB_LOCATION); | 180 | return R500_READ_MCIND(dev_priv, R520_MC_FB_LOCATION); |
92 | else | 181 | else |
@@ -95,42 +184,66 @@ u32 radeon_read_fb_location(drm_radeon_private_t *dev_priv) | |||
95 | 184 | ||
96 | static void radeon_write_fb_location(drm_radeon_private_t *dev_priv, u32 fb_loc) | 185 | static void radeon_write_fb_location(drm_radeon_private_t *dev_priv, u32 fb_loc) |
97 | { | 186 | { |
98 | if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV515) | 187 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RV770) |
188 | RADEON_WRITE(R700_MC_VM_FB_LOCATION, fb_loc); | ||
189 | else if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) | ||
190 | RADEON_WRITE(R600_MC_VM_FB_LOCATION, fb_loc); | ||
191 | else if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV515) | ||
99 | R500_WRITE_MCIND(RV515_MC_FB_LOCATION, fb_loc); | 192 | R500_WRITE_MCIND(RV515_MC_FB_LOCATION, fb_loc); |
100 | else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS690) || | 193 | else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS690) || |
101 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS740)) | 194 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS740)) |
102 | RS690_WRITE_MCIND(RS690_MC_FB_LOCATION, fb_loc); | 195 | RS690_WRITE_MCIND(RS690_MC_FB_LOCATION, fb_loc); |
196 | else if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS600) | ||
197 | RS600_WRITE_MCIND(RS600_MC_FB_LOCATION, fb_loc); | ||
103 | else if ((dev_priv->flags & RADEON_FAMILY_MASK) > CHIP_RV515) | 198 | else if ((dev_priv->flags & RADEON_FAMILY_MASK) > CHIP_RV515) |
104 | R500_WRITE_MCIND(R520_MC_FB_LOCATION, fb_loc); | 199 | R500_WRITE_MCIND(R520_MC_FB_LOCATION, fb_loc); |
105 | else | 200 | else |
106 | RADEON_WRITE(RADEON_MC_FB_LOCATION, fb_loc); | 201 | RADEON_WRITE(RADEON_MC_FB_LOCATION, fb_loc); |
107 | } | 202 | } |
108 | 203 | ||
109 | static void radeon_write_agp_location(drm_radeon_private_t *dev_priv, u32 agp_loc) | 204 | void radeon_write_agp_location(drm_radeon_private_t *dev_priv, u32 agp_loc) |
110 | { | 205 | { |
111 | if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV515) | 206 | /*R6xx/R7xx: AGP_TOP and BOT are actually 18 bits each */ |
207 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RV770) { | ||
208 | RADEON_WRITE(R700_MC_VM_AGP_BOT, agp_loc & 0xffff); /* FIX ME */ | ||
209 | RADEON_WRITE(R700_MC_VM_AGP_TOP, (agp_loc >> 16) & 0xffff); | ||
210 | } else if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) { | ||
211 | RADEON_WRITE(R600_MC_VM_AGP_BOT, agp_loc & 0xffff); /* FIX ME */ | ||
212 | RADEON_WRITE(R600_MC_VM_AGP_TOP, (agp_loc >> 16) & 0xffff); | ||
213 | } else if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV515) | ||
112 | R500_WRITE_MCIND(RV515_MC_AGP_LOCATION, agp_loc); | 214 | R500_WRITE_MCIND(RV515_MC_AGP_LOCATION, agp_loc); |
113 | else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS690) || | 215 | else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS690) || |
114 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS740)) | 216 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS740)) |
115 | RS690_WRITE_MCIND(RS690_MC_AGP_LOCATION, agp_loc); | 217 | RS690_WRITE_MCIND(RS690_MC_AGP_LOCATION, agp_loc); |
218 | else if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS600) | ||
219 | RS600_WRITE_MCIND(RS600_MC_AGP_LOCATION, agp_loc); | ||
116 | else if ((dev_priv->flags & RADEON_FAMILY_MASK) > CHIP_RV515) | 220 | else if ((dev_priv->flags & RADEON_FAMILY_MASK) > CHIP_RV515) |
117 | R500_WRITE_MCIND(R520_MC_AGP_LOCATION, agp_loc); | 221 | R500_WRITE_MCIND(R520_MC_AGP_LOCATION, agp_loc); |
118 | else | 222 | else |
119 | RADEON_WRITE(RADEON_MC_AGP_LOCATION, agp_loc); | 223 | RADEON_WRITE(RADEON_MC_AGP_LOCATION, agp_loc); |
120 | } | 224 | } |
121 | 225 | ||
122 | static void radeon_write_agp_base(drm_radeon_private_t *dev_priv, u64 agp_base) | 226 | void radeon_write_agp_base(drm_radeon_private_t *dev_priv, u64 agp_base) |
123 | { | 227 | { |
124 | u32 agp_base_hi = upper_32_bits(agp_base); | 228 | u32 agp_base_hi = upper_32_bits(agp_base); |
125 | u32 agp_base_lo = agp_base & 0xffffffff; | 229 | u32 agp_base_lo = agp_base & 0xffffffff; |
126 | 230 | u32 r6xx_agp_base = (agp_base >> 22) & 0x3ffff; | |
127 | if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV515) { | 231 | |
232 | /* R6xx/R7xx must be aligned to a 4MB boundry */ | ||
233 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RV770) | ||
234 | RADEON_WRITE(R700_MC_VM_AGP_BASE, r6xx_agp_base); | ||
235 | else if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) | ||
236 | RADEON_WRITE(R600_MC_VM_AGP_BASE, r6xx_agp_base); | ||
237 | else if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV515) { | ||
128 | R500_WRITE_MCIND(RV515_MC_AGP_BASE, agp_base_lo); | 238 | R500_WRITE_MCIND(RV515_MC_AGP_BASE, agp_base_lo); |
129 | R500_WRITE_MCIND(RV515_MC_AGP_BASE_2, agp_base_hi); | 239 | R500_WRITE_MCIND(RV515_MC_AGP_BASE_2, agp_base_hi); |
130 | } else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS690) || | 240 | } else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS690) || |
131 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS740)) { | 241 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS740)) { |
132 | RS690_WRITE_MCIND(RS690_MC_AGP_BASE, agp_base_lo); | 242 | RS690_WRITE_MCIND(RS690_MC_AGP_BASE, agp_base_lo); |
133 | RS690_WRITE_MCIND(RS690_MC_AGP_BASE_2, agp_base_hi); | 243 | RS690_WRITE_MCIND(RS690_MC_AGP_BASE_2, agp_base_hi); |
244 | } else if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS600) { | ||
245 | RS600_WRITE_MCIND(RS600_AGP_BASE, agp_base_lo); | ||
246 | RS600_WRITE_MCIND(RS600_AGP_BASE_2, agp_base_hi); | ||
134 | } else if ((dev_priv->flags & RADEON_FAMILY_MASK) > CHIP_RV515) { | 247 | } else if ((dev_priv->flags & RADEON_FAMILY_MASK) > CHIP_RV515) { |
135 | R500_WRITE_MCIND(R520_MC_AGP_BASE, agp_base_lo); | 248 | R500_WRITE_MCIND(R520_MC_AGP_BASE, agp_base_lo); |
136 | R500_WRITE_MCIND(R520_MC_AGP_BASE_2, agp_base_hi); | 249 | R500_WRITE_MCIND(R520_MC_AGP_BASE_2, agp_base_hi); |
@@ -145,6 +258,25 @@ static void radeon_write_agp_base(drm_radeon_private_t *dev_priv, u64 agp_base) | |||
145 | } | 258 | } |
146 | } | 259 | } |
147 | 260 | ||
261 | void radeon_enable_bm(struct drm_radeon_private *dev_priv) | ||
262 | { | ||
263 | u32 tmp; | ||
264 | /* Turn on bus mastering */ | ||
265 | if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS690) || | ||
266 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS740)) { | ||
267 | /* rs600/rs690/rs740 */ | ||
268 | tmp = RADEON_READ(RADEON_BUS_CNTL) & ~RS600_BUS_MASTER_DIS; | ||
269 | RADEON_WRITE(RADEON_BUS_CNTL, tmp); | ||
270 | } else if (((dev_priv->flags & RADEON_FAMILY_MASK) <= CHIP_RV350) || | ||
271 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_R420) || | ||
272 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS400) || | ||
273 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS480)) { | ||
274 | /* r1xx, r2xx, r300, r(v)350, r420/r481, rs400/rs480 */ | ||
275 | tmp = RADEON_READ(RADEON_BUS_CNTL) & ~RADEON_BUS_MASTER_DIS; | ||
276 | RADEON_WRITE(RADEON_BUS_CNTL, tmp); | ||
277 | } /* PCIE cards appears to not need this */ | ||
278 | } | ||
279 | |||
148 | static int RADEON_READ_PLL(struct drm_device * dev, int addr) | 280 | static int RADEON_READ_PLL(struct drm_device * dev, int addr) |
149 | { | 281 | { |
150 | drm_radeon_private_t *dev_priv = dev->dev_private; | 282 | drm_radeon_private_t *dev_priv = dev->dev_private; |
@@ -302,7 +434,7 @@ static void radeon_init_pipes(drm_radeon_private_t *dev_priv) | |||
302 | 434 | ||
303 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RV515) { | 435 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RV515) { |
304 | RADEON_WRITE_PLL(R500_DYN_SCLK_PWMEM_PIPE, (1 | ((gb_pipe_sel >> 8) & 0xf) << 4)); | 436 | RADEON_WRITE_PLL(R500_DYN_SCLK_PWMEM_PIPE, (1 | ((gb_pipe_sel >> 8) & 0xf) << 4)); |
305 | RADEON_WRITE(R500_SU_REG_DEST, ((1 << dev_priv->num_gb_pipes) - 1)); | 437 | RADEON_WRITE(R300_SU_REG_DEST, ((1 << dev_priv->num_gb_pipes) - 1)); |
306 | } | 438 | } |
307 | RADEON_WRITE(R300_GB_TILE_CONFIG, gb_tile_config); | 439 | RADEON_WRITE(R300_GB_TILE_CONFIG, gb_tile_config); |
308 | radeon_do_wait_for_idle(dev_priv); | 440 | radeon_do_wait_for_idle(dev_priv); |
@@ -382,6 +514,14 @@ static void radeon_cp_load_microcode(drm_radeon_private_t * dev_priv) | |||
382 | RADEON_WRITE(RADEON_CP_ME_RAM_DATAL, | 514 | RADEON_WRITE(RADEON_CP_ME_RAM_DATAL, |
383 | RS690_cp_microcode[i][0]); | 515 | RS690_cp_microcode[i][0]); |
384 | } | 516 | } |
517 | } else if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS600) { | ||
518 | DRM_INFO("Loading RS600 Microcode\n"); | ||
519 | for (i = 0; i < 256; i++) { | ||
520 | RADEON_WRITE(RADEON_CP_ME_RAM_DATAH, | ||
521 | RS600_cp_microcode[i][1]); | ||
522 | RADEON_WRITE(RADEON_CP_ME_RAM_DATAL, | ||
523 | RS600_cp_microcode[i][0]); | ||
524 | } | ||
385 | } else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV515) || | 525 | } else if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV515) || |
386 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_R520) || | 526 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_R520) || |
387 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV530) || | 527 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV530) || |
@@ -562,7 +702,6 @@ static void radeon_cp_init_ring_buffer(struct drm_device * dev, | |||
562 | { | 702 | { |
563 | struct drm_radeon_master_private *master_priv; | 703 | struct drm_radeon_master_private *master_priv; |
564 | u32 ring_start, cur_read_ptr; | 704 | u32 ring_start, cur_read_ptr; |
565 | u32 tmp; | ||
566 | 705 | ||
567 | /* Initialize the memory controller. With new memory map, the fb location | 706 | /* Initialize the memory controller. With new memory map, the fb location |
568 | * is not changed, it should have been properly initialized already. Part | 707 | * is not changed, it should have been properly initialized already. Part |
@@ -611,17 +750,10 @@ static void radeon_cp_init_ring_buffer(struct drm_device * dev, | |||
611 | } else | 750 | } else |
612 | #endif | 751 | #endif |
613 | { | 752 | { |
614 | struct drm_sg_mem *entry = dev->sg; | 753 | RADEON_WRITE(RADEON_CP_RB_RPTR_ADDR, |
615 | unsigned long tmp_ofs, page_ofs; | 754 | dev_priv->ring_rptr->offset |
616 | 755 | - ((unsigned long) dev->sg->virtual) | |
617 | tmp_ofs = dev_priv->ring_rptr->offset - | 756 | + dev_priv->gart_vm_start); |
618 | (unsigned long)dev->sg->virtual; | ||
619 | page_ofs = tmp_ofs >> PAGE_SHIFT; | ||
620 | |||
621 | RADEON_WRITE(RADEON_CP_RB_RPTR_ADDR, entry->busaddr[page_ofs]); | ||
622 | DRM_DEBUG("ring rptr: offset=0x%08lx handle=0x%08lx\n", | ||
623 | (unsigned long)entry->busaddr[page_ofs], | ||
624 | entry->handle + tmp_ofs); | ||
625 | } | 757 | } |
626 | 758 | ||
627 | /* Set ring buffer size */ | 759 | /* Set ring buffer size */ |
@@ -649,34 +781,17 @@ static void radeon_cp_init_ring_buffer(struct drm_device * dev, | |||
649 | RADEON_WRITE(RADEON_SCRATCH_ADDR, RADEON_READ(RADEON_CP_RB_RPTR_ADDR) | 781 | RADEON_WRITE(RADEON_SCRATCH_ADDR, RADEON_READ(RADEON_CP_RB_RPTR_ADDR) |
650 | + RADEON_SCRATCH_REG_OFFSET); | 782 | + RADEON_SCRATCH_REG_OFFSET); |
651 | 783 | ||
652 | dev_priv->scratch = ((__volatile__ u32 *) | ||
653 | dev_priv->ring_rptr->handle + | ||
654 | (RADEON_SCRATCH_REG_OFFSET / sizeof(u32))); | ||
655 | |||
656 | RADEON_WRITE(RADEON_SCRATCH_UMSK, 0x7); | 784 | RADEON_WRITE(RADEON_SCRATCH_UMSK, 0x7); |
657 | 785 | ||
658 | /* Turn on bus mastering */ | 786 | radeon_enable_bm(dev_priv); |
659 | if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS690) || | ||
660 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS740)) { | ||
661 | /* rs600/rs690/rs740 */ | ||
662 | tmp = RADEON_READ(RADEON_BUS_CNTL) & ~RS600_BUS_MASTER_DIS; | ||
663 | RADEON_WRITE(RADEON_BUS_CNTL, tmp); | ||
664 | } else if (((dev_priv->flags & RADEON_FAMILY_MASK) <= CHIP_RV350) || | ||
665 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_R420) || | ||
666 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS400) || | ||
667 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS480)) { | ||
668 | /* r1xx, r2xx, r300, r(v)350, r420/r481, rs400/rs480 */ | ||
669 | tmp = RADEON_READ(RADEON_BUS_CNTL) & ~RADEON_BUS_MASTER_DIS; | ||
670 | RADEON_WRITE(RADEON_BUS_CNTL, tmp); | ||
671 | } /* PCIE cards appears to not need this */ | ||
672 | 787 | ||
673 | dev_priv->scratch[0] = 0; | 788 | radeon_write_ring_rptr(dev_priv, RADEON_SCRATCHOFF(0), 0); |
674 | RADEON_WRITE(RADEON_LAST_FRAME_REG, 0); | 789 | RADEON_WRITE(RADEON_LAST_FRAME_REG, 0); |
675 | 790 | ||
676 | dev_priv->scratch[1] = 0; | 791 | radeon_write_ring_rptr(dev_priv, RADEON_SCRATCHOFF(1), 0); |
677 | RADEON_WRITE(RADEON_LAST_DISPATCH_REG, 0); | 792 | RADEON_WRITE(RADEON_LAST_DISPATCH_REG, 0); |
678 | 793 | ||
679 | dev_priv->scratch[2] = 0; | 794 | radeon_write_ring_rptr(dev_priv, RADEON_SCRATCHOFF(2), 0); |
680 | RADEON_WRITE(RADEON_LAST_CLEAR_REG, 0); | 795 | RADEON_WRITE(RADEON_LAST_CLEAR_REG, 0); |
681 | 796 | ||
682 | /* reset sarea copies of these */ | 797 | /* reset sarea copies of these */ |
@@ -708,12 +823,15 @@ static void radeon_test_writeback(drm_radeon_private_t * dev_priv) | |||
708 | /* Writeback doesn't seem to work everywhere, test it here and possibly | 823 | /* Writeback doesn't seem to work everywhere, test it here and possibly |
709 | * enable it if it appears to work | 824 | * enable it if it appears to work |
710 | */ | 825 | */ |
711 | DRM_WRITE32(dev_priv->ring_rptr, RADEON_SCRATCHOFF(1), 0); | 826 | radeon_write_ring_rptr(dev_priv, RADEON_SCRATCHOFF(1), 0); |
827 | |||
712 | RADEON_WRITE(RADEON_SCRATCH_REG1, 0xdeadbeef); | 828 | RADEON_WRITE(RADEON_SCRATCH_REG1, 0xdeadbeef); |
713 | 829 | ||
714 | for (tmp = 0; tmp < dev_priv->usec_timeout; tmp++) { | 830 | for (tmp = 0; tmp < dev_priv->usec_timeout; tmp++) { |
715 | if (DRM_READ32(dev_priv->ring_rptr, RADEON_SCRATCHOFF(1)) == | 831 | u32 val; |
716 | 0xdeadbeef) | 832 | |
833 | val = radeon_read_ring_rptr(dev_priv, RADEON_SCRATCHOFF(1)); | ||
834 | if (val == 0xdeadbeef) | ||
717 | break; | 835 | break; |
718 | DRM_UDELAY(1); | 836 | DRM_UDELAY(1); |
719 | } | 837 | } |
@@ -809,6 +927,82 @@ static void radeon_set_igpgart(drm_radeon_private_t * dev_priv, int on) | |||
809 | } | 927 | } |
810 | } | 928 | } |
811 | 929 | ||
930 | /* Enable or disable IGP GART on the chip */ | ||
931 | static void rs600_set_igpgart(drm_radeon_private_t *dev_priv, int on) | ||
932 | { | ||
933 | u32 temp; | ||
934 | int i; | ||
935 | |||
936 | if (on) { | ||
937 | DRM_DEBUG("programming igp gart %08X %08lX %08X\n", | ||
938 | dev_priv->gart_vm_start, | ||
939 | (long)dev_priv->gart_info.bus_addr, | ||
940 | dev_priv->gart_size); | ||
941 | |||
942 | IGP_WRITE_MCIND(RS600_MC_PT0_CNTL, (RS600_EFFECTIVE_L2_CACHE_SIZE(6) | | ||
943 | RS600_EFFECTIVE_L2_QUEUE_SIZE(6))); | ||
944 | |||
945 | for (i = 0; i < 19; i++) | ||
946 | IGP_WRITE_MCIND(RS600_MC_PT0_CLIENT0_CNTL + i, | ||
947 | (RS600_ENABLE_TRANSLATION_MODE_OVERRIDE | | ||
948 | RS600_SYSTEM_ACCESS_MODE_IN_SYS | | ||
949 | RS600_SYSTEM_APERTURE_UNMAPPED_ACCESS_PASSTHROUGH | | ||
950 | RS600_EFFECTIVE_L1_CACHE_SIZE(3) | | ||
951 | RS600_ENABLE_FRAGMENT_PROCESSING | | ||
952 | RS600_EFFECTIVE_L1_QUEUE_SIZE(3))); | ||
953 | |||
954 | IGP_WRITE_MCIND(RS600_MC_PT0_CONTEXT0_CNTL, (RS600_ENABLE_PAGE_TABLE | | ||
955 | RS600_PAGE_TABLE_TYPE_FLAT)); | ||
956 | |||
957 | /* disable all other contexts */ | ||
958 | for (i = 1; i < 8; i++) | ||
959 | IGP_WRITE_MCIND(RS600_MC_PT0_CONTEXT0_CNTL + i, 0); | ||
960 | |||
961 | /* setup the page table aperture */ | ||
962 | IGP_WRITE_MCIND(RS600_MC_PT0_CONTEXT0_FLAT_BASE_ADDR, | ||
963 | dev_priv->gart_info.bus_addr); | ||
964 | IGP_WRITE_MCIND(RS600_MC_PT0_CONTEXT0_FLAT_START_ADDR, | ||
965 | dev_priv->gart_vm_start); | ||
966 | IGP_WRITE_MCIND(RS600_MC_PT0_CONTEXT0_FLAT_END_ADDR, | ||
967 | (dev_priv->gart_vm_start + dev_priv->gart_size - 1)); | ||
968 | IGP_WRITE_MCIND(RS600_MC_PT0_CONTEXT0_DEFAULT_READ_ADDR, 0); | ||
969 | |||
970 | /* setup the system aperture */ | ||
971 | IGP_WRITE_MCIND(RS600_MC_PT0_SYSTEM_APERTURE_LOW_ADDR, | ||
972 | dev_priv->gart_vm_start); | ||
973 | IGP_WRITE_MCIND(RS600_MC_PT0_SYSTEM_APERTURE_HIGH_ADDR, | ||
974 | (dev_priv->gart_vm_start + dev_priv->gart_size - 1)); | ||
975 | |||
976 | /* enable page tables */ | ||
977 | temp = IGP_READ_MCIND(dev_priv, RS600_MC_PT0_CNTL); | ||
978 | IGP_WRITE_MCIND(RS600_MC_PT0_CNTL, (temp | RS600_ENABLE_PT)); | ||
979 | |||
980 | temp = IGP_READ_MCIND(dev_priv, RS600_MC_CNTL1); | ||
981 | IGP_WRITE_MCIND(RS600_MC_CNTL1, (temp | RS600_ENABLE_PAGE_TABLES)); | ||
982 | |||
983 | /* invalidate the cache */ | ||
984 | temp = IGP_READ_MCIND(dev_priv, RS600_MC_PT0_CNTL); | ||
985 | |||
986 | temp &= ~(RS600_INVALIDATE_ALL_L1_TLBS | RS600_INVALIDATE_L2_CACHE); | ||
987 | IGP_WRITE_MCIND(RS600_MC_PT0_CNTL, temp); | ||
988 | temp = IGP_READ_MCIND(dev_priv, RS600_MC_PT0_CNTL); | ||
989 | |||
990 | temp |= RS600_INVALIDATE_ALL_L1_TLBS | RS600_INVALIDATE_L2_CACHE; | ||
991 | IGP_WRITE_MCIND(RS600_MC_PT0_CNTL, temp); | ||
992 | temp = IGP_READ_MCIND(dev_priv, RS600_MC_PT0_CNTL); | ||
993 | |||
994 | temp &= ~(RS600_INVALIDATE_ALL_L1_TLBS | RS600_INVALIDATE_L2_CACHE); | ||
995 | IGP_WRITE_MCIND(RS600_MC_PT0_CNTL, temp); | ||
996 | temp = IGP_READ_MCIND(dev_priv, RS600_MC_PT0_CNTL); | ||
997 | |||
998 | } else { | ||
999 | IGP_WRITE_MCIND(RS600_MC_PT0_CNTL, 0); | ||
1000 | temp = IGP_READ_MCIND(dev_priv, RS600_MC_CNTL1); | ||
1001 | temp &= ~RS600_ENABLE_PAGE_TABLES; | ||
1002 | IGP_WRITE_MCIND(RS600_MC_CNTL1, temp); | ||
1003 | } | ||
1004 | } | ||
1005 | |||
812 | static void radeon_set_pciegart(drm_radeon_private_t * dev_priv, int on) | 1006 | static void radeon_set_pciegart(drm_radeon_private_t * dev_priv, int on) |
813 | { | 1007 | { |
814 | u32 tmp = RADEON_READ_PCIE(dev_priv, RADEON_PCIE_TX_GART_CNTL); | 1008 | u32 tmp = RADEON_READ_PCIE(dev_priv, RADEON_PCIE_TX_GART_CNTL); |
@@ -850,6 +1044,11 @@ static void radeon_set_pcigart(drm_radeon_private_t * dev_priv, int on) | |||
850 | return; | 1044 | return; |
851 | } | 1045 | } |
852 | 1046 | ||
1047 | if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS600) { | ||
1048 | rs600_set_igpgart(dev_priv, on); | ||
1049 | return; | ||
1050 | } | ||
1051 | |||
853 | if (dev_priv->flags & RADEON_IS_PCIE) { | 1052 | if (dev_priv->flags & RADEON_IS_PCIE) { |
854 | radeon_set_pciegart(dev_priv, on); | 1053 | radeon_set_pciegart(dev_priv, on); |
855 | return; | 1054 | return; |
@@ -881,6 +1080,46 @@ static void radeon_set_pcigart(drm_radeon_private_t * dev_priv, int on) | |||
881 | } | 1080 | } |
882 | } | 1081 | } |
883 | 1082 | ||
1083 | static int radeon_setup_pcigart_surface(drm_radeon_private_t *dev_priv) | ||
1084 | { | ||
1085 | struct drm_ati_pcigart_info *gart_info = &dev_priv->gart_info; | ||
1086 | struct radeon_virt_surface *vp; | ||
1087 | int i; | ||
1088 | |||
1089 | for (i = 0; i < RADEON_MAX_SURFACES * 2; i++) { | ||
1090 | if (!dev_priv->virt_surfaces[i].file_priv || | ||
1091 | dev_priv->virt_surfaces[i].file_priv == PCIGART_FILE_PRIV) | ||
1092 | break; | ||
1093 | } | ||
1094 | if (i >= 2 * RADEON_MAX_SURFACES) | ||
1095 | return -ENOMEM; | ||
1096 | vp = &dev_priv->virt_surfaces[i]; | ||
1097 | |||
1098 | for (i = 0; i < RADEON_MAX_SURFACES; i++) { | ||
1099 | struct radeon_surface *sp = &dev_priv->surfaces[i]; | ||
1100 | if (sp->refcount) | ||
1101 | continue; | ||
1102 | |||
1103 | vp->surface_index = i; | ||
1104 | vp->lower = gart_info->bus_addr; | ||
1105 | vp->upper = vp->lower + gart_info->table_size; | ||
1106 | vp->flags = 0; | ||
1107 | vp->file_priv = PCIGART_FILE_PRIV; | ||
1108 | |||
1109 | sp->refcount = 1; | ||
1110 | sp->lower = vp->lower; | ||
1111 | sp->upper = vp->upper; | ||
1112 | sp->flags = 0; | ||
1113 | |||
1114 | RADEON_WRITE(RADEON_SURFACE0_INFO + 16 * i, sp->flags); | ||
1115 | RADEON_WRITE(RADEON_SURFACE0_LOWER_BOUND + 16 * i, sp->lower); | ||
1116 | RADEON_WRITE(RADEON_SURFACE0_UPPER_BOUND + 16 * i, sp->upper); | ||
1117 | return 0; | ||
1118 | } | ||
1119 | |||
1120 | return -ENOMEM; | ||
1121 | } | ||
1122 | |||
884 | static int radeon_do_init_cp(struct drm_device *dev, drm_radeon_init_t *init, | 1123 | static int radeon_do_init_cp(struct drm_device *dev, drm_radeon_init_t *init, |
885 | struct drm_file *file_priv) | 1124 | struct drm_file *file_priv) |
886 | { | 1125 | { |
@@ -1062,11 +1301,12 @@ static int radeon_do_init_cp(struct drm_device *dev, drm_radeon_init_t *init, | |||
1062 | } else | 1301 | } else |
1063 | #endif | 1302 | #endif |
1064 | { | 1303 | { |
1065 | dev_priv->cp_ring->handle = (void *)dev_priv->cp_ring->offset; | 1304 | dev_priv->cp_ring->handle = |
1305 | (void *)(unsigned long)dev_priv->cp_ring->offset; | ||
1066 | dev_priv->ring_rptr->handle = | 1306 | dev_priv->ring_rptr->handle = |
1067 | (void *)dev_priv->ring_rptr->offset; | 1307 | (void *)(unsigned long)dev_priv->ring_rptr->offset; |
1068 | dev->agp_buffer_map->handle = | 1308 | dev->agp_buffer_map->handle = |
1069 | (void *)dev->agp_buffer_map->offset; | 1309 | (void *)(unsigned long)dev->agp_buffer_map->offset; |
1070 | 1310 | ||
1071 | DRM_DEBUG("dev_priv->cp_ring->handle %p\n", | 1311 | DRM_DEBUG("dev_priv->cp_ring->handle %p\n", |
1072 | dev_priv->cp_ring->handle); | 1312 | dev_priv->cp_ring->handle); |
@@ -1173,11 +1413,14 @@ static int radeon_do_init_cp(struct drm_device *dev, drm_radeon_init_t *init, | |||
1173 | } else | 1413 | } else |
1174 | #endif | 1414 | #endif |
1175 | { | 1415 | { |
1416 | u32 sctrl; | ||
1417 | int ret; | ||
1418 | |||
1176 | dev_priv->gart_info.table_mask = DMA_BIT_MASK(32); | 1419 | dev_priv->gart_info.table_mask = DMA_BIT_MASK(32); |
1177 | /* if we have an offset set from userspace */ | 1420 | /* if we have an offset set from userspace */ |
1178 | if (dev_priv->pcigart_offset_set) { | 1421 | if (dev_priv->pcigart_offset_set) { |
1179 | dev_priv->gart_info.bus_addr = | 1422 | dev_priv->gart_info.bus_addr = |
1180 | dev_priv->pcigart_offset + dev_priv->fb_location; | 1423 | (resource_size_t)dev_priv->pcigart_offset + dev_priv->fb_location; |
1181 | dev_priv->gart_info.mapping.offset = | 1424 | dev_priv->gart_info.mapping.offset = |
1182 | dev_priv->pcigart_offset + dev_priv->fb_aper_offset; | 1425 | dev_priv->pcigart_offset + dev_priv->fb_aper_offset; |
1183 | dev_priv->gart_info.mapping.size = | 1426 | dev_priv->gart_info.mapping.size = |
@@ -1214,12 +1457,31 @@ static int radeon_do_init_cp(struct drm_device *dev, drm_radeon_init_t *init, | |||
1214 | } | 1457 | } |
1215 | } | 1458 | } |
1216 | 1459 | ||
1217 | if (!drm_ati_pcigart_init(dev, &dev_priv->gart_info)) { | 1460 | sctrl = RADEON_READ(RADEON_SURFACE_CNTL); |
1461 | RADEON_WRITE(RADEON_SURFACE_CNTL, 0); | ||
1462 | if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS600) | ||
1463 | ret = r600_page_table_init(dev); | ||
1464 | else | ||
1465 | ret = drm_ati_pcigart_init(dev, &dev_priv->gart_info); | ||
1466 | RADEON_WRITE(RADEON_SURFACE_CNTL, sctrl); | ||
1467 | |||
1468 | if (!ret) { | ||
1218 | DRM_ERROR("failed to init PCI GART!\n"); | 1469 | DRM_ERROR("failed to init PCI GART!\n"); |
1219 | radeon_do_cleanup_cp(dev); | 1470 | radeon_do_cleanup_cp(dev); |
1220 | return -ENOMEM; | 1471 | return -ENOMEM; |
1221 | } | 1472 | } |
1222 | 1473 | ||
1474 | ret = radeon_setup_pcigart_surface(dev_priv); | ||
1475 | if (ret) { | ||
1476 | DRM_ERROR("failed to setup GART surface!\n"); | ||
1477 | if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS600) | ||
1478 | r600_page_table_cleanup(dev, &dev_priv->gart_info); | ||
1479 | else | ||
1480 | drm_ati_pcigart_cleanup(dev, &dev_priv->gart_info); | ||
1481 | radeon_do_cleanup_cp(dev); | ||
1482 | return ret; | ||
1483 | } | ||
1484 | |||
1223 | /* Turn on PCI GART */ | 1485 | /* Turn on PCI GART */ |
1224 | radeon_set_pcigart(dev_priv, 1); | 1486 | radeon_set_pcigart(dev_priv, 1); |
1225 | } | 1487 | } |
@@ -1268,14 +1530,18 @@ static int radeon_do_cleanup_cp(struct drm_device * dev) | |||
1268 | if (dev_priv->gart_info.bus_addr) { | 1530 | if (dev_priv->gart_info.bus_addr) { |
1269 | /* Turn off PCI GART */ | 1531 | /* Turn off PCI GART */ |
1270 | radeon_set_pcigart(dev_priv, 0); | 1532 | radeon_set_pcigart(dev_priv, 0); |
1271 | if (!drm_ati_pcigart_cleanup(dev, &dev_priv->gart_info)) | 1533 | if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS600) |
1272 | DRM_ERROR("failed to cleanup PCI GART!\n"); | 1534 | r600_page_table_cleanup(dev, &dev_priv->gart_info); |
1535 | else { | ||
1536 | if (!drm_ati_pcigart_cleanup(dev, &dev_priv->gart_info)) | ||
1537 | DRM_ERROR("failed to cleanup PCI GART!\n"); | ||
1538 | } | ||
1273 | } | 1539 | } |
1274 | 1540 | ||
1275 | if (dev_priv->gart_info.gart_table_location == DRM_ATI_GART_FB) | 1541 | if (dev_priv->gart_info.gart_table_location == DRM_ATI_GART_FB) |
1276 | { | 1542 | { |
1277 | drm_core_ioremapfree(&dev_priv->gart_info.mapping, dev); | 1543 | drm_core_ioremapfree(&dev_priv->gart_info.mapping, dev); |
1278 | dev_priv->gart_info.addr = 0; | 1544 | dev_priv->gart_info.addr = NULL; |
1279 | } | 1545 | } |
1280 | } | 1546 | } |
1281 | /* only clear to the start of flags */ | 1547 | /* only clear to the start of flags */ |
@@ -1326,6 +1592,7 @@ static int radeon_do_resume_cp(struct drm_device *dev, struct drm_file *file_pri | |||
1326 | 1592 | ||
1327 | int radeon_cp_init(struct drm_device *dev, void *data, struct drm_file *file_priv) | 1593 | int radeon_cp_init(struct drm_device *dev, void *data, struct drm_file *file_priv) |
1328 | { | 1594 | { |
1595 | drm_radeon_private_t *dev_priv = dev->dev_private; | ||
1329 | drm_radeon_init_t *init = data; | 1596 | drm_radeon_init_t *init = data; |
1330 | 1597 | ||
1331 | LOCK_TEST_WITH_RETURN(dev, file_priv); | 1598 | LOCK_TEST_WITH_RETURN(dev, file_priv); |
@@ -1338,8 +1605,13 @@ int radeon_cp_init(struct drm_device *dev, void *data, struct drm_file *file_pri | |||
1338 | case RADEON_INIT_R200_CP: | 1605 | case RADEON_INIT_R200_CP: |
1339 | case RADEON_INIT_R300_CP: | 1606 | case RADEON_INIT_R300_CP: |
1340 | return radeon_do_init_cp(dev, init, file_priv); | 1607 | return radeon_do_init_cp(dev, init, file_priv); |
1608 | case RADEON_INIT_R600_CP: | ||
1609 | return r600_do_init_cp(dev, init, file_priv); | ||
1341 | case RADEON_CLEANUP_CP: | 1610 | case RADEON_CLEANUP_CP: |
1342 | return radeon_do_cleanup_cp(dev); | 1611 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) |
1612 | return r600_do_cleanup_cp(dev); | ||
1613 | else | ||
1614 | return radeon_do_cleanup_cp(dev); | ||
1343 | } | 1615 | } |
1344 | 1616 | ||
1345 | return -EINVAL; | 1617 | return -EINVAL; |
@@ -1362,7 +1634,10 @@ int radeon_cp_start(struct drm_device *dev, void *data, struct drm_file *file_pr | |||
1362 | return 0; | 1634 | return 0; |
1363 | } | 1635 | } |
1364 | 1636 | ||
1365 | radeon_do_cp_start(dev_priv); | 1637 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) |
1638 | r600_do_cp_start(dev_priv); | ||
1639 | else | ||
1640 | radeon_do_cp_start(dev_priv); | ||
1366 | 1641 | ||
1367 | return 0; | 1642 | return 0; |
1368 | } | 1643 | } |
@@ -1393,7 +1668,10 @@ int radeon_cp_stop(struct drm_device *dev, void *data, struct drm_file *file_pri | |||
1393 | * code so that the DRM ioctl wrapper can try again. | 1668 | * code so that the DRM ioctl wrapper can try again. |
1394 | */ | 1669 | */ |
1395 | if (stop->idle) { | 1670 | if (stop->idle) { |
1396 | ret = radeon_do_cp_idle(dev_priv); | 1671 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) |
1672 | ret = r600_do_cp_idle(dev_priv); | ||
1673 | else | ||
1674 | ret = radeon_do_cp_idle(dev_priv); | ||
1397 | if (ret) | 1675 | if (ret) |
1398 | return ret; | 1676 | return ret; |
1399 | } | 1677 | } |
@@ -1402,10 +1680,16 @@ int radeon_cp_stop(struct drm_device *dev, void *data, struct drm_file *file_pri | |||
1402 | * we will get some dropped triangles as they won't be fully | 1680 | * we will get some dropped triangles as they won't be fully |
1403 | * rendered before the CP is shut down. | 1681 | * rendered before the CP is shut down. |
1404 | */ | 1682 | */ |
1405 | radeon_do_cp_stop(dev_priv); | 1683 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) |
1684 | r600_do_cp_stop(dev_priv); | ||
1685 | else | ||
1686 | radeon_do_cp_stop(dev_priv); | ||
1406 | 1687 | ||
1407 | /* Reset the engine */ | 1688 | /* Reset the engine */ |
1408 | radeon_do_engine_reset(dev); | 1689 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) |
1690 | r600_do_engine_reset(dev); | ||
1691 | else | ||
1692 | radeon_do_engine_reset(dev); | ||
1409 | 1693 | ||
1410 | return 0; | 1694 | return 0; |
1411 | } | 1695 | } |
@@ -1418,29 +1702,47 @@ void radeon_do_release(struct drm_device * dev) | |||
1418 | if (dev_priv) { | 1702 | if (dev_priv) { |
1419 | if (dev_priv->cp_running) { | 1703 | if (dev_priv->cp_running) { |
1420 | /* Stop the cp */ | 1704 | /* Stop the cp */ |
1421 | while ((ret = radeon_do_cp_idle(dev_priv)) != 0) { | 1705 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) { |
1422 | DRM_DEBUG("radeon_do_cp_idle %d\n", ret); | 1706 | while ((ret = r600_do_cp_idle(dev_priv)) != 0) { |
1707 | DRM_DEBUG("radeon_do_cp_idle %d\n", ret); | ||
1708 | #ifdef __linux__ | ||
1709 | schedule(); | ||
1710 | #else | ||
1711 | tsleep(&ret, PZERO, "rdnrel", 1); | ||
1712 | #endif | ||
1713 | } | ||
1714 | } else { | ||
1715 | while ((ret = radeon_do_cp_idle(dev_priv)) != 0) { | ||
1716 | DRM_DEBUG("radeon_do_cp_idle %d\n", ret); | ||
1423 | #ifdef __linux__ | 1717 | #ifdef __linux__ |
1424 | schedule(); | 1718 | schedule(); |
1425 | #else | 1719 | #else |
1426 | tsleep(&ret, PZERO, "rdnrel", 1); | 1720 | tsleep(&ret, PZERO, "rdnrel", 1); |
1427 | #endif | 1721 | #endif |
1722 | } | ||
1723 | } | ||
1724 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) { | ||
1725 | r600_do_cp_stop(dev_priv); | ||
1726 | r600_do_engine_reset(dev); | ||
1727 | } else { | ||
1728 | radeon_do_cp_stop(dev_priv); | ||
1729 | radeon_do_engine_reset(dev); | ||
1428 | } | 1730 | } |
1429 | radeon_do_cp_stop(dev_priv); | ||
1430 | radeon_do_engine_reset(dev); | ||
1431 | } | 1731 | } |
1432 | 1732 | ||
1433 | /* Disable *all* interrupts */ | 1733 | if ((dev_priv->flags & RADEON_FAMILY_MASK) < CHIP_R600) { |
1434 | if (dev_priv->mmio) /* remove this after permanent addmaps */ | 1734 | /* Disable *all* interrupts */ |
1435 | RADEON_WRITE(RADEON_GEN_INT_CNTL, 0); | 1735 | if (dev_priv->mmio) /* remove this after permanent addmaps */ |
1436 | 1736 | RADEON_WRITE(RADEON_GEN_INT_CNTL, 0); | |
1437 | if (dev_priv->mmio) { /* remove all surfaces */ | 1737 | |
1438 | for (i = 0; i < RADEON_MAX_SURFACES; i++) { | 1738 | if (dev_priv->mmio) { /* remove all surfaces */ |
1439 | RADEON_WRITE(RADEON_SURFACE0_INFO + 16 * i, 0); | 1739 | for (i = 0; i < RADEON_MAX_SURFACES; i++) { |
1440 | RADEON_WRITE(RADEON_SURFACE0_LOWER_BOUND + | 1740 | RADEON_WRITE(RADEON_SURFACE0_INFO + 16 * i, 0); |
1441 | 16 * i, 0); | 1741 | RADEON_WRITE(RADEON_SURFACE0_LOWER_BOUND + |
1442 | RADEON_WRITE(RADEON_SURFACE0_UPPER_BOUND + | 1742 | 16 * i, 0); |
1443 | 16 * i, 0); | 1743 | RADEON_WRITE(RADEON_SURFACE0_UPPER_BOUND + |
1744 | 16 * i, 0); | ||
1745 | } | ||
1444 | } | 1746 | } |
1445 | } | 1747 | } |
1446 | 1748 | ||
@@ -1449,7 +1751,10 @@ void radeon_do_release(struct drm_device * dev) | |||
1449 | radeon_mem_takedown(&(dev_priv->fb_heap)); | 1751 | radeon_mem_takedown(&(dev_priv->fb_heap)); |
1450 | 1752 | ||
1451 | /* deallocate kernel resources */ | 1753 | /* deallocate kernel resources */ |
1452 | radeon_do_cleanup_cp(dev); | 1754 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) |
1755 | r600_do_cleanup_cp(dev); | ||
1756 | else | ||
1757 | radeon_do_cleanup_cp(dev); | ||
1453 | } | 1758 | } |
1454 | } | 1759 | } |
1455 | 1760 | ||
@@ -1467,7 +1772,10 @@ int radeon_cp_reset(struct drm_device *dev, void *data, struct drm_file *file_pr | |||
1467 | return -EINVAL; | 1772 | return -EINVAL; |
1468 | } | 1773 | } |
1469 | 1774 | ||
1470 | radeon_do_cp_reset(dev_priv); | 1775 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) |
1776 | r600_do_cp_reset(dev_priv); | ||
1777 | else | ||
1778 | radeon_do_cp_reset(dev_priv); | ||
1471 | 1779 | ||
1472 | /* The CP is no longer running after an engine reset */ | 1780 | /* The CP is no longer running after an engine reset */ |
1473 | dev_priv->cp_running = 0; | 1781 | dev_priv->cp_running = 0; |
@@ -1482,23 +1790,36 @@ int radeon_cp_idle(struct drm_device *dev, void *data, struct drm_file *file_pri | |||
1482 | 1790 | ||
1483 | LOCK_TEST_WITH_RETURN(dev, file_priv); | 1791 | LOCK_TEST_WITH_RETURN(dev, file_priv); |
1484 | 1792 | ||
1485 | return radeon_do_cp_idle(dev_priv); | 1793 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) |
1794 | return r600_do_cp_idle(dev_priv); | ||
1795 | else | ||
1796 | return radeon_do_cp_idle(dev_priv); | ||
1486 | } | 1797 | } |
1487 | 1798 | ||
1488 | /* Added by Charl P. Botha to call radeon_do_resume_cp(). | 1799 | /* Added by Charl P. Botha to call radeon_do_resume_cp(). |
1489 | */ | 1800 | */ |
1490 | int radeon_cp_resume(struct drm_device *dev, void *data, struct drm_file *file_priv) | 1801 | int radeon_cp_resume(struct drm_device *dev, void *data, struct drm_file *file_priv) |
1491 | { | 1802 | { |
1492 | return radeon_do_resume_cp(dev, file_priv); | 1803 | drm_radeon_private_t *dev_priv = dev->dev_private; |
1804 | DRM_DEBUG("\n"); | ||
1805 | |||
1806 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) | ||
1807 | return r600_do_resume_cp(dev, file_priv); | ||
1808 | else | ||
1809 | return radeon_do_resume_cp(dev, file_priv); | ||
1493 | } | 1810 | } |
1494 | 1811 | ||
1495 | int radeon_engine_reset(struct drm_device *dev, void *data, struct drm_file *file_priv) | 1812 | int radeon_engine_reset(struct drm_device *dev, void *data, struct drm_file *file_priv) |
1496 | { | 1813 | { |
1814 | drm_radeon_private_t *dev_priv = dev->dev_private; | ||
1497 | DRM_DEBUG("\n"); | 1815 | DRM_DEBUG("\n"); |
1498 | 1816 | ||
1499 | LOCK_TEST_WITH_RETURN(dev, file_priv); | 1817 | LOCK_TEST_WITH_RETURN(dev, file_priv); |
1500 | 1818 | ||
1501 | return radeon_do_engine_reset(dev); | 1819 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) |
1820 | return r600_do_engine_reset(dev); | ||
1821 | else | ||
1822 | return radeon_do_engine_reset(dev); | ||
1502 | } | 1823 | } |
1503 | 1824 | ||
1504 | /* ================================================================ | 1825 | /* ================================================================ |
@@ -1548,7 +1869,7 @@ struct drm_buf *radeon_freelist_get(struct drm_device * dev) | |||
1548 | start = dev_priv->last_buf; | 1869 | start = dev_priv->last_buf; |
1549 | 1870 | ||
1550 | for (t = 0; t < dev_priv->usec_timeout; t++) { | 1871 | for (t = 0; t < dev_priv->usec_timeout; t++) { |
1551 | u32 done_age = GET_SCRATCH(1); | 1872 | u32 done_age = GET_SCRATCH(dev_priv, 1); |
1552 | DRM_DEBUG("done_age = %d\n", done_age); | 1873 | DRM_DEBUG("done_age = %d\n", done_age); |
1553 | for (i = start; i < dma->buf_count; i++) { | 1874 | for (i = start; i < dma->buf_count; i++) { |
1554 | buf = dma->buflist[i]; | 1875 | buf = dma->buflist[i]; |
@@ -1582,8 +1903,9 @@ struct drm_buf *radeon_freelist_get(struct drm_device * dev) | |||
1582 | struct drm_buf *buf; | 1903 | struct drm_buf *buf; |
1583 | int i, t; | 1904 | int i, t; |
1584 | int start; | 1905 | int start; |
1585 | u32 done_age = DRM_READ32(dev_priv->ring_rptr, RADEON_SCRATCHOFF(1)); | 1906 | u32 done_age; |
1586 | 1907 | ||
1908 | done_age = radeon_read_ring_rptr(dev_priv, RADEON_SCRATCHOFF(1)); | ||
1587 | if (++dev_priv->last_buf >= dma->buf_count) | 1909 | if (++dev_priv->last_buf >= dma->buf_count) |
1588 | dev_priv->last_buf = 0; | 1910 | dev_priv->last_buf = 0; |
1589 | 1911 | ||
@@ -1854,3 +2176,41 @@ int radeon_driver_unload(struct drm_device *dev) | |||
1854 | dev->dev_private = NULL; | 2176 | dev->dev_private = NULL; |
1855 | return 0; | 2177 | return 0; |
1856 | } | 2178 | } |
2179 | |||
2180 | void radeon_commit_ring(drm_radeon_private_t *dev_priv) | ||
2181 | { | ||
2182 | int i; | ||
2183 | u32 *ring; | ||
2184 | int tail_aligned; | ||
2185 | |||
2186 | /* check if the ring is padded out to 16-dword alignment */ | ||
2187 | |||
2188 | tail_aligned = dev_priv->ring.tail & 0xf; | ||
2189 | if (tail_aligned) { | ||
2190 | int num_p2 = 16 - tail_aligned; | ||
2191 | |||
2192 | ring = dev_priv->ring.start; | ||
2193 | /* pad with some CP_PACKET2 */ | ||
2194 | for (i = 0; i < num_p2; i++) | ||
2195 | ring[dev_priv->ring.tail + i] = CP_PACKET2(); | ||
2196 | |||
2197 | dev_priv->ring.tail += i; | ||
2198 | |||
2199 | dev_priv->ring.space -= num_p2 * sizeof(u32); | ||
2200 | } | ||
2201 | |||
2202 | dev_priv->ring.tail &= dev_priv->ring.tail_mask; | ||
2203 | |||
2204 | DRM_MEMORYBARRIER(); | ||
2205 | GET_RING_HEAD( dev_priv ); | ||
2206 | |||
2207 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) { | ||
2208 | RADEON_WRITE(R600_CP_RB_WPTR, dev_priv->ring.tail); | ||
2209 | /* read from PCI bus to ensure correct posting */ | ||
2210 | RADEON_READ(R600_CP_RB_RPTR); | ||
2211 | } else { | ||
2212 | RADEON_WRITE(RADEON_CP_RB_WPTR, dev_priv->ring.tail); | ||
2213 | /* read from PCI bus to ensure correct posting */ | ||
2214 | RADEON_READ(RADEON_CP_RB_RPTR); | ||
2215 | } | ||
2216 | } | ||
diff --git a/drivers/gpu/drm/radeon/radeon_drv.c b/drivers/gpu/drm/radeon/radeon_drv.c index fef207881f45..13a60f4d4227 100644 --- a/drivers/gpu/drm/radeon/radeon_drv.c +++ b/drivers/gpu/drm/radeon/radeon_drv.c | |||
@@ -41,23 +41,15 @@ int radeon_no_wb; | |||
41 | MODULE_PARM_DESC(no_wb, "Disable AGP writeback for scratch registers"); | 41 | MODULE_PARM_DESC(no_wb, "Disable AGP writeback for scratch registers"); |
42 | module_param_named(no_wb, radeon_no_wb, int, 0444); | 42 | module_param_named(no_wb, radeon_no_wb, int, 0444); |
43 | 43 | ||
44 | static int dri_library_name(struct drm_device *dev, char *buf) | ||
45 | { | ||
46 | drm_radeon_private_t *dev_priv = dev->dev_private; | ||
47 | int family = dev_priv->flags & RADEON_FAMILY_MASK; | ||
48 | |||
49 | return snprintf(buf, PAGE_SIZE, "%s\n", | ||
50 | (family < CHIP_R200) ? "radeon" : | ||
51 | ((family < CHIP_R300) ? "r200" : | ||
52 | "r300")); | ||
53 | } | ||
54 | |||
55 | static int radeon_suspend(struct drm_device *dev, pm_message_t state) | 44 | static int radeon_suspend(struct drm_device *dev, pm_message_t state) |
56 | { | 45 | { |
57 | drm_radeon_private_t *dev_priv = dev->dev_private; | 46 | drm_radeon_private_t *dev_priv = dev->dev_private; |
58 | 47 | ||
48 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) | ||
49 | return 0; | ||
50 | |||
59 | /* Disable *all* interrupts */ | 51 | /* Disable *all* interrupts */ |
60 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS690) | 52 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600) |
61 | RADEON_WRITE(R500_DxMODE_INT_MASK, 0); | 53 | RADEON_WRITE(R500_DxMODE_INT_MASK, 0); |
62 | RADEON_WRITE(RADEON_GEN_INT_CNTL, 0); | 54 | RADEON_WRITE(RADEON_GEN_INT_CNTL, 0); |
63 | return 0; | 55 | return 0; |
@@ -67,8 +59,11 @@ static int radeon_resume(struct drm_device *dev) | |||
67 | { | 59 | { |
68 | drm_radeon_private_t *dev_priv = dev->dev_private; | 60 | drm_radeon_private_t *dev_priv = dev->dev_private; |
69 | 61 | ||
62 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) | ||
63 | return 0; | ||
64 | |||
70 | /* Restore interrupt registers */ | 65 | /* Restore interrupt registers */ |
71 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS690) | 66 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600) |
72 | RADEON_WRITE(R500_DxMODE_INT_MASK, dev_priv->r500_disp_irq_reg); | 67 | RADEON_WRITE(R500_DxMODE_INT_MASK, dev_priv->r500_disp_irq_reg); |
73 | RADEON_WRITE(RADEON_GEN_INT_CNTL, dev_priv->irq_enable_reg); | 68 | RADEON_WRITE(RADEON_GEN_INT_CNTL, dev_priv->irq_enable_reg); |
74 | return 0; | 69 | return 0; |
@@ -95,7 +90,6 @@ static struct drm_driver driver = { | |||
95 | .get_vblank_counter = radeon_get_vblank_counter, | 90 | .get_vblank_counter = radeon_get_vblank_counter, |
96 | .enable_vblank = radeon_enable_vblank, | 91 | .enable_vblank = radeon_enable_vblank, |
97 | .disable_vblank = radeon_disable_vblank, | 92 | .disable_vblank = radeon_disable_vblank, |
98 | .dri_library_name = dri_library_name, | ||
99 | .master_create = radeon_master_create, | 93 | .master_create = radeon_master_create, |
100 | .master_destroy = radeon_master_destroy, | 94 | .master_destroy = radeon_master_destroy, |
101 | .irq_preinstall = radeon_driver_irq_preinstall, | 95 | .irq_preinstall = radeon_driver_irq_preinstall, |
diff --git a/drivers/gpu/drm/radeon/radeon_drv.h b/drivers/gpu/drm/radeon/radeon_drv.h index 490bc7ceef60..ed4d27e6ee6f 100644 --- a/drivers/gpu/drm/radeon/radeon_drv.h +++ b/drivers/gpu/drm/radeon/radeon_drv.h | |||
@@ -126,6 +126,7 @@ enum radeon_family { | |||
126 | CHIP_RV410, | 126 | CHIP_RV410, |
127 | CHIP_RS400, | 127 | CHIP_RS400, |
128 | CHIP_RS480, | 128 | CHIP_RS480, |
129 | CHIP_RS600, | ||
129 | CHIP_RS690, | 130 | CHIP_RS690, |
130 | CHIP_RS740, | 131 | CHIP_RS740, |
131 | CHIP_RV515, | 132 | CHIP_RV515, |
@@ -134,6 +135,16 @@ enum radeon_family { | |||
134 | CHIP_RV560, | 135 | CHIP_RV560, |
135 | CHIP_RV570, | 136 | CHIP_RV570, |
136 | CHIP_R580, | 137 | CHIP_R580, |
138 | CHIP_R600, | ||
139 | CHIP_RV610, | ||
140 | CHIP_RV630, | ||
141 | CHIP_RV620, | ||
142 | CHIP_RV635, | ||
143 | CHIP_RV670, | ||
144 | CHIP_RS780, | ||
145 | CHIP_RV770, | ||
146 | CHIP_RV730, | ||
147 | CHIP_RV710, | ||
137 | CHIP_LAST, | 148 | CHIP_LAST, |
138 | }; | 149 | }; |
139 | 150 | ||
@@ -160,10 +171,6 @@ enum radeon_chip_flags { | |||
160 | RADEON_IS_IGPGART = 0x01000000UL, | 171 | RADEON_IS_IGPGART = 0x01000000UL, |
161 | }; | 172 | }; |
162 | 173 | ||
163 | #define GET_RING_HEAD(dev_priv) (dev_priv->writeback_works ? \ | ||
164 | DRM_READ32( (dev_priv)->ring_rptr, 0 ) : RADEON_READ(RADEON_CP_RB_RPTR)) | ||
165 | #define SET_RING_HEAD(dev_priv,val) DRM_WRITE32( (dev_priv)->ring_rptr, 0, (val) ) | ||
166 | |||
167 | typedef struct drm_radeon_freelist { | 174 | typedef struct drm_radeon_freelist { |
168 | unsigned int age; | 175 | unsigned int age; |
169 | struct drm_buf *buf; | 176 | struct drm_buf *buf; |
@@ -221,10 +228,11 @@ struct radeon_virt_surface { | |||
221 | u32 upper; | 228 | u32 upper; |
222 | u32 flags; | 229 | u32 flags; |
223 | struct drm_file *file_priv; | 230 | struct drm_file *file_priv; |
231 | #define PCIGART_FILE_PRIV ((void *) -1L) | ||
224 | }; | 232 | }; |
225 | 233 | ||
226 | #define RADEON_FLUSH_EMITED (1 < 0) | 234 | #define RADEON_FLUSH_EMITED (1 << 0) |
227 | #define RADEON_PURGE_EMITED (1 < 1) | 235 | #define RADEON_PURGE_EMITED (1 << 1) |
228 | 236 | ||
229 | struct drm_radeon_master_private { | 237 | struct drm_radeon_master_private { |
230 | drm_local_map_t *sarea; | 238 | drm_local_map_t *sarea; |
@@ -248,7 +256,6 @@ typedef struct drm_radeon_private { | |||
248 | drm_radeon_freelist_t *head; | 256 | drm_radeon_freelist_t *head; |
249 | drm_radeon_freelist_t *tail; | 257 | drm_radeon_freelist_t *tail; |
250 | int last_buf; | 258 | int last_buf; |
251 | volatile u32 *scratch; | ||
252 | int writeback_works; | 259 | int writeback_works; |
253 | 260 | ||
254 | int usec_timeout; | 261 | int usec_timeout; |
@@ -316,11 +323,31 @@ typedef struct drm_radeon_private { | |||
316 | 323 | ||
317 | /* starting from here on, data is preserved accross an open */ | 324 | /* starting from here on, data is preserved accross an open */ |
318 | uint32_t flags; /* see radeon_chip_flags */ | 325 | uint32_t flags; /* see radeon_chip_flags */ |
319 | unsigned long fb_aper_offset; | 326 | resource_size_t fb_aper_offset; |
320 | 327 | ||
321 | int num_gb_pipes; | 328 | int num_gb_pipes; |
322 | int track_flush; | 329 | int track_flush; |
323 | drm_local_map_t *mmio; | 330 | drm_local_map_t *mmio; |
331 | |||
332 | /* r6xx/r7xx pipe/shader config */ | ||
333 | int r600_max_pipes; | ||
334 | int r600_max_tile_pipes; | ||
335 | int r600_max_simds; | ||
336 | int r600_max_backends; | ||
337 | int r600_max_gprs; | ||
338 | int r600_max_threads; | ||
339 | int r600_max_stack_entries; | ||
340 | int r600_max_hw_contexts; | ||
341 | int r600_max_gs_threads; | ||
342 | int r600_sx_max_export_size; | ||
343 | int r600_sx_max_export_pos_size; | ||
344 | int r600_sx_max_export_smx_size; | ||
345 | int r600_sq_num_cf_insts; | ||
346 | int r700_sx_num_of_sets; | ||
347 | int r700_sc_prim_fifo_size; | ||
348 | int r700_sc_hiz_tile_fifo_size; | ||
349 | int r700_sc_earlyz_tile_fifo_fize; | ||
350 | |||
324 | } drm_radeon_private_t; | 351 | } drm_radeon_private_t; |
325 | 352 | ||
326 | typedef struct drm_radeon_buf_priv { | 353 | typedef struct drm_radeon_buf_priv { |
@@ -338,6 +365,12 @@ extern int radeon_no_wb; | |||
338 | extern struct drm_ioctl_desc radeon_ioctls[]; | 365 | extern struct drm_ioctl_desc radeon_ioctls[]; |
339 | extern int radeon_max_ioctl; | 366 | extern int radeon_max_ioctl; |
340 | 367 | ||
368 | extern u32 radeon_get_ring_head(drm_radeon_private_t *dev_priv); | ||
369 | extern void radeon_set_ring_head(drm_radeon_private_t *dev_priv, u32 val); | ||
370 | |||
371 | #define GET_RING_HEAD(dev_priv) radeon_get_ring_head(dev_priv) | ||
372 | #define SET_RING_HEAD(dev_priv, val) radeon_set_ring_head(dev_priv, val) | ||
373 | |||
341 | /* Check whether the given hardware address is inside the framebuffer or the | 374 | /* Check whether the given hardware address is inside the framebuffer or the |
342 | * GART area. | 375 | * GART area. |
343 | */ | 376 | */ |
@@ -364,6 +397,9 @@ extern int radeon_engine_reset(struct drm_device *dev, void *data, struct drm_fi | |||
364 | extern int radeon_fullscreen(struct drm_device *dev, void *data, struct drm_file *file_priv); | 397 | extern int radeon_fullscreen(struct drm_device *dev, void *data, struct drm_file *file_priv); |
365 | extern int radeon_cp_buffers(struct drm_device *dev, void *data, struct drm_file *file_priv); | 398 | extern int radeon_cp_buffers(struct drm_device *dev, void *data, struct drm_file *file_priv); |
366 | extern u32 radeon_read_fb_location(drm_radeon_private_t *dev_priv); | 399 | extern u32 radeon_read_fb_location(drm_radeon_private_t *dev_priv); |
400 | extern void radeon_write_agp_location(drm_radeon_private_t *dev_priv, u32 agp_loc); | ||
401 | extern void radeon_write_agp_base(drm_radeon_private_t *dev_priv, u64 agp_base); | ||
402 | extern u32 RADEON_READ_MM(drm_radeon_private_t *dev_priv, int addr); | ||
367 | 403 | ||
368 | extern void radeon_freelist_reset(struct drm_device * dev); | 404 | extern void radeon_freelist_reset(struct drm_device * dev); |
369 | extern struct drm_buf *radeon_freelist_get(struct drm_device * dev); | 405 | extern struct drm_buf *radeon_freelist_get(struct drm_device * dev); |
@@ -383,6 +419,10 @@ extern void radeon_mem_takedown(struct mem_block **heap); | |||
383 | extern void radeon_mem_release(struct drm_file *file_priv, | 419 | extern void radeon_mem_release(struct drm_file *file_priv, |
384 | struct mem_block *heap); | 420 | struct mem_block *heap); |
385 | 421 | ||
422 | extern void radeon_enable_bm(struct drm_radeon_private *dev_priv); | ||
423 | extern u32 radeon_read_ring_rptr(drm_radeon_private_t *dev_priv, u32 off); | ||
424 | extern void radeon_write_ring_rptr(drm_radeon_private_t *dev_priv, u32 off, u32 val); | ||
425 | |||
386 | /* radeon_irq.c */ | 426 | /* radeon_irq.c */ |
387 | extern void radeon_irq_set_state(struct drm_device *dev, u32 mask, int state); | 427 | extern void radeon_irq_set_state(struct drm_device *dev, u32 mask, int state); |
388 | extern int radeon_irq_emit(struct drm_device *dev, void *data, struct drm_file *file_priv); | 428 | extern int radeon_irq_emit(struct drm_device *dev, void *data, struct drm_file *file_priv); |
@@ -423,6 +463,21 @@ extern int r300_do_cp_cmdbuf(struct drm_device *dev, | |||
423 | struct drm_file *file_priv, | 463 | struct drm_file *file_priv, |
424 | drm_radeon_kcmd_buffer_t *cmdbuf); | 464 | drm_radeon_kcmd_buffer_t *cmdbuf); |
425 | 465 | ||
466 | /* r600_cp.c */ | ||
467 | extern int r600_do_engine_reset(struct drm_device *dev); | ||
468 | extern int r600_do_cleanup_cp(struct drm_device *dev); | ||
469 | extern int r600_do_init_cp(struct drm_device *dev, drm_radeon_init_t *init, | ||
470 | struct drm_file *file_priv); | ||
471 | extern int r600_do_resume_cp(struct drm_device *dev, struct drm_file *file_priv); | ||
472 | extern int r600_do_cp_idle(drm_radeon_private_t *dev_priv); | ||
473 | extern void r600_do_cp_start(drm_radeon_private_t *dev_priv); | ||
474 | extern void r600_do_cp_reset(drm_radeon_private_t *dev_priv); | ||
475 | extern void r600_do_cp_stop(drm_radeon_private_t *dev_priv); | ||
476 | extern int r600_cp_dispatch_indirect(struct drm_device *dev, | ||
477 | struct drm_buf *buf, int start, int end); | ||
478 | extern int r600_page_table_init(struct drm_device *dev); | ||
479 | extern void r600_page_table_cleanup(struct drm_device *dev, struct drm_ati_pcigart_info *gart_info); | ||
480 | |||
426 | /* Flags for stats.boxes | 481 | /* Flags for stats.boxes |
427 | */ | 482 | */ |
428 | #define RADEON_BOX_DMA_IDLE 0x1 | 483 | #define RADEON_BOX_DMA_IDLE 0x1 |
@@ -434,6 +489,8 @@ extern int r300_do_cp_cmdbuf(struct drm_device *dev, | |||
434 | /* Register definitions, register access macros and drmAddMap constants | 489 | /* Register definitions, register access macros and drmAddMap constants |
435 | * for Radeon kernel driver. | 490 | * for Radeon kernel driver. |
436 | */ | 491 | */ |
492 | #define RADEON_MM_INDEX 0x0000 | ||
493 | #define RADEON_MM_DATA 0x0004 | ||
437 | 494 | ||
438 | #define RADEON_AGP_COMMAND 0x0f60 | 495 | #define RADEON_AGP_COMMAND 0x0f60 |
439 | #define RADEON_AGP_COMMAND_PCI_CONFIG 0x0060 /* offset in PCI config */ | 496 | #define RADEON_AGP_COMMAND_PCI_CONFIG 0x0060 /* offset in PCI config */ |
@@ -556,6 +613,56 @@ extern int r300_do_cp_cmdbuf(struct drm_device *dev, | |||
556 | #define RS690_MC_AGP_BASE 0x102 | 613 | #define RS690_MC_AGP_BASE 0x102 |
557 | #define RS690_MC_AGP_BASE_2 0x103 | 614 | #define RS690_MC_AGP_BASE_2 0x103 |
558 | 615 | ||
616 | #define RS600_MC_INDEX 0x70 | ||
617 | # define RS600_MC_ADDR_MASK 0xffff | ||
618 | # define RS600_MC_IND_SEQ_RBS_0 (1 << 16) | ||
619 | # define RS600_MC_IND_SEQ_RBS_1 (1 << 17) | ||
620 | # define RS600_MC_IND_SEQ_RBS_2 (1 << 18) | ||
621 | # define RS600_MC_IND_SEQ_RBS_3 (1 << 19) | ||
622 | # define RS600_MC_IND_AIC_RBS (1 << 20) | ||
623 | # define RS600_MC_IND_CITF_ARB0 (1 << 21) | ||
624 | # define RS600_MC_IND_CITF_ARB1 (1 << 22) | ||
625 | # define RS600_MC_IND_WR_EN (1 << 23) | ||
626 | #define RS600_MC_DATA 0x74 | ||
627 | |||
628 | #define RS600_MC_STATUS 0x0 | ||
629 | # define RS600_MC_IDLE (1 << 1) | ||
630 | #define RS600_MC_FB_LOCATION 0x4 | ||
631 | #define RS600_MC_AGP_LOCATION 0x5 | ||
632 | #define RS600_AGP_BASE 0x6 | ||
633 | #define RS600_AGP_BASE_2 0x7 | ||
634 | #define RS600_MC_CNTL1 0x9 | ||
635 | # define RS600_ENABLE_PAGE_TABLES (1 << 26) | ||
636 | #define RS600_MC_PT0_CNTL 0x100 | ||
637 | # define RS600_ENABLE_PT (1 << 0) | ||
638 | # define RS600_EFFECTIVE_L2_CACHE_SIZE(x) ((x) << 15) | ||
639 | # define RS600_EFFECTIVE_L2_QUEUE_SIZE(x) ((x) << 21) | ||
640 | # define RS600_INVALIDATE_ALL_L1_TLBS (1 << 28) | ||
641 | # define RS600_INVALIDATE_L2_CACHE (1 << 29) | ||
642 | #define RS600_MC_PT0_CONTEXT0_CNTL 0x102 | ||
643 | # define RS600_ENABLE_PAGE_TABLE (1 << 0) | ||
644 | # define RS600_PAGE_TABLE_TYPE_FLAT (0 << 1) | ||
645 | #define RS600_MC_PT0_SYSTEM_APERTURE_LOW_ADDR 0x112 | ||
646 | #define RS600_MC_PT0_SYSTEM_APERTURE_HIGH_ADDR 0x114 | ||
647 | #define RS600_MC_PT0_CONTEXT0_DEFAULT_READ_ADDR 0x11c | ||
648 | #define RS600_MC_PT0_CONTEXT0_FLAT_BASE_ADDR 0x12c | ||
649 | #define RS600_MC_PT0_CONTEXT0_FLAT_START_ADDR 0x13c | ||
650 | #define RS600_MC_PT0_CONTEXT0_FLAT_END_ADDR 0x14c | ||
651 | #define RS600_MC_PT0_CLIENT0_CNTL 0x16c | ||
652 | # define RS600_ENABLE_TRANSLATION_MODE_OVERRIDE (1 << 0) | ||
653 | # define RS600_TRANSLATION_MODE_OVERRIDE (1 << 1) | ||
654 | # define RS600_SYSTEM_ACCESS_MODE_MASK (3 << 8) | ||
655 | # define RS600_SYSTEM_ACCESS_MODE_PA_ONLY (0 << 8) | ||
656 | # define RS600_SYSTEM_ACCESS_MODE_USE_SYS_MAP (1 << 8) | ||
657 | # define RS600_SYSTEM_ACCESS_MODE_IN_SYS (2 << 8) | ||
658 | # define RS600_SYSTEM_ACCESS_MODE_NOT_IN_SYS (3 << 8) | ||
659 | # define RS600_SYSTEM_APERTURE_UNMAPPED_ACCESS_PASSTHROUGH (0 << 10) | ||
660 | # define RS600_SYSTEM_APERTURE_UNMAPPED_ACCESS_DEFAULT_PAGE (1 << 10) | ||
661 | # define RS600_EFFECTIVE_L1_CACHE_SIZE(x) ((x) << 11) | ||
662 | # define RS600_ENABLE_FRAGMENT_PROCESSING (1 << 14) | ||
663 | # define RS600_EFFECTIVE_L1_QUEUE_SIZE(x) ((x) << 15) | ||
664 | # define RS600_INVALIDATE_L1_TLB (1 << 20) | ||
665 | |||
559 | #define R520_MC_IND_INDEX 0x70 | 666 | #define R520_MC_IND_INDEX 0x70 |
560 | #define R520_MC_IND_WR_EN (1 << 24) | 667 | #define R520_MC_IND_WR_EN (1 << 24) |
561 | #define R520_MC_IND_DATA 0x74 | 668 | #define R520_MC_IND_DATA 0x74 |
@@ -580,7 +687,6 @@ extern int r300_do_cp_cmdbuf(struct drm_device *dev, | |||
580 | /* pipe config regs */ | 687 | /* pipe config regs */ |
581 | #define R400_GB_PIPE_SELECT 0x402c | 688 | #define R400_GB_PIPE_SELECT 0x402c |
582 | #define R500_DYN_SCLK_PWMEM_PIPE 0x000d /* PLL */ | 689 | #define R500_DYN_SCLK_PWMEM_PIPE 0x000d /* PLL */ |
583 | #define R500_SU_REG_DEST 0x42c8 | ||
584 | #define R300_GB_TILE_CONFIG 0x4018 | 690 | #define R300_GB_TILE_CONFIG 0x4018 |
585 | # define R300_ENABLE_TILING (1 << 0) | 691 | # define R300_ENABLE_TILING (1 << 0) |
586 | # define R300_PIPE_COUNT_RV350 (0 << 1) | 692 | # define R300_PIPE_COUNT_RV350 (0 << 1) |
@@ -639,9 +745,22 @@ extern int r300_do_cp_cmdbuf(struct drm_device *dev, | |||
639 | 745 | ||
640 | #define RADEON_SCRATCHOFF( x ) (RADEON_SCRATCH_REG_OFFSET + 4*(x)) | 746 | #define RADEON_SCRATCHOFF( x ) (RADEON_SCRATCH_REG_OFFSET + 4*(x)) |
641 | 747 | ||
642 | #define GET_SCRATCH( x ) (dev_priv->writeback_works \ | 748 | extern u32 radeon_get_scratch(drm_radeon_private_t *dev_priv, int index); |
643 | ? DRM_READ32( dev_priv->ring_rptr, RADEON_SCRATCHOFF(x) ) \ | 749 | |
644 | : RADEON_READ( RADEON_SCRATCH_REG0 + 4*(x) ) ) | 750 | #define GET_SCRATCH(dev_priv, x) radeon_get_scratch(dev_priv, x) |
751 | |||
752 | #define R600_SCRATCH_REG0 0x8500 | ||
753 | #define R600_SCRATCH_REG1 0x8504 | ||
754 | #define R600_SCRATCH_REG2 0x8508 | ||
755 | #define R600_SCRATCH_REG3 0x850c | ||
756 | #define R600_SCRATCH_REG4 0x8510 | ||
757 | #define R600_SCRATCH_REG5 0x8514 | ||
758 | #define R600_SCRATCH_REG6 0x8518 | ||
759 | #define R600_SCRATCH_REG7 0x851c | ||
760 | #define R600_SCRATCH_UMSK 0x8540 | ||
761 | #define R600_SCRATCH_ADDR 0x8544 | ||
762 | |||
763 | #define R600_SCRATCHOFF(x) (R600_SCRATCH_REG_OFFSET + 4*(x)) | ||
645 | 764 | ||
646 | #define RADEON_GEN_INT_CNTL 0x0040 | 765 | #define RADEON_GEN_INT_CNTL 0x0040 |
647 | # define RADEON_CRTC_VBLANK_MASK (1 << 0) | 766 | # define RADEON_CRTC_VBLANK_MASK (1 << 0) |
@@ -922,6 +1041,7 @@ extern int r300_do_cp_cmdbuf(struct drm_device *dev, | |||
922 | #define RADEON_CP_RB_CNTL 0x0704 | 1041 | #define RADEON_CP_RB_CNTL 0x0704 |
923 | # define RADEON_BUF_SWAP_32BIT (2 << 16) | 1042 | # define RADEON_BUF_SWAP_32BIT (2 << 16) |
924 | # define RADEON_RB_NO_UPDATE (1 << 27) | 1043 | # define RADEON_RB_NO_UPDATE (1 << 27) |
1044 | # define RADEON_RB_RPTR_WR_ENA (1 << 31) | ||
925 | #define RADEON_CP_RB_RPTR_ADDR 0x070c | 1045 | #define RADEON_CP_RB_RPTR_ADDR 0x070c |
926 | #define RADEON_CP_RB_RPTR 0x0710 | 1046 | #define RADEON_CP_RB_RPTR 0x0710 |
927 | #define RADEON_CP_RB_WPTR 0x0714 | 1047 | #define RADEON_CP_RB_WPTR 0x0714 |
@@ -983,6 +1103,14 @@ extern int r300_do_cp_cmdbuf(struct drm_device *dev, | |||
983 | # define RADEON_CNTL_BITBLT_MULTI 0x00009B00 | 1103 | # define RADEON_CNTL_BITBLT_MULTI 0x00009B00 |
984 | # define RADEON_CNTL_SET_SCISSORS 0xC0001E00 | 1104 | # define RADEON_CNTL_SET_SCISSORS 0xC0001E00 |
985 | 1105 | ||
1106 | # define R600_IT_INDIRECT_BUFFER 0x00003200 | ||
1107 | # define R600_IT_ME_INITIALIZE 0x00004400 | ||
1108 | # define R600_ME_INITIALIZE_DEVICE_ID(x) ((x) << 16) | ||
1109 | # define R600_IT_EVENT_WRITE 0x00004600 | ||
1110 | # define R600_IT_SET_CONFIG_REG 0x00006800 | ||
1111 | # define R600_SET_CONFIG_REG_OFFSET 0x00008000 | ||
1112 | # define R600_SET_CONFIG_REG_END 0x0000ac00 | ||
1113 | |||
986 | #define RADEON_CP_PACKET_MASK 0xC0000000 | 1114 | #define RADEON_CP_PACKET_MASK 0xC0000000 |
987 | #define RADEON_CP_PACKET_COUNT_MASK 0x3fff0000 | 1115 | #define RADEON_CP_PACKET_COUNT_MASK 0x3fff0000 |
988 | #define RADEON_CP_PACKET0_REG_MASK 0x000007ff | 1116 | #define RADEON_CP_PACKET0_REG_MASK 0x000007ff |
@@ -1181,6 +1309,422 @@ extern int r300_do_cp_cmdbuf(struct drm_device *dev, | |||
1181 | #define R500_D1_VBLANK_INTERRUPT (1 << 4) | 1309 | #define R500_D1_VBLANK_INTERRUPT (1 << 4) |
1182 | #define R500_D2_VBLANK_INTERRUPT (1 << 5) | 1310 | #define R500_D2_VBLANK_INTERRUPT (1 << 5) |
1183 | 1311 | ||
1312 | /* R6xx/R7xx registers */ | ||
1313 | #define R600_MC_VM_FB_LOCATION 0x2180 | ||
1314 | #define R600_MC_VM_AGP_TOP 0x2184 | ||
1315 | #define R600_MC_VM_AGP_BOT 0x2188 | ||
1316 | #define R600_MC_VM_AGP_BASE 0x218c | ||
1317 | #define R600_MC_VM_SYSTEM_APERTURE_LOW_ADDR 0x2190 | ||
1318 | #define R600_MC_VM_SYSTEM_APERTURE_HIGH_ADDR 0x2194 | ||
1319 | #define R600_MC_VM_SYSTEM_APERTURE_DEFAULT_ADDR 0x2198 | ||
1320 | |||
1321 | #define R700_MC_VM_FB_LOCATION 0x2024 | ||
1322 | #define R700_MC_VM_AGP_TOP 0x2028 | ||
1323 | #define R700_MC_VM_AGP_BOT 0x202c | ||
1324 | #define R700_MC_VM_AGP_BASE 0x2030 | ||
1325 | #define R700_MC_VM_SYSTEM_APERTURE_LOW_ADDR 0x2034 | ||
1326 | #define R700_MC_VM_SYSTEM_APERTURE_HIGH_ADDR 0x2038 | ||
1327 | #define R700_MC_VM_SYSTEM_APERTURE_DEFAULT_ADDR 0x203c | ||
1328 | |||
1329 | #define R600_MCD_RD_A_CNTL 0x219c | ||
1330 | #define R600_MCD_RD_B_CNTL 0x21a0 | ||
1331 | |||
1332 | #define R600_MCD_WR_A_CNTL 0x21a4 | ||
1333 | #define R600_MCD_WR_B_CNTL 0x21a8 | ||
1334 | |||
1335 | #define R600_MCD_RD_SYS_CNTL 0x2200 | ||
1336 | #define R600_MCD_WR_SYS_CNTL 0x2214 | ||
1337 | |||
1338 | #define R600_MCD_RD_GFX_CNTL 0x21fc | ||
1339 | #define R600_MCD_RD_HDP_CNTL 0x2204 | ||
1340 | #define R600_MCD_RD_PDMA_CNTL 0x2208 | ||
1341 | #define R600_MCD_RD_SEM_CNTL 0x220c | ||
1342 | #define R600_MCD_WR_GFX_CNTL 0x2210 | ||
1343 | #define R600_MCD_WR_HDP_CNTL 0x2218 | ||
1344 | #define R600_MCD_WR_PDMA_CNTL 0x221c | ||
1345 | #define R600_MCD_WR_SEM_CNTL 0x2220 | ||
1346 | |||
1347 | # define R600_MCD_L1_TLB (1 << 0) | ||
1348 | # define R600_MCD_L1_FRAG_PROC (1 << 1) | ||
1349 | # define R600_MCD_L1_STRICT_ORDERING (1 << 2) | ||
1350 | |||
1351 | # define R600_MCD_SYSTEM_ACCESS_MODE_MASK (3 << 6) | ||
1352 | # define R600_MCD_SYSTEM_ACCESS_MODE_PA_ONLY (0 << 6) | ||
1353 | # define R600_MCD_SYSTEM_ACCESS_MODE_USE_SYS_MAP (1 << 6) | ||
1354 | # define R600_MCD_SYSTEM_ACCESS_MODE_IN_SYS (2 << 6) | ||
1355 | # define R600_MCD_SYSTEM_ACCESS_MODE_NOT_IN_SYS (3 << 6) | ||
1356 | |||
1357 | # define R600_MCD_SYSTEM_APERTURE_UNMAPPED_ACCESS_PASS_THRU (0 << 8) | ||
1358 | # define R600_MCD_SYSTEM_APERTURE_UNMAPPED_ACCESS_DEFAULT_PAGE (1 << 8) | ||
1359 | |||
1360 | # define R600_MCD_SEMAPHORE_MODE (1 << 10) | ||
1361 | # define R600_MCD_WAIT_L2_QUERY (1 << 11) | ||
1362 | # define R600_MCD_EFFECTIVE_L1_TLB_SIZE(x) ((x) << 12) | ||
1363 | # define R600_MCD_EFFECTIVE_L1_QUEUE_SIZE(x) ((x) << 15) | ||
1364 | |||
1365 | #define R700_MC_VM_MD_L1_TLB0_CNTL 0x2654 | ||
1366 | #define R700_MC_VM_MD_L1_TLB1_CNTL 0x2658 | ||
1367 | #define R700_MC_VM_MD_L1_TLB2_CNTL 0x265c | ||
1368 | |||
1369 | #define R700_MC_VM_MB_L1_TLB0_CNTL 0x2234 | ||
1370 | #define R700_MC_VM_MB_L1_TLB1_CNTL 0x2238 | ||
1371 | #define R700_MC_VM_MB_L1_TLB2_CNTL 0x223c | ||
1372 | #define R700_MC_VM_MB_L1_TLB3_CNTL 0x2240 | ||
1373 | |||
1374 | # define R700_ENABLE_L1_TLB (1 << 0) | ||
1375 | # define R700_ENABLE_L1_FRAGMENT_PROCESSING (1 << 1) | ||
1376 | # define R700_SYSTEM_ACCESS_MODE_IN_SYS (2 << 3) | ||
1377 | # define R700_SYSTEM_APERTURE_UNMAPPED_ACCESS_PASS_THRU (0 << 5) | ||
1378 | # define R700_EFFECTIVE_L1_TLB_SIZE(x) ((x) << 15) | ||
1379 | # define R700_EFFECTIVE_L1_QUEUE_SIZE(x) ((x) << 18) | ||
1380 | |||
1381 | #define R700_MC_ARB_RAMCFG 0x2760 | ||
1382 | # define R700_NOOFBANK_SHIFT 0 | ||
1383 | # define R700_NOOFBANK_MASK 0x3 | ||
1384 | # define R700_NOOFRANK_SHIFT 2 | ||
1385 | # define R700_NOOFRANK_MASK 0x1 | ||
1386 | # define R700_NOOFROWS_SHIFT 3 | ||
1387 | # define R700_NOOFROWS_MASK 0x7 | ||
1388 | # define R700_NOOFCOLS_SHIFT 6 | ||
1389 | # define R700_NOOFCOLS_MASK 0x3 | ||
1390 | # define R700_CHANSIZE_SHIFT 8 | ||
1391 | # define R700_CHANSIZE_MASK 0x1 | ||
1392 | # define R700_BURSTLENGTH_SHIFT 9 | ||
1393 | # define R700_BURSTLENGTH_MASK 0x1 | ||
1394 | #define R600_RAMCFG 0x2408 | ||
1395 | # define R600_NOOFBANK_SHIFT 0 | ||
1396 | # define R600_NOOFBANK_MASK 0x1 | ||
1397 | # define R600_NOOFRANK_SHIFT 1 | ||
1398 | # define R600_NOOFRANK_MASK 0x1 | ||
1399 | # define R600_NOOFROWS_SHIFT 2 | ||
1400 | # define R600_NOOFROWS_MASK 0x7 | ||
1401 | # define R600_NOOFCOLS_SHIFT 5 | ||
1402 | # define R600_NOOFCOLS_MASK 0x3 | ||
1403 | # define R600_CHANSIZE_SHIFT 7 | ||
1404 | # define R600_CHANSIZE_MASK 0x1 | ||
1405 | # define R600_BURSTLENGTH_SHIFT 8 | ||
1406 | # define R600_BURSTLENGTH_MASK 0x1 | ||
1407 | |||
1408 | #define R600_VM_L2_CNTL 0x1400 | ||
1409 | # define R600_VM_L2_CACHE_EN (1 << 0) | ||
1410 | # define R600_VM_L2_FRAG_PROC (1 << 1) | ||
1411 | # define R600_VM_ENABLE_PTE_CACHE_LRU_W (1 << 9) | ||
1412 | # define R600_VM_L2_CNTL_QUEUE_SIZE(x) ((x) << 13) | ||
1413 | # define R700_VM_L2_CNTL_QUEUE_SIZE(x) ((x) << 14) | ||
1414 | |||
1415 | #define R600_VM_L2_CNTL2 0x1404 | ||
1416 | # define R600_VM_L2_CNTL2_INVALIDATE_ALL_L1_TLBS (1 << 0) | ||
1417 | # define R600_VM_L2_CNTL2_INVALIDATE_L2_CACHE (1 << 1) | ||
1418 | #define R600_VM_L2_CNTL3 0x1408 | ||
1419 | # define R600_VM_L2_CNTL3_BANK_SELECT_0(x) ((x) << 0) | ||
1420 | # define R600_VM_L2_CNTL3_BANK_SELECT_1(x) ((x) << 5) | ||
1421 | # define R600_VM_L2_CNTL3_CACHE_UPDATE_MODE(x) ((x) << 10) | ||
1422 | # define R700_VM_L2_CNTL3_BANK_SELECT(x) ((x) << 0) | ||
1423 | # define R700_VM_L2_CNTL3_CACHE_UPDATE_MODE(x) ((x) << 6) | ||
1424 | |||
1425 | #define R600_VM_L2_STATUS 0x140c | ||
1426 | |||
1427 | #define R600_VM_CONTEXT0_CNTL 0x1410 | ||
1428 | # define R600_VM_ENABLE_CONTEXT (1 << 0) | ||
1429 | # define R600_VM_PAGE_TABLE_DEPTH_FLAT (0 << 1) | ||
1430 | |||
1431 | #define R600_VM_CONTEXT0_CNTL2 0x1430 | ||
1432 | #define R600_VM_CONTEXT0_REQUEST_RESPONSE 0x1470 | ||
1433 | #define R600_VM_CONTEXT0_INVALIDATION_LOW_ADDR 0x1490 | ||
1434 | #define R600_VM_CONTEXT0_INVALIDATION_HIGH_ADDR 0x14b0 | ||
1435 | #define R600_VM_CONTEXT0_PAGE_TABLE_BASE_ADDR 0x1574 | ||
1436 | #define R600_VM_CONTEXT0_PAGE_TABLE_START_ADDR 0x1594 | ||
1437 | #define R600_VM_CONTEXT0_PAGE_TABLE_END_ADDR 0x15b4 | ||
1438 | |||
1439 | #define R700_VM_CONTEXT0_PAGE_TABLE_BASE_ADDR 0x153c | ||
1440 | #define R700_VM_CONTEXT0_PAGE_TABLE_START_ADDR 0x155c | ||
1441 | #define R700_VM_CONTEXT0_PAGE_TABLE_END_ADDR 0x157c | ||
1442 | |||
1443 | #define R600_HDP_HOST_PATH_CNTL 0x2c00 | ||
1444 | |||
1445 | #define R600_GRBM_CNTL 0x8000 | ||
1446 | # define R600_GRBM_READ_TIMEOUT(x) ((x) << 0) | ||
1447 | |||
1448 | #define R600_GRBM_STATUS 0x8010 | ||
1449 | # define R600_CMDFIFO_AVAIL_MASK 0x1f | ||
1450 | # define R700_CMDFIFO_AVAIL_MASK 0xf | ||
1451 | # define R600_GUI_ACTIVE (1 << 31) | ||
1452 | #define R600_GRBM_STATUS2 0x8014 | ||
1453 | #define R600_GRBM_SOFT_RESET 0x8020 | ||
1454 | # define R600_SOFT_RESET_CP (1 << 0) | ||
1455 | #define R600_WAIT_UNTIL 0x8040 | ||
1456 | |||
1457 | #define R600_CP_SEM_WAIT_TIMER 0x85bc | ||
1458 | #define R600_CP_ME_CNTL 0x86d8 | ||
1459 | # define R600_CP_ME_HALT (1 << 28) | ||
1460 | #define R600_CP_QUEUE_THRESHOLDS 0x8760 | ||
1461 | # define R600_ROQ_IB1_START(x) ((x) << 0) | ||
1462 | # define R600_ROQ_IB2_START(x) ((x) << 8) | ||
1463 | #define R600_CP_MEQ_THRESHOLDS 0x8764 | ||
1464 | # define R700_STQ_SPLIT(x) ((x) << 0) | ||
1465 | # define R600_MEQ_END(x) ((x) << 16) | ||
1466 | # define R600_ROQ_END(x) ((x) << 24) | ||
1467 | #define R600_CP_PERFMON_CNTL 0x87fc | ||
1468 | #define R600_CP_RB_BASE 0xc100 | ||
1469 | #define R600_CP_RB_CNTL 0xc104 | ||
1470 | # define R600_RB_BUFSZ(x) ((x) << 0) | ||
1471 | # define R600_RB_BLKSZ(x) ((x) << 8) | ||
1472 | # define R600_RB_NO_UPDATE (1 << 27) | ||
1473 | # define R600_RB_RPTR_WR_ENA (1 << 31) | ||
1474 | #define R600_CP_RB_RPTR_WR 0xc108 | ||
1475 | #define R600_CP_RB_RPTR_ADDR 0xc10c | ||
1476 | #define R600_CP_RB_RPTR_ADDR_HI 0xc110 | ||
1477 | #define R600_CP_RB_WPTR 0xc114 | ||
1478 | #define R600_CP_RB_WPTR_ADDR 0xc118 | ||
1479 | #define R600_CP_RB_WPTR_ADDR_HI 0xc11c | ||
1480 | #define R600_CP_RB_RPTR 0x8700 | ||
1481 | #define R600_CP_RB_WPTR_DELAY 0x8704 | ||
1482 | #define R600_CP_PFP_UCODE_ADDR 0xc150 | ||
1483 | #define R600_CP_PFP_UCODE_DATA 0xc154 | ||
1484 | #define R600_CP_ME_RAM_RADDR 0xc158 | ||
1485 | #define R600_CP_ME_RAM_WADDR 0xc15c | ||
1486 | #define R600_CP_ME_RAM_DATA 0xc160 | ||
1487 | #define R600_CP_DEBUG 0xc1fc | ||
1488 | |||
1489 | #define R600_PA_CL_ENHANCE 0x8a14 | ||
1490 | # define R600_CLIP_VTX_REORDER_ENA (1 << 0) | ||
1491 | # define R600_NUM_CLIP_SEQ(x) ((x) << 1) | ||
1492 | #define R600_PA_SC_LINE_STIPPLE_STATE 0x8b10 | ||
1493 | #define R600_PA_SC_MULTI_CHIP_CNTL 0x8b20 | ||
1494 | #define R700_PA_SC_FORCE_EOV_MAX_CNTS 0x8b24 | ||
1495 | # define R700_FORCE_EOV_MAX_CLK_CNT(x) ((x) << 0) | ||
1496 | # define R700_FORCE_EOV_MAX_REZ_CNT(x) ((x) << 16) | ||
1497 | #define R600_PA_SC_AA_SAMPLE_LOCS_2S 0x8b40 | ||
1498 | #define R600_PA_SC_AA_SAMPLE_LOCS_4S 0x8b44 | ||
1499 | #define R600_PA_SC_AA_SAMPLE_LOCS_8S_WD0 0x8b48 | ||
1500 | #define R600_PA_SC_AA_SAMPLE_LOCS_8S_WD1 0x8b4c | ||
1501 | # define R600_S0_X(x) ((x) << 0) | ||
1502 | # define R600_S0_Y(x) ((x) << 4) | ||
1503 | # define R600_S1_X(x) ((x) << 8) | ||
1504 | # define R600_S1_Y(x) ((x) << 12) | ||
1505 | # define R600_S2_X(x) ((x) << 16) | ||
1506 | # define R600_S2_Y(x) ((x) << 20) | ||
1507 | # define R600_S3_X(x) ((x) << 24) | ||
1508 | # define R600_S3_Y(x) ((x) << 28) | ||
1509 | # define R600_S4_X(x) ((x) << 0) | ||
1510 | # define R600_S4_Y(x) ((x) << 4) | ||
1511 | # define R600_S5_X(x) ((x) << 8) | ||
1512 | # define R600_S5_Y(x) ((x) << 12) | ||
1513 | # define R600_S6_X(x) ((x) << 16) | ||
1514 | # define R600_S6_Y(x) ((x) << 20) | ||
1515 | # define R600_S7_X(x) ((x) << 24) | ||
1516 | # define R600_S7_Y(x) ((x) << 28) | ||
1517 | #define R600_PA_SC_FIFO_SIZE 0x8bd0 | ||
1518 | # define R600_SC_PRIM_FIFO_SIZE(x) ((x) << 0) | ||
1519 | # define R600_SC_HIZ_TILE_FIFO_SIZE(x) ((x) << 8) | ||
1520 | # define R600_SC_EARLYZ_TILE_FIFO_SIZE(x) ((x) << 16) | ||
1521 | #define R700_PA_SC_FIFO_SIZE_R7XX 0x8bcc | ||
1522 | # define R700_SC_PRIM_FIFO_SIZE(x) ((x) << 0) | ||
1523 | # define R700_SC_HIZ_TILE_FIFO_SIZE(x) ((x) << 12) | ||
1524 | # define R700_SC_EARLYZ_TILE_FIFO_SIZE(x) ((x) << 20) | ||
1525 | #define R600_PA_SC_ENHANCE 0x8bf0 | ||
1526 | # define R600_FORCE_EOV_MAX_CLK_CNT(x) ((x) << 0) | ||
1527 | # define R600_FORCE_EOV_MAX_TILE_CNT(x) ((x) << 12) | ||
1528 | #define R600_PA_SC_CLIPRECT_RULE 0x2820c | ||
1529 | #define R700_PA_SC_EDGERULE 0x28230 | ||
1530 | #define R600_PA_SC_LINE_STIPPLE 0x28a0c | ||
1531 | #define R600_PA_SC_MODE_CNTL 0x28a4c | ||
1532 | #define R600_PA_SC_AA_CONFIG 0x28c04 | ||
1533 | |||
1534 | #define R600_SX_EXPORT_BUFFER_SIZES 0x900c | ||
1535 | # define R600_COLOR_BUFFER_SIZE(x) ((x) << 0) | ||
1536 | # define R600_POSITION_BUFFER_SIZE(x) ((x) << 8) | ||
1537 | # define R600_SMX_BUFFER_SIZE(x) ((x) << 16) | ||
1538 | #define R600_SX_DEBUG_1 0x9054 | ||
1539 | # define R600_SMX_EVENT_RELEASE (1 << 0) | ||
1540 | # define R600_ENABLE_NEW_SMX_ADDRESS (1 << 16) | ||
1541 | #define R700_SX_DEBUG_1 0x9058 | ||
1542 | # define R700_ENABLE_NEW_SMX_ADDRESS (1 << 16) | ||
1543 | #define R600_SX_MISC 0x28350 | ||
1544 | |||
1545 | #define R600_DB_DEBUG 0x9830 | ||
1546 | # define R600_PREZ_MUST_WAIT_FOR_POSTZ_DONE (1 << 31) | ||
1547 | #define R600_DB_WATERMARKS 0x9838 | ||
1548 | # define R600_DEPTH_FREE(x) ((x) << 0) | ||
1549 | # define R600_DEPTH_FLUSH(x) ((x) << 5) | ||
1550 | # define R600_DEPTH_PENDING_FREE(x) ((x) << 15) | ||
1551 | # define R600_DEPTH_CACHELINE_FREE(x) ((x) << 20) | ||
1552 | #define R700_DB_DEBUG3 0x98b0 | ||
1553 | # define R700_DB_CLK_OFF_DELAY(x) ((x) << 11) | ||
1554 | #define RV700_DB_DEBUG4 0x9b8c | ||
1555 | # define RV700_DISABLE_TILE_COVERED_FOR_PS_ITER (1 << 6) | ||
1556 | |||
1557 | #define R600_VGT_CACHE_INVALIDATION 0x88c4 | ||
1558 | # define R600_CACHE_INVALIDATION(x) ((x) << 0) | ||
1559 | # define R600_VC_ONLY 0 | ||
1560 | # define R600_TC_ONLY 1 | ||
1561 | # define R600_VC_AND_TC 2 | ||
1562 | # define R700_AUTO_INVLD_EN(x) ((x) << 6) | ||
1563 | # define R700_NO_AUTO 0 | ||
1564 | # define R700_ES_AUTO 1 | ||
1565 | # define R700_GS_AUTO 2 | ||
1566 | # define R700_ES_AND_GS_AUTO 3 | ||
1567 | #define R600_VGT_GS_PER_ES 0x88c8 | ||
1568 | #define R600_VGT_ES_PER_GS 0x88cc | ||
1569 | #define R600_VGT_GS_PER_VS 0x88e8 | ||
1570 | #define R600_VGT_GS_VERTEX_REUSE 0x88d4 | ||
1571 | #define R600_VGT_NUM_INSTANCES 0x8974 | ||
1572 | #define R600_VGT_STRMOUT_EN 0x28ab0 | ||
1573 | #define R600_VGT_EVENT_INITIATOR 0x28a90 | ||
1574 | # define R600_CACHE_FLUSH_AND_INV_EVENT (0x16 << 0) | ||
1575 | #define R600_VGT_VERTEX_REUSE_BLOCK_CNTL 0x28c58 | ||
1576 | # define R600_VTX_REUSE_DEPTH_MASK 0xff | ||
1577 | #define R600_VGT_OUT_DEALLOC_CNTL 0x28c5c | ||
1578 | # define R600_DEALLOC_DIST_MASK 0x7f | ||
1579 | |||
1580 | #define R600_CB_COLOR0_BASE 0x28040 | ||
1581 | #define R600_CB_COLOR1_BASE 0x28044 | ||
1582 | #define R600_CB_COLOR2_BASE 0x28048 | ||
1583 | #define R600_CB_COLOR3_BASE 0x2804c | ||
1584 | #define R600_CB_COLOR4_BASE 0x28050 | ||
1585 | #define R600_CB_COLOR5_BASE 0x28054 | ||
1586 | #define R600_CB_COLOR6_BASE 0x28058 | ||
1587 | #define R600_CB_COLOR7_BASE 0x2805c | ||
1588 | #define R600_CB_COLOR7_FRAG 0x280fc | ||
1589 | |||
1590 | #define R600_TC_CNTL 0x9608 | ||
1591 | # define R600_TC_L2_SIZE(x) ((x) << 5) | ||
1592 | # define R600_L2_DISABLE_LATE_HIT (1 << 9) | ||
1593 | |||
1594 | #define R600_ARB_POP 0x2418 | ||
1595 | # define R600_ENABLE_TC128 (1 << 30) | ||
1596 | #define R600_ARB_GDEC_RD_CNTL 0x246c | ||
1597 | |||
1598 | #define R600_TA_CNTL_AUX 0x9508 | ||
1599 | # define R600_DISABLE_CUBE_WRAP (1 << 0) | ||
1600 | # define R600_DISABLE_CUBE_ANISO (1 << 1) | ||
1601 | # define R700_GETLOD_SELECT(x) ((x) << 2) | ||
1602 | # define R600_SYNC_GRADIENT (1 << 24) | ||
1603 | # define R600_SYNC_WALKER (1 << 25) | ||
1604 | # define R600_SYNC_ALIGNER (1 << 26) | ||
1605 | # define R600_BILINEAR_PRECISION_6_BIT (0 << 31) | ||
1606 | # define R600_BILINEAR_PRECISION_8_BIT (1 << 31) | ||
1607 | |||
1608 | #define R700_TCP_CNTL 0x9610 | ||
1609 | |||
1610 | #define R600_SMX_DC_CTL0 0xa020 | ||
1611 | # define R700_USE_HASH_FUNCTION (1 << 0) | ||
1612 | # define R700_CACHE_DEPTH(x) ((x) << 1) | ||
1613 | # define R700_FLUSH_ALL_ON_EVENT (1 << 10) | ||
1614 | # define R700_STALL_ON_EVENT (1 << 11) | ||
1615 | #define R700_SMX_EVENT_CTL 0xa02c | ||
1616 | # define R700_ES_FLUSH_CTL(x) ((x) << 0) | ||
1617 | # define R700_GS_FLUSH_CTL(x) ((x) << 3) | ||
1618 | # define R700_ACK_FLUSH_CTL(x) ((x) << 6) | ||
1619 | # define R700_SYNC_FLUSH_CTL (1 << 8) | ||
1620 | |||
1621 | #define R600_SQ_CONFIG 0x8c00 | ||
1622 | # define R600_VC_ENABLE (1 << 0) | ||
1623 | # define R600_EXPORT_SRC_C (1 << 1) | ||
1624 | # define R600_DX9_CONSTS (1 << 2) | ||
1625 | # define R600_ALU_INST_PREFER_VECTOR (1 << 3) | ||
1626 | # define R600_DX10_CLAMP (1 << 4) | ||
1627 | # define R600_CLAUSE_SEQ_PRIO(x) ((x) << 8) | ||
1628 | # define R600_PS_PRIO(x) ((x) << 24) | ||
1629 | # define R600_VS_PRIO(x) ((x) << 26) | ||
1630 | # define R600_GS_PRIO(x) ((x) << 28) | ||
1631 | # define R600_ES_PRIO(x) ((x) << 30) | ||
1632 | #define R600_SQ_GPR_RESOURCE_MGMT_1 0x8c04 | ||
1633 | # define R600_NUM_PS_GPRS(x) ((x) << 0) | ||
1634 | # define R600_NUM_VS_GPRS(x) ((x) << 16) | ||
1635 | # define R700_DYN_GPR_ENABLE (1 << 27) | ||
1636 | # define R600_NUM_CLAUSE_TEMP_GPRS(x) ((x) << 28) | ||
1637 | #define R600_SQ_GPR_RESOURCE_MGMT_2 0x8c08 | ||
1638 | # define R600_NUM_GS_GPRS(x) ((x) << 0) | ||
1639 | # define R600_NUM_ES_GPRS(x) ((x) << 16) | ||
1640 | #define R600_SQ_THREAD_RESOURCE_MGMT 0x8c0c | ||
1641 | # define R600_NUM_PS_THREADS(x) ((x) << 0) | ||
1642 | # define R600_NUM_VS_THREADS(x) ((x) << 8) | ||
1643 | # define R600_NUM_GS_THREADS(x) ((x) << 16) | ||
1644 | # define R600_NUM_ES_THREADS(x) ((x) << 24) | ||
1645 | #define R600_SQ_STACK_RESOURCE_MGMT_1 0x8c10 | ||
1646 | # define R600_NUM_PS_STACK_ENTRIES(x) ((x) << 0) | ||
1647 | # define R600_NUM_VS_STACK_ENTRIES(x) ((x) << 16) | ||
1648 | #define R600_SQ_STACK_RESOURCE_MGMT_2 0x8c14 | ||
1649 | # define R600_NUM_GS_STACK_ENTRIES(x) ((x) << 0) | ||
1650 | # define R600_NUM_ES_STACK_ENTRIES(x) ((x) << 16) | ||
1651 | #define R600_SQ_MS_FIFO_SIZES 0x8cf0 | ||
1652 | # define R600_CACHE_FIFO_SIZE(x) ((x) << 0) | ||
1653 | # define R600_FETCH_FIFO_HIWATER(x) ((x) << 8) | ||
1654 | # define R600_DONE_FIFO_HIWATER(x) ((x) << 16) | ||
1655 | # define R600_ALU_UPDATE_FIFO_HIWATER(x) ((x) << 24) | ||
1656 | #define R700_SQ_DYN_GPR_SIZE_SIMD_AB_0 0x8db0 | ||
1657 | # define R700_SIMDA_RING0(x) ((x) << 0) | ||
1658 | # define R700_SIMDA_RING1(x) ((x) << 8) | ||
1659 | # define R700_SIMDB_RING0(x) ((x) << 16) | ||
1660 | # define R700_SIMDB_RING1(x) ((x) << 24) | ||
1661 | #define R700_SQ_DYN_GPR_SIZE_SIMD_AB_1 0x8db4 | ||
1662 | #define R700_SQ_DYN_GPR_SIZE_SIMD_AB_2 0x8db8 | ||
1663 | #define R700_SQ_DYN_GPR_SIZE_SIMD_AB_3 0x8dbc | ||
1664 | #define R700_SQ_DYN_GPR_SIZE_SIMD_AB_4 0x8dc0 | ||
1665 | #define R700_SQ_DYN_GPR_SIZE_SIMD_AB_5 0x8dc4 | ||
1666 | #define R700_SQ_DYN_GPR_SIZE_SIMD_AB_6 0x8dc8 | ||
1667 | #define R700_SQ_DYN_GPR_SIZE_SIMD_AB_7 0x8dcc | ||
1668 | |||
1669 | #define R600_SPI_PS_IN_CONTROL_0 0x286cc | ||
1670 | # define R600_NUM_INTERP(x) ((x) << 0) | ||
1671 | # define R600_POSITION_ENA (1 << 8) | ||
1672 | # define R600_POSITION_CENTROID (1 << 9) | ||
1673 | # define R600_POSITION_ADDR(x) ((x) << 10) | ||
1674 | # define R600_PARAM_GEN(x) ((x) << 15) | ||
1675 | # define R600_PARAM_GEN_ADDR(x) ((x) << 19) | ||
1676 | # define R600_BARYC_SAMPLE_CNTL(x) ((x) << 26) | ||
1677 | # define R600_PERSP_GRADIENT_ENA (1 << 28) | ||
1678 | # define R600_LINEAR_GRADIENT_ENA (1 << 29) | ||
1679 | # define R600_POSITION_SAMPLE (1 << 30) | ||
1680 | # define R600_BARYC_AT_SAMPLE_ENA (1 << 31) | ||
1681 | #define R600_SPI_PS_IN_CONTROL_1 0x286d0 | ||
1682 | # define R600_GEN_INDEX_PIX (1 << 0) | ||
1683 | # define R600_GEN_INDEX_PIX_ADDR(x) ((x) << 1) | ||
1684 | # define R600_FRONT_FACE_ENA (1 << 8) | ||
1685 | # define R600_FRONT_FACE_CHAN(x) ((x) << 9) | ||
1686 | # define R600_FRONT_FACE_ALL_BITS (1 << 11) | ||
1687 | # define R600_FRONT_FACE_ADDR(x) ((x) << 12) | ||
1688 | # define R600_FOG_ADDR(x) ((x) << 17) | ||
1689 | # define R600_FIXED_PT_POSITION_ENA (1 << 24) | ||
1690 | # define R600_FIXED_PT_POSITION_ADDR(x) ((x) << 25) | ||
1691 | # define R700_POSITION_ULC (1 << 30) | ||
1692 | #define R600_SPI_INPUT_Z 0x286d8 | ||
1693 | |||
1694 | #define R600_SPI_CONFIG_CNTL 0x9100 | ||
1695 | # define R600_GPR_WRITE_PRIORITY(x) ((x) << 0) | ||
1696 | # define R600_DISABLE_INTERP_1 (1 << 5) | ||
1697 | #define R600_SPI_CONFIG_CNTL_1 0x913c | ||
1698 | # define R600_VTX_DONE_DELAY(x) ((x) << 0) | ||
1699 | # define R600_INTERP_ONE_PRIM_PER_ROW (1 << 4) | ||
1700 | |||
1701 | #define R600_GB_TILING_CONFIG 0x98f0 | ||
1702 | # define R600_PIPE_TILING(x) ((x) << 1) | ||
1703 | # define R600_BANK_TILING(x) ((x) << 4) | ||
1704 | # define R600_GROUP_SIZE(x) ((x) << 6) | ||
1705 | # define R600_ROW_TILING(x) ((x) << 8) | ||
1706 | # define R600_BANK_SWAPS(x) ((x) << 11) | ||
1707 | # define R600_SAMPLE_SPLIT(x) ((x) << 14) | ||
1708 | # define R600_BACKEND_MAP(x) ((x) << 16) | ||
1709 | #define R600_DCP_TILING_CONFIG 0x6ca0 | ||
1710 | #define R600_HDP_TILING_CONFIG 0x2f3c | ||
1711 | |||
1712 | #define R600_CC_RB_BACKEND_DISABLE 0x98f4 | ||
1713 | #define R700_CC_SYS_RB_BACKEND_DISABLE 0x3f88 | ||
1714 | # define R600_BACKEND_DISABLE(x) ((x) << 16) | ||
1715 | |||
1716 | #define R600_CC_GC_SHADER_PIPE_CONFIG 0x8950 | ||
1717 | #define R600_GC_USER_SHADER_PIPE_CONFIG 0x8954 | ||
1718 | # define R600_INACTIVE_QD_PIPES(x) ((x) << 8) | ||
1719 | # define R600_INACTIVE_QD_PIPES_MASK (0xff << 8) | ||
1720 | # define R600_INACTIVE_SIMDS(x) ((x) << 16) | ||
1721 | # define R600_INACTIVE_SIMDS_MASK (0xff << 16) | ||
1722 | |||
1723 | #define R700_CGTS_SYS_TCC_DISABLE 0x3f90 | ||
1724 | #define R700_CGTS_USER_SYS_TCC_DISABLE 0x3f94 | ||
1725 | #define R700_CGTS_TCC_DISABLE 0x9148 | ||
1726 | #define R700_CGTS_USER_TCC_DISABLE 0x914c | ||
1727 | |||
1184 | /* Constants */ | 1728 | /* Constants */ |
1185 | #define RADEON_MAX_USEC_TIMEOUT 100000 /* 100 ms */ | 1729 | #define RADEON_MAX_USEC_TIMEOUT 100000 /* 100 ms */ |
1186 | 1730 | ||
@@ -1190,6 +1734,11 @@ extern int r300_do_cp_cmdbuf(struct drm_device *dev, | |||
1190 | #define RADEON_LAST_SWI_REG RADEON_SCRATCH_REG3 | 1734 | #define RADEON_LAST_SWI_REG RADEON_SCRATCH_REG3 |
1191 | #define RADEON_LAST_DISPATCH 1 | 1735 | #define RADEON_LAST_DISPATCH 1 |
1192 | 1736 | ||
1737 | #define R600_LAST_FRAME_REG R600_SCRATCH_REG0 | ||
1738 | #define R600_LAST_DISPATCH_REG R600_SCRATCH_REG1 | ||
1739 | #define R600_LAST_CLEAR_REG R600_SCRATCH_REG2 | ||
1740 | #define R600_LAST_SWI_REG R600_SCRATCH_REG3 | ||
1741 | |||
1193 | #define RADEON_MAX_VB_AGE 0x7fffffff | 1742 | #define RADEON_MAX_VB_AGE 0x7fffffff |
1194 | #define RADEON_MAX_VB_VERTS (0xffff) | 1743 | #define RADEON_MAX_VB_VERTS (0xffff) |
1195 | 1744 | ||
@@ -1198,7 +1747,15 @@ extern int r300_do_cp_cmdbuf(struct drm_device *dev, | |||
1198 | #define RADEON_PCIGART_TABLE_SIZE (32*1024) | 1747 | #define RADEON_PCIGART_TABLE_SIZE (32*1024) |
1199 | 1748 | ||
1200 | #define RADEON_READ(reg) DRM_READ32( dev_priv->mmio, (reg) ) | 1749 | #define RADEON_READ(reg) DRM_READ32( dev_priv->mmio, (reg) ) |
1201 | #define RADEON_WRITE(reg,val) DRM_WRITE32( dev_priv->mmio, (reg), (val) ) | 1750 | #define RADEON_WRITE(reg, val) \ |
1751 | do { \ | ||
1752 | if (reg < 0x10000) { \ | ||
1753 | DRM_WRITE32(dev_priv->mmio, (reg), (val)); \ | ||
1754 | } else { \ | ||
1755 | DRM_WRITE32(dev_priv->mmio, RADEON_MM_INDEX, (reg)); \ | ||
1756 | DRM_WRITE32(dev_priv->mmio, RADEON_MM_DATA, (val)); \ | ||
1757 | } \ | ||
1758 | } while (0) | ||
1202 | #define RADEON_READ8(reg) DRM_READ8( dev_priv->mmio, (reg) ) | 1759 | #define RADEON_READ8(reg) DRM_READ8( dev_priv->mmio, (reg) ) |
1203 | #define RADEON_WRITE8(reg,val) DRM_WRITE8( dev_priv->mmio, (reg), (val) ) | 1760 | #define RADEON_WRITE8(reg,val) DRM_WRITE8( dev_priv->mmio, (reg), (val) ) |
1204 | 1761 | ||
@@ -1238,11 +1795,19 @@ do { \ | |||
1238 | RADEON_WRITE(RS690_MC_INDEX, RS690_MC_INDEX_WR_ACK); \ | 1795 | RADEON_WRITE(RS690_MC_INDEX, RS690_MC_INDEX_WR_ACK); \ |
1239 | } while (0) | 1796 | } while (0) |
1240 | 1797 | ||
1798 | #define RS600_WRITE_MCIND(addr, val) \ | ||
1799 | do { \ | ||
1800 | RADEON_WRITE(RS600_MC_INDEX, RS600_MC_IND_WR_EN | RS600_MC_IND_CITF_ARB0 | ((addr) & RS600_MC_ADDR_MASK)); \ | ||
1801 | RADEON_WRITE(RS600_MC_DATA, val); \ | ||
1802 | } while (0) | ||
1803 | |||
1241 | #define IGP_WRITE_MCIND(addr, val) \ | 1804 | #define IGP_WRITE_MCIND(addr, val) \ |
1242 | do { \ | 1805 | do { \ |
1243 | if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS690) || \ | 1806 | if (((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS690) || \ |
1244 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS740)) \ | 1807 | ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS740)) \ |
1245 | RS690_WRITE_MCIND(addr, val); \ | 1808 | RS690_WRITE_MCIND(addr, val); \ |
1809 | else if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RS600) \ | ||
1810 | RS600_WRITE_MCIND(addr, val); \ | ||
1246 | else \ | 1811 | else \ |
1247 | RS480_WRITE_MCIND(addr, val); \ | 1812 | RS480_WRITE_MCIND(addr, val); \ |
1248 | } while (0) | 1813 | } while (0) |
@@ -1346,7 +1911,11 @@ do { \ | |||
1346 | struct drm_radeon_master_private *master_priv = file_priv->master->driver_priv; \ | 1911 | struct drm_radeon_master_private *master_priv = file_priv->master->driver_priv; \ |
1347 | drm_radeon_sarea_t *sarea_priv = master_priv->sarea_priv; \ | 1912 | drm_radeon_sarea_t *sarea_priv = master_priv->sarea_priv; \ |
1348 | if ( sarea_priv->last_dispatch >= RADEON_MAX_VB_AGE ) { \ | 1913 | if ( sarea_priv->last_dispatch >= RADEON_MAX_VB_AGE ) { \ |
1349 | int __ret = radeon_do_cp_idle( dev_priv ); \ | 1914 | int __ret; \ |
1915 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) \ | ||
1916 | __ret = r600_do_cp_idle(dev_priv); \ | ||
1917 | else \ | ||
1918 | __ret = radeon_do_cp_idle(dev_priv); \ | ||
1350 | if ( __ret ) return __ret; \ | 1919 | if ( __ret ) return __ret; \ |
1351 | sarea_priv->last_dispatch = 0; \ | 1920 | sarea_priv->last_dispatch = 0; \ |
1352 | radeon_freelist_reset( dev ); \ | 1921 | radeon_freelist_reset( dev ); \ |
@@ -1368,21 +1937,40 @@ do { \ | |||
1368 | OUT_RING( age ); \ | 1937 | OUT_RING( age ); \ |
1369 | } while (0) | 1938 | } while (0) |
1370 | 1939 | ||
1940 | #define R600_DISPATCH_AGE(age) do { \ | ||
1941 | OUT_RING(CP_PACKET3(R600_IT_SET_CONFIG_REG, 1)); \ | ||
1942 | OUT_RING((R600_LAST_DISPATCH_REG - R600_SET_CONFIG_REG_OFFSET) >> 2); \ | ||
1943 | OUT_RING(age); \ | ||
1944 | } while (0) | ||
1945 | |||
1946 | #define R600_FRAME_AGE(age) do { \ | ||
1947 | OUT_RING(CP_PACKET3(R600_IT_SET_CONFIG_REG, 1)); \ | ||
1948 | OUT_RING((R600_LAST_FRAME_REG - R600_SET_CONFIG_REG_OFFSET) >> 2); \ | ||
1949 | OUT_RING(age); \ | ||
1950 | } while (0) | ||
1951 | |||
1952 | #define R600_CLEAR_AGE(age) do { \ | ||
1953 | OUT_RING(CP_PACKET3(R600_IT_SET_CONFIG_REG, 1)); \ | ||
1954 | OUT_RING((R600_LAST_CLEAR_REG - R600_SET_CONFIG_REG_OFFSET) >> 2); \ | ||
1955 | OUT_RING(age); \ | ||
1956 | } while (0) | ||
1957 | |||
1371 | /* ================================================================ | 1958 | /* ================================================================ |
1372 | * Ring control | 1959 | * Ring control |
1373 | */ | 1960 | */ |
1374 | 1961 | ||
1375 | #define RADEON_VERBOSE 0 | 1962 | #define RADEON_VERBOSE 0 |
1376 | 1963 | ||
1377 | #define RING_LOCALS int write, _nr; unsigned int mask; u32 *ring; | 1964 | #define RING_LOCALS int write, _nr, _align_nr; unsigned int mask; u32 *ring; |
1378 | 1965 | ||
1379 | #define BEGIN_RING( n ) do { \ | 1966 | #define BEGIN_RING( n ) do { \ |
1380 | if ( RADEON_VERBOSE ) { \ | 1967 | if ( RADEON_VERBOSE ) { \ |
1381 | DRM_INFO( "BEGIN_RING( %d )\n", (n)); \ | 1968 | DRM_INFO( "BEGIN_RING( %d )\n", (n)); \ |
1382 | } \ | 1969 | } \ |
1383 | if ( dev_priv->ring.space <= (n) * sizeof(u32) ) { \ | 1970 | _align_nr = (n + 0xf) & ~0xf; \ |
1971 | if (dev_priv->ring.space <= (_align_nr * sizeof(u32))) { \ | ||
1384 | COMMIT_RING(); \ | 1972 | COMMIT_RING(); \ |
1385 | radeon_wait_ring( dev_priv, (n) * sizeof(u32) ); \ | 1973 | radeon_wait_ring( dev_priv, _align_nr * sizeof(u32)); \ |
1386 | } \ | 1974 | } \ |
1387 | _nr = n; dev_priv->ring.space -= (n) * sizeof(u32); \ | 1975 | _nr = n; dev_priv->ring.space -= (n) * sizeof(u32); \ |
1388 | ring = dev_priv->ring.start; \ | 1976 | ring = dev_priv->ring.start; \ |
@@ -1399,19 +1987,16 @@ do { \ | |||
1399 | DRM_ERROR( \ | 1987 | DRM_ERROR( \ |
1400 | "ADVANCE_RING(): mismatch: nr: %x write: %x line: %d\n", \ | 1988 | "ADVANCE_RING(): mismatch: nr: %x write: %x line: %d\n", \ |
1401 | ((dev_priv->ring.tail + _nr) & mask), \ | 1989 | ((dev_priv->ring.tail + _nr) & mask), \ |
1402 | write, __LINE__); \ | 1990 | write, __LINE__); \ |
1403 | } else \ | 1991 | } else \ |
1404 | dev_priv->ring.tail = write; \ | 1992 | dev_priv->ring.tail = write; \ |
1405 | } while (0) | 1993 | } while (0) |
1406 | 1994 | ||
1995 | extern void radeon_commit_ring(drm_radeon_private_t *dev_priv); | ||
1996 | |||
1407 | #define COMMIT_RING() do { \ | 1997 | #define COMMIT_RING() do { \ |
1408 | /* Flush writes to ring */ \ | 1998 | radeon_commit_ring(dev_priv); \ |
1409 | DRM_MEMORYBARRIER(); \ | 1999 | } while(0) |
1410 | GET_RING_HEAD( dev_priv ); \ | ||
1411 | RADEON_WRITE( RADEON_CP_RB_WPTR, dev_priv->ring.tail ); \ | ||
1412 | /* read from PCI bus to ensure correct posting */ \ | ||
1413 | RADEON_READ( RADEON_CP_RB_RPTR ); \ | ||
1414 | } while (0) | ||
1415 | 2000 | ||
1416 | #define OUT_RING( x ) do { \ | 2001 | #define OUT_RING( x ) do { \ |
1417 | if ( RADEON_VERBOSE ) { \ | 2002 | if ( RADEON_VERBOSE ) { \ |
diff --git a/drivers/gpu/drm/radeon/radeon_irq.c b/drivers/gpu/drm/radeon/radeon_irq.c index 8289e16419a8..9836c705a952 100644 --- a/drivers/gpu/drm/radeon/radeon_irq.c +++ b/drivers/gpu/drm/radeon/radeon_irq.c | |||
@@ -65,7 +65,7 @@ int radeon_enable_vblank(struct drm_device *dev, int crtc) | |||
65 | { | 65 | { |
66 | drm_radeon_private_t *dev_priv = dev->dev_private; | 66 | drm_radeon_private_t *dev_priv = dev->dev_private; |
67 | 67 | ||
68 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS690) { | 68 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600) { |
69 | switch (crtc) { | 69 | switch (crtc) { |
70 | case 0: | 70 | case 0: |
71 | r500_vbl_irq_set_state(dev, R500_D1MODE_INT_MASK, 1); | 71 | r500_vbl_irq_set_state(dev, R500_D1MODE_INT_MASK, 1); |
@@ -100,7 +100,7 @@ void radeon_disable_vblank(struct drm_device *dev, int crtc) | |||
100 | { | 100 | { |
101 | drm_radeon_private_t *dev_priv = dev->dev_private; | 101 | drm_radeon_private_t *dev_priv = dev->dev_private; |
102 | 102 | ||
103 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS690) { | 103 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600) { |
104 | switch (crtc) { | 104 | switch (crtc) { |
105 | case 0: | 105 | case 0: |
106 | r500_vbl_irq_set_state(dev, R500_D1MODE_INT_MASK, 0); | 106 | r500_vbl_irq_set_state(dev, R500_D1MODE_INT_MASK, 0); |
@@ -135,7 +135,7 @@ static inline u32 radeon_acknowledge_irqs(drm_radeon_private_t *dev_priv, u32 *r | |||
135 | u32 irq_mask = RADEON_SW_INT_TEST; | 135 | u32 irq_mask = RADEON_SW_INT_TEST; |
136 | 136 | ||
137 | *r500_disp_int = 0; | 137 | *r500_disp_int = 0; |
138 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS690) { | 138 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600) { |
139 | /* vbl interrupts in a different place */ | 139 | /* vbl interrupts in a different place */ |
140 | 140 | ||
141 | if (irqs & R500_DISPLAY_INT_STATUS) { | 141 | if (irqs & R500_DISPLAY_INT_STATUS) { |
@@ -202,7 +202,7 @@ irqreturn_t radeon_driver_irq_handler(DRM_IRQ_ARGS) | |||
202 | DRM_WAKEUP(&dev_priv->swi_queue); | 202 | DRM_WAKEUP(&dev_priv->swi_queue); |
203 | 203 | ||
204 | /* VBLANK interrupt */ | 204 | /* VBLANK interrupt */ |
205 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS690) { | 205 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600) { |
206 | if (r500_disp_int & R500_D1_VBLANK_INTERRUPT) | 206 | if (r500_disp_int & R500_D1_VBLANK_INTERRUPT) |
207 | drm_handle_vblank(dev, 0); | 207 | drm_handle_vblank(dev, 0); |
208 | if (r500_disp_int & R500_D2_VBLANK_INTERRUPT) | 208 | if (r500_disp_int & R500_D2_VBLANK_INTERRUPT) |
@@ -265,7 +265,7 @@ u32 radeon_get_vblank_counter(struct drm_device *dev, int crtc) | |||
265 | return -EINVAL; | 265 | return -EINVAL; |
266 | } | 266 | } |
267 | 267 | ||
268 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS690) { | 268 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600) { |
269 | if (crtc == 0) | 269 | if (crtc == 0) |
270 | return RADEON_READ(R500_D1CRTC_FRAME_COUNT); | 270 | return RADEON_READ(R500_D1CRTC_FRAME_COUNT); |
271 | else | 271 | else |
@@ -327,7 +327,7 @@ void radeon_driver_irq_preinstall(struct drm_device * dev) | |||
327 | u32 dummy; | 327 | u32 dummy; |
328 | 328 | ||
329 | /* Disable *all* interrupts */ | 329 | /* Disable *all* interrupts */ |
330 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS690) | 330 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600) |
331 | RADEON_WRITE(R500_DxMODE_INT_MASK, 0); | 331 | RADEON_WRITE(R500_DxMODE_INT_MASK, 0); |
332 | RADEON_WRITE(RADEON_GEN_INT_CNTL, 0); | 332 | RADEON_WRITE(RADEON_GEN_INT_CNTL, 0); |
333 | 333 | ||
@@ -357,7 +357,7 @@ void radeon_driver_irq_uninstall(struct drm_device * dev) | |||
357 | if (!dev_priv) | 357 | if (!dev_priv) |
358 | return; | 358 | return; |
359 | 359 | ||
360 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS690) | 360 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_RS600) |
361 | RADEON_WRITE(R500_DxMODE_INT_MASK, 0); | 361 | RADEON_WRITE(R500_DxMODE_INT_MASK, 0); |
362 | /* Disable *all* interrupts */ | 362 | /* Disable *all* interrupts */ |
363 | RADEON_WRITE(RADEON_GEN_INT_CNTL, 0); | 363 | RADEON_WRITE(RADEON_GEN_INT_CNTL, 0); |
diff --git a/drivers/gpu/drm/radeon/radeon_state.c b/drivers/gpu/drm/radeon/radeon_state.c index ef940a079dcb..fa728ec6ed34 100644 --- a/drivers/gpu/drm/radeon/radeon_state.c +++ b/drivers/gpu/drm/radeon/radeon_state.c | |||
@@ -1556,9 +1556,15 @@ static void radeon_cp_discard_buffer(struct drm_device *dev, struct drm_master * | |||
1556 | buf_priv->age = ++master_priv->sarea_priv->last_dispatch; | 1556 | buf_priv->age = ++master_priv->sarea_priv->last_dispatch; |
1557 | 1557 | ||
1558 | /* Emit the vertex buffer age */ | 1558 | /* Emit the vertex buffer age */ |
1559 | BEGIN_RING(2); | 1559 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) { |
1560 | RADEON_DISPATCH_AGE(buf_priv->age); | 1560 | BEGIN_RING(3); |
1561 | ADVANCE_RING(); | 1561 | R600_DISPATCH_AGE(buf_priv->age); |
1562 | ADVANCE_RING(); | ||
1563 | } else { | ||
1564 | BEGIN_RING(2); | ||
1565 | RADEON_DISPATCH_AGE(buf_priv->age); | ||
1566 | ADVANCE_RING(); | ||
1567 | } | ||
1562 | 1568 | ||
1563 | buf->pending = 1; | 1569 | buf->pending = 1; |
1564 | buf->used = 0; | 1570 | buf->used = 0; |
@@ -1980,7 +1986,7 @@ static int alloc_surface(drm_radeon_surface_alloc_t *new, | |||
1980 | 1986 | ||
1981 | /* find a virtual surface */ | 1987 | /* find a virtual surface */ |
1982 | for (i = 0; i < 2 * RADEON_MAX_SURFACES; i++) | 1988 | for (i = 0; i < 2 * RADEON_MAX_SURFACES; i++) |
1983 | if (dev_priv->virt_surfaces[i].file_priv == 0) | 1989 | if (dev_priv->virt_surfaces[i].file_priv == NULL) |
1984 | break; | 1990 | break; |
1985 | if (i == 2 * RADEON_MAX_SURFACES) { | 1991 | if (i == 2 * RADEON_MAX_SURFACES) { |
1986 | return -1; | 1992 | return -1; |
@@ -2473,24 +2479,25 @@ static int radeon_cp_indirect(struct drm_device *dev, void *data, struct drm_fil | |||
2473 | 2479 | ||
2474 | buf->used = indirect->end; | 2480 | buf->used = indirect->end; |
2475 | 2481 | ||
2476 | /* Wait for the 3D stream to idle before the indirect buffer | ||
2477 | * containing 2D acceleration commands is processed. | ||
2478 | */ | ||
2479 | BEGIN_RING(2); | ||
2480 | |||
2481 | RADEON_WAIT_UNTIL_3D_IDLE(); | ||
2482 | |||
2483 | ADVANCE_RING(); | ||
2484 | |||
2485 | /* Dispatch the indirect buffer full of commands from the | 2482 | /* Dispatch the indirect buffer full of commands from the |
2486 | * X server. This is insecure and is thus only available to | 2483 | * X server. This is insecure and is thus only available to |
2487 | * privileged clients. | 2484 | * privileged clients. |
2488 | */ | 2485 | */ |
2489 | radeon_cp_dispatch_indirect(dev, buf, indirect->start, indirect->end); | 2486 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) |
2490 | if (indirect->discard) { | 2487 | r600_cp_dispatch_indirect(dev, buf, indirect->start, indirect->end); |
2491 | radeon_cp_discard_buffer(dev, file_priv->master, buf); | 2488 | else { |
2489 | /* Wait for the 3D stream to idle before the indirect buffer | ||
2490 | * containing 2D acceleration commands is processed. | ||
2491 | */ | ||
2492 | BEGIN_RING(2); | ||
2493 | RADEON_WAIT_UNTIL_3D_IDLE(); | ||
2494 | ADVANCE_RING(); | ||
2495 | radeon_cp_dispatch_indirect(dev, buf, indirect->start, indirect->end); | ||
2492 | } | 2496 | } |
2493 | 2497 | ||
2498 | if (indirect->discard) | ||
2499 | radeon_cp_discard_buffer(dev, file_priv->master, buf); | ||
2500 | |||
2494 | COMMIT_RING(); | 2501 | COMMIT_RING(); |
2495 | return 0; | 2502 | return 0; |
2496 | } | 2503 | } |
@@ -3010,14 +3017,14 @@ static int radeon_cp_getparam(struct drm_device *dev, void *data, struct drm_fil | |||
3010 | break; | 3017 | break; |
3011 | case RADEON_PARAM_LAST_FRAME: | 3018 | case RADEON_PARAM_LAST_FRAME: |
3012 | dev_priv->stats.last_frame_reads++; | 3019 | dev_priv->stats.last_frame_reads++; |
3013 | value = GET_SCRATCH(0); | 3020 | value = GET_SCRATCH(dev_priv, 0); |
3014 | break; | 3021 | break; |
3015 | case RADEON_PARAM_LAST_DISPATCH: | 3022 | case RADEON_PARAM_LAST_DISPATCH: |
3016 | value = GET_SCRATCH(1); | 3023 | value = GET_SCRATCH(dev_priv, 1); |
3017 | break; | 3024 | break; |
3018 | case RADEON_PARAM_LAST_CLEAR: | 3025 | case RADEON_PARAM_LAST_CLEAR: |
3019 | dev_priv->stats.last_clear_reads++; | 3026 | dev_priv->stats.last_clear_reads++; |
3020 | value = GET_SCRATCH(2); | 3027 | value = GET_SCRATCH(dev_priv, 2); |
3021 | break; | 3028 | break; |
3022 | case RADEON_PARAM_IRQ_NR: | 3029 | case RADEON_PARAM_IRQ_NR: |
3023 | value = drm_dev_to_irq(dev); | 3030 | value = drm_dev_to_irq(dev); |
@@ -3052,7 +3059,10 @@ static int radeon_cp_getparam(struct drm_device *dev, void *data, struct drm_fil | |||
3052 | case RADEON_PARAM_SCRATCH_OFFSET: | 3059 | case RADEON_PARAM_SCRATCH_OFFSET: |
3053 | if (!dev_priv->writeback_works) | 3060 | if (!dev_priv->writeback_works) |
3054 | return -EINVAL; | 3061 | return -EINVAL; |
3055 | value = RADEON_SCRATCH_REG_OFFSET; | 3062 | if ((dev_priv->flags & RADEON_FAMILY_MASK) >= CHIP_R600) |
3063 | value = R600_SCRATCH_REG_OFFSET; | ||
3064 | else | ||
3065 | value = RADEON_SCRATCH_REG_OFFSET; | ||
3056 | break; | 3066 | break; |
3057 | case RADEON_PARAM_CARD_TYPE: | 3067 | case RADEON_PARAM_CARD_TYPE: |
3058 | if (dev_priv->flags & RADEON_IS_PCIE) | 3068 | if (dev_priv->flags & RADEON_IS_PCIE) |
@@ -3155,6 +3165,7 @@ void radeon_driver_preclose(struct drm_device *dev, struct drm_file *file_priv) | |||
3155 | 3165 | ||
3156 | void radeon_driver_lastclose(struct drm_device *dev) | 3166 | void radeon_driver_lastclose(struct drm_device *dev) |
3157 | { | 3167 | { |
3168 | radeon_surfaces_release(PCIGART_FILE_PRIV, dev->dev_private); | ||
3158 | radeon_do_release(dev); | 3169 | radeon_do_release(dev); |
3159 | } | 3170 | } |
3160 | 3171 | ||
diff --git a/drivers/gpu/drm/savage/savage_bci.c b/drivers/gpu/drm/savage/savage_bci.c index d465b2f9c1cd..456cd040f31a 100644 --- a/drivers/gpu/drm/savage/savage_bci.c +++ b/drivers/gpu/drm/savage/savage_bci.c | |||
@@ -599,8 +599,8 @@ int savage_driver_firstopen(struct drm_device *dev) | |||
599 | drm_mtrr_add(dev_priv->mtrr[2].base, | 599 | drm_mtrr_add(dev_priv->mtrr[2].base, |
600 | dev_priv->mtrr[2].size, DRM_MTRR_WC); | 600 | dev_priv->mtrr[2].size, DRM_MTRR_WC); |
601 | } else { | 601 | } else { |
602 | DRM_ERROR("strange pci_resource_len %08lx\n", | 602 | DRM_ERROR("strange pci_resource_len %08llx\n", |
603 | drm_get_resource_len(dev, 0)); | 603 | (unsigned long long)drm_get_resource_len(dev, 0)); |
604 | } | 604 | } |
605 | } else if (dev_priv->chipset != S3_SUPERSAVAGE && | 605 | } else if (dev_priv->chipset != S3_SUPERSAVAGE && |
606 | dev_priv->chipset != S3_SAVAGE2000) { | 606 | dev_priv->chipset != S3_SAVAGE2000) { |
@@ -620,8 +620,8 @@ int savage_driver_firstopen(struct drm_device *dev) | |||
620 | drm_mtrr_add(dev_priv->mtrr[0].base, | 620 | drm_mtrr_add(dev_priv->mtrr[0].base, |
621 | dev_priv->mtrr[0].size, DRM_MTRR_WC); | 621 | dev_priv->mtrr[0].size, DRM_MTRR_WC); |
622 | } else { | 622 | } else { |
623 | DRM_ERROR("strange pci_resource_len %08lx\n", | 623 | DRM_ERROR("strange pci_resource_len %08llx\n", |
624 | drm_get_resource_len(dev, 1)); | 624 | (unsigned long long)drm_get_resource_len(dev, 1)); |
625 | } | 625 | } |
626 | } else { | 626 | } else { |
627 | mmio_base = drm_get_resource_start(dev, 0); | 627 | mmio_base = drm_get_resource_start(dev, 0); |
diff --git a/drivers/gpu/drm/via/via_drv.c b/drivers/gpu/drm/via/via_drv.c index 0993b441fc42..bc2f51843005 100644 --- a/drivers/gpu/drm/via/via_drv.c +++ b/drivers/gpu/drm/via/via_drv.c | |||
@@ -28,11 +28,6 @@ | |||
28 | 28 | ||
29 | #include "drm_pciids.h" | 29 | #include "drm_pciids.h" |
30 | 30 | ||
31 | static int dri_library_name(struct drm_device *dev, char *buf) | ||
32 | { | ||
33 | return snprintf(buf, PAGE_SIZE, "unichrome"); | ||
34 | } | ||
35 | |||
36 | static struct pci_device_id pciidlist[] = { | 31 | static struct pci_device_id pciidlist[] = { |
37 | viadrv_PCI_IDS | 32 | viadrv_PCI_IDS |
38 | }; | 33 | }; |
@@ -52,7 +47,6 @@ static struct drm_driver driver = { | |||
52 | .irq_uninstall = via_driver_irq_uninstall, | 47 | .irq_uninstall = via_driver_irq_uninstall, |
53 | .irq_handler = via_driver_irq_handler, | 48 | .irq_handler = via_driver_irq_handler, |
54 | .dma_quiescent = via_driver_dma_quiescent, | 49 | .dma_quiescent = via_driver_dma_quiescent, |
55 | .dri_library_name = dri_library_name, | ||
56 | .reclaim_buffers = drm_core_reclaim_buffers, | 50 | .reclaim_buffers = drm_core_reclaim_buffers, |
57 | .reclaim_buffers_locked = NULL, | 51 | .reclaim_buffers_locked = NULL, |
58 | .reclaim_buffers_idlelocked = via_reclaim_buffers_locked, | 52 | .reclaim_buffers_idlelocked = via_reclaim_buffers_locked, |
diff --git a/include/drm/drmP.h b/include/drm/drmP.h index c19a93c3be85..c8c422151431 100644 --- a/include/drm/drmP.h +++ b/include/drm/drmP.h | |||
@@ -281,16 +281,16 @@ typedef int drm_ioctl_compat_t(struct file *filp, unsigned int cmd, | |||
281 | 281 | ||
282 | struct drm_ioctl_desc { | 282 | struct drm_ioctl_desc { |
283 | unsigned int cmd; | 283 | unsigned int cmd; |
284 | drm_ioctl_t *func; | ||
285 | int flags; | 284 | int flags; |
285 | drm_ioctl_t *func; | ||
286 | }; | 286 | }; |
287 | 287 | ||
288 | /** | 288 | /** |
289 | * Creates a driver or general drm_ioctl_desc array entry for the given | 289 | * Creates a driver or general drm_ioctl_desc array entry for the given |
290 | * ioctl, for use by drm_ioctl(). | 290 | * ioctl, for use by drm_ioctl(). |
291 | */ | 291 | */ |
292 | #define DRM_IOCTL_DEF(ioctl, func, flags) \ | 292 | #define DRM_IOCTL_DEF(ioctl, _func, _flags) \ |
293 | [DRM_IOCTL_NR(ioctl)] = {ioctl, func, flags} | 293 | [DRM_IOCTL_NR(ioctl)] = {.cmd = ioctl, .func = _func, .flags = _flags} |
294 | 294 | ||
295 | struct drm_magic_entry { | 295 | struct drm_magic_entry { |
296 | struct list_head head; | 296 | struct list_head head; |
@@ -523,19 +523,32 @@ struct drm_mm { | |||
523 | 523 | ||
524 | 524 | ||
525 | /** | 525 | /** |
526 | * Kernel side of a mapping | ||
527 | */ | ||
528 | struct drm_local_map { | ||
529 | resource_size_t offset; /**< Requested physical address (0 for SAREA)*/ | ||
530 | unsigned long size; /**< Requested physical size (bytes) */ | ||
531 | enum drm_map_type type; /**< Type of memory to map */ | ||
532 | enum drm_map_flags flags; /**< Flags */ | ||
533 | void *handle; /**< User-space: "Handle" to pass to mmap() */ | ||
534 | /**< Kernel-space: kernel-virtual address */ | ||
535 | int mtrr; /**< MTRR slot used */ | ||
536 | }; | ||
537 | |||
538 | typedef struct drm_local_map drm_local_map_t; | ||
539 | |||
540 | /** | ||
526 | * Mappings list | 541 | * Mappings list |
527 | */ | 542 | */ |
528 | struct drm_map_list { | 543 | struct drm_map_list { |
529 | struct list_head head; /**< list head */ | 544 | struct list_head head; /**< list head */ |
530 | struct drm_hash_item hash; | 545 | struct drm_hash_item hash; |
531 | struct drm_map *map; /**< mapping */ | 546 | struct drm_local_map *map; /**< mapping */ |
532 | uint64_t user_token; | 547 | uint64_t user_token; |
533 | struct drm_master *master; | 548 | struct drm_master *master; |
534 | struct drm_mm_node *file_offset_node; /**< fake offset */ | 549 | struct drm_mm_node *file_offset_node; /**< fake offset */ |
535 | }; | 550 | }; |
536 | 551 | ||
537 | typedef struct drm_map drm_local_map_t; | ||
538 | |||
539 | /** | 552 | /** |
540 | * Context handle list | 553 | * Context handle list |
541 | */ | 554 | */ |
@@ -560,7 +573,7 @@ struct drm_ati_pcigart_info { | |||
560 | dma_addr_t bus_addr; | 573 | dma_addr_t bus_addr; |
561 | dma_addr_t table_mask; | 574 | dma_addr_t table_mask; |
562 | struct drm_dma_handle *table_handle; | 575 | struct drm_dma_handle *table_handle; |
563 | drm_local_map_t mapping; | 576 | struct drm_local_map mapping; |
564 | int table_size; | 577 | int table_size; |
565 | }; | 578 | }; |
566 | 579 | ||
@@ -675,7 +688,6 @@ struct drm_driver { | |||
675 | int (*kernel_context_switch) (struct drm_device *dev, int old, | 688 | int (*kernel_context_switch) (struct drm_device *dev, int old, |
676 | int new); | 689 | int new); |
677 | void (*kernel_context_switch_unlock) (struct drm_device *dev); | 690 | void (*kernel_context_switch_unlock) (struct drm_device *dev); |
678 | int (*dri_library_name) (struct drm_device *dev, char *buf); | ||
679 | 691 | ||
680 | /** | 692 | /** |
681 | * get_vblank_counter - get raw hardware vblank counter | 693 | * get_vblank_counter - get raw hardware vblank counter |
@@ -747,8 +759,8 @@ struct drm_driver { | |||
747 | struct drm_file *file_priv); | 759 | struct drm_file *file_priv); |
748 | void (*reclaim_buffers_idlelocked) (struct drm_device *dev, | 760 | void (*reclaim_buffers_idlelocked) (struct drm_device *dev, |
749 | struct drm_file *file_priv); | 761 | struct drm_file *file_priv); |
750 | unsigned long (*get_map_ofs) (struct drm_map * map); | 762 | resource_size_t (*get_map_ofs) (struct drm_local_map * map); |
751 | unsigned long (*get_reg_ofs) (struct drm_device *dev); | 763 | resource_size_t (*get_reg_ofs) (struct drm_device *dev); |
752 | void (*set_version) (struct drm_device *dev, | 764 | void (*set_version) (struct drm_device *dev, |
753 | struct drm_set_version *sv); | 765 | struct drm_set_version *sv); |
754 | 766 | ||
@@ -981,7 +993,7 @@ struct drm_device { | |||
981 | sigset_t sigmask; | 993 | sigset_t sigmask; |
982 | 994 | ||
983 | struct drm_driver *driver; | 995 | struct drm_driver *driver; |
984 | drm_local_map_t *agp_buffer_map; | 996 | struct drm_local_map *agp_buffer_map; |
985 | unsigned int agp_buffer_token; | 997 | unsigned int agp_buffer_token; |
986 | struct drm_minor *control; /**< Control node for card */ | 998 | struct drm_minor *control; /**< Control node for card */ |
987 | struct drm_minor *primary; /**< render type primary screen head */ | 999 | struct drm_minor *primary; /**< render type primary screen head */ |
@@ -1098,8 +1110,8 @@ extern int drm_release(struct inode *inode, struct file *filp); | |||
1098 | extern int drm_mmap(struct file *filp, struct vm_area_struct *vma); | 1110 | extern int drm_mmap(struct file *filp, struct vm_area_struct *vma); |
1099 | extern int drm_mmap_locked(struct file *filp, struct vm_area_struct *vma); | 1111 | extern int drm_mmap_locked(struct file *filp, struct vm_area_struct *vma); |
1100 | extern void drm_vm_open_locked(struct vm_area_struct *vma); | 1112 | extern void drm_vm_open_locked(struct vm_area_struct *vma); |
1101 | extern unsigned long drm_core_get_map_ofs(struct drm_map * map); | 1113 | extern resource_size_t drm_core_get_map_ofs(struct drm_local_map * map); |
1102 | extern unsigned long drm_core_get_reg_ofs(struct drm_device *dev); | 1114 | extern resource_size_t drm_core_get_reg_ofs(struct drm_device *dev); |
1103 | extern unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait); | 1115 | extern unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait); |
1104 | 1116 | ||
1105 | /* Memory management support (drm_memory.h) */ | 1117 | /* Memory management support (drm_memory.h) */ |
@@ -1202,13 +1214,13 @@ extern int drm_i_have_hw_lock(struct drm_device *dev, struct drm_file *file_priv | |||
1202 | /* Buffer management support (drm_bufs.h) */ | 1214 | /* Buffer management support (drm_bufs.h) */ |
1203 | extern int drm_addbufs_agp(struct drm_device *dev, struct drm_buf_desc * request); | 1215 | extern int drm_addbufs_agp(struct drm_device *dev, struct drm_buf_desc * request); |
1204 | extern int drm_addbufs_pci(struct drm_device *dev, struct drm_buf_desc * request); | 1216 | extern int drm_addbufs_pci(struct drm_device *dev, struct drm_buf_desc * request); |
1205 | extern int drm_addmap(struct drm_device *dev, unsigned int offset, | 1217 | extern int drm_addmap(struct drm_device *dev, resource_size_t offset, |
1206 | unsigned int size, enum drm_map_type type, | 1218 | unsigned int size, enum drm_map_type type, |
1207 | enum drm_map_flags flags, drm_local_map_t ** map_ptr); | 1219 | enum drm_map_flags flags, struct drm_local_map **map_ptr); |
1208 | extern int drm_addmap_ioctl(struct drm_device *dev, void *data, | 1220 | extern int drm_addmap_ioctl(struct drm_device *dev, void *data, |
1209 | struct drm_file *file_priv); | 1221 | struct drm_file *file_priv); |
1210 | extern int drm_rmmap(struct drm_device *dev, drm_local_map_t *map); | 1222 | extern int drm_rmmap(struct drm_device *dev, struct drm_local_map *map); |
1211 | extern int drm_rmmap_locked(struct drm_device *dev, drm_local_map_t *map); | 1223 | extern int drm_rmmap_locked(struct drm_device *dev, struct drm_local_map *map); |
1212 | extern int drm_rmmap_ioctl(struct drm_device *dev, void *data, | 1224 | extern int drm_rmmap_ioctl(struct drm_device *dev, void *data, |
1213 | struct drm_file *file_priv); | 1225 | struct drm_file *file_priv); |
1214 | extern int drm_addbufs(struct drm_device *dev, void *data, | 1226 | extern int drm_addbufs(struct drm_device *dev, void *data, |
@@ -1222,10 +1234,10 @@ extern int drm_freebufs(struct drm_device *dev, void *data, | |||
1222 | extern int drm_mapbufs(struct drm_device *dev, void *data, | 1234 | extern int drm_mapbufs(struct drm_device *dev, void *data, |
1223 | struct drm_file *file_priv); | 1235 | struct drm_file *file_priv); |
1224 | extern int drm_order(unsigned long size); | 1236 | extern int drm_order(unsigned long size); |
1225 | extern unsigned long drm_get_resource_start(struct drm_device *dev, | 1237 | extern resource_size_t drm_get_resource_start(struct drm_device *dev, |
1238 | unsigned int resource); | ||
1239 | extern resource_size_t drm_get_resource_len(struct drm_device *dev, | ||
1226 | unsigned int resource); | 1240 | unsigned int resource); |
1227 | extern unsigned long drm_get_resource_len(struct drm_device *dev, | ||
1228 | unsigned int resource); | ||
1229 | 1241 | ||
1230 | /* DMA support (drm_dma.h) */ | 1242 | /* DMA support (drm_dma.h) */ |
1231 | extern int drm_dma_setup(struct drm_device *dev); | 1243 | extern int drm_dma_setup(struct drm_device *dev); |
@@ -1301,7 +1313,7 @@ extern struct drm_master *drm_master_get(struct drm_master *master); | |||
1301 | extern void drm_master_put(struct drm_master **master); | 1313 | extern void drm_master_put(struct drm_master **master); |
1302 | extern int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent, | 1314 | extern int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent, |
1303 | struct drm_driver *driver); | 1315 | struct drm_driver *driver); |
1304 | extern int drm_put_dev(struct drm_device *dev); | 1316 | extern void drm_put_dev(struct drm_device *dev); |
1305 | extern int drm_put_minor(struct drm_minor **minor); | 1317 | extern int drm_put_minor(struct drm_minor **minor); |
1306 | extern unsigned int drm_debug; | 1318 | extern unsigned int drm_debug; |
1307 | 1319 | ||
@@ -1311,7 +1323,7 @@ extern struct dentry *drm_debugfs_root; | |||
1311 | 1323 | ||
1312 | extern struct idr drm_minors_idr; | 1324 | extern struct idr drm_minors_idr; |
1313 | 1325 | ||
1314 | extern drm_local_map_t *drm_getsarea(struct drm_device *dev); | 1326 | extern struct drm_local_map *drm_getsarea(struct drm_device *dev); |
1315 | 1327 | ||
1316 | /* Proc support (drm_proc.h) */ | 1328 | /* Proc support (drm_proc.h) */ |
1317 | extern int drm_proc_init(struct drm_minor *minor, int minor_id, | 1329 | extern int drm_proc_init(struct drm_minor *minor, int minor_id, |
@@ -1453,12 +1465,12 @@ int drm_gem_open_ioctl(struct drm_device *dev, void *data, | |||
1453 | void drm_gem_open(struct drm_device *dev, struct drm_file *file_private); | 1465 | void drm_gem_open(struct drm_device *dev, struct drm_file *file_private); |
1454 | void drm_gem_release(struct drm_device *dev, struct drm_file *file_private); | 1466 | void drm_gem_release(struct drm_device *dev, struct drm_file *file_private); |
1455 | 1467 | ||
1456 | extern void drm_core_ioremap(struct drm_map *map, struct drm_device *dev); | 1468 | extern void drm_core_ioremap(struct drm_local_map *map, struct drm_device *dev); |
1457 | extern void drm_core_ioremap_wc(struct drm_map *map, struct drm_device *dev); | 1469 | extern void drm_core_ioremap_wc(struct drm_local_map *map, struct drm_device *dev); |
1458 | extern void drm_core_ioremapfree(struct drm_map *map, struct drm_device *dev); | 1470 | extern void drm_core_ioremapfree(struct drm_local_map *map, struct drm_device *dev); |
1459 | 1471 | ||
1460 | static __inline__ struct drm_map *drm_core_findmap(struct drm_device *dev, | 1472 | static __inline__ struct drm_local_map *drm_core_findmap(struct drm_device *dev, |
1461 | unsigned int token) | 1473 | unsigned int token) |
1462 | { | 1474 | { |
1463 | struct drm_map_list *_entry; | 1475 | struct drm_map_list *_entry; |
1464 | list_for_each_entry(_entry, &dev->maplist, head) | 1476 | list_for_each_entry(_entry, &dev->maplist, head) |
@@ -1485,7 +1497,7 @@ static __inline__ int drm_device_is_pcie(struct drm_device *dev) | |||
1485 | return pci_find_capability(dev->pdev, PCI_CAP_ID_EXP); | 1497 | return pci_find_capability(dev->pdev, PCI_CAP_ID_EXP); |
1486 | } | 1498 | } |
1487 | 1499 | ||
1488 | static __inline__ void drm_core_dropmap(struct drm_map *map) | 1500 | static __inline__ void drm_core_dropmap(struct drm_local_map *map) |
1489 | { | 1501 | { |
1490 | } | 1502 | } |
1491 | 1503 | ||
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index 5ded1acfb543..3c1924c010e8 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h | |||
@@ -550,7 +550,7 @@ struct drm_mode_config { | |||
550 | int min_width, min_height; | 550 | int min_width, min_height; |
551 | int max_width, max_height; | 551 | int max_width, max_height; |
552 | struct drm_mode_config_funcs *funcs; | 552 | struct drm_mode_config_funcs *funcs; |
553 | unsigned long fb_base; | 553 | resource_size_t fb_base; |
554 | 554 | ||
555 | /* pointers to standard properties */ | 555 | /* pointers to standard properties */ |
556 | struct list_head property_blob_list; | 556 | struct list_head property_blob_list; |
@@ -613,7 +613,8 @@ extern void drm_fb_release(struct drm_file *file_priv); | |||
613 | extern int drm_mode_group_init_legacy_group(struct drm_device *dev, struct drm_mode_group *group); | 613 | extern int drm_mode_group_init_legacy_group(struct drm_device *dev, struct drm_mode_group *group); |
614 | extern struct edid *drm_get_edid(struct drm_connector *connector, | 614 | extern struct edid *drm_get_edid(struct drm_connector *connector, |
615 | struct i2c_adapter *adapter); | 615 | struct i2c_adapter *adapter); |
616 | extern unsigned char *drm_do_probe_ddc_edid(struct i2c_adapter *adapter); | 616 | extern int drm_do_probe_ddc_edid(struct i2c_adapter *adapter, |
617 | unsigned char *buf, int len); | ||
617 | extern int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid); | 618 | extern int drm_add_edid_modes(struct drm_connector *connector, struct edid *edid); |
618 | extern void drm_mode_probed_add(struct drm_connector *connector, struct drm_display_mode *mode); | 619 | extern void drm_mode_probed_add(struct drm_connector *connector, struct drm_display_mode *mode); |
619 | extern void drm_mode_remove(struct drm_connector *connector, struct drm_display_mode *mode); | 620 | extern void drm_mode_remove(struct drm_connector *connector, struct drm_display_mode *mode); |
@@ -731,4 +732,5 @@ extern int drm_mode_gamma_get_ioctl(struct drm_device *dev, | |||
731 | void *data, struct drm_file *file_priv); | 732 | void *data, struct drm_file *file_priv); |
732 | extern int drm_mode_gamma_set_ioctl(struct drm_device *dev, | 733 | extern int drm_mode_gamma_set_ioctl(struct drm_device *dev, |
733 | void *data, struct drm_file *file_priv); | 734 | void *data, struct drm_file *file_priv); |
735 | extern bool drm_detect_hdmi_monitor(struct edid *edid); | ||
734 | #endif /* __DRM_CRTC_H__ */ | 736 | #endif /* __DRM_CRTC_H__ */ |
diff --git a/include/drm/drm_os_linux.h b/include/drm/drm_os_linux.h index 8dbd2572b7c3..013551d03c03 100644 --- a/include/drm/drm_os_linux.h +++ b/include/drm/drm_os_linux.h | |||
@@ -6,6 +6,19 @@ | |||
6 | #include <linux/interrupt.h> /* For task queue support */ | 6 | #include <linux/interrupt.h> /* For task queue support */ |
7 | #include <linux/delay.h> | 7 | #include <linux/delay.h> |
8 | 8 | ||
9 | #ifndef readq | ||
10 | static u64 readq(void __iomem *reg) | ||
11 | { | ||
12 | return ((u64) readl(reg)) | (((u64) readl(reg + 4UL)) << 32); | ||
13 | } | ||
14 | |||
15 | static void writeq(u64 val, void __iomem *reg) | ||
16 | { | ||
17 | writel(val & 0xffffffff, reg); | ||
18 | writel(val >> 32, reg + 0x4UL); | ||
19 | } | ||
20 | #endif | ||
21 | |||
9 | /** Current process ID */ | 22 | /** Current process ID */ |
10 | #define DRM_CURRENTPID task_pid_nr(current) | 23 | #define DRM_CURRENTPID task_pid_nr(current) |
11 | #define DRM_SUSER(p) capable(CAP_SYS_ADMIN) | 24 | #define DRM_SUSER(p) capable(CAP_SYS_ADMIN) |
@@ -23,6 +36,12 @@ | |||
23 | /** Write a dword into a MMIO region */ | 36 | /** Write a dword into a MMIO region */ |
24 | #define DRM_WRITE32(map, offset, val) writel(val, ((void __iomem *)(map)->handle) + (offset)) | 37 | #define DRM_WRITE32(map, offset, val) writel(val, ((void __iomem *)(map)->handle) + (offset)) |
25 | /** Read memory barrier */ | 38 | /** Read memory barrier */ |
39 | |||
40 | /** Read a qword from a MMIO region - be careful using these unless you really understand them */ | ||
41 | #define DRM_READ64(map, offset) readq(((void __iomem *)(map)->handle) + (offset)) | ||
42 | /** Write a qword into a MMIO region */ | ||
43 | #define DRM_WRITE64(map, offset, val) writeq(val, ((void __iomem *)(map)->handle) + (offset)) | ||
44 | |||
26 | #define DRM_READMEMORYBARRIER() rmb() | 45 | #define DRM_READMEMORYBARRIER() rmb() |
27 | /** Write memory barrier */ | 46 | /** Write memory barrier */ |
28 | #define DRM_WRITEMEMORYBARRIER() wmb() | 47 | #define DRM_WRITEMEMORYBARRIER() wmb() |
diff --git a/include/drm/drm_pciids.h b/include/drm/drm_pciids.h index 76c4c8243038..2df74eb09563 100644 --- a/include/drm/drm_pciids.h +++ b/include/drm/drm_pciids.h | |||
@@ -239,10 +239,123 @@ | |||
239 | {0x1002, 0x7835, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS300|RADEON_IS_IGP|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | 239 | {0x1002, 0x7835, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS300|RADEON_IS_IGP|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ |
240 | {0x1002, 0x791e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS690|RADEON_IS_IGP|RADEON_NEW_MEMMAP|RADEON_IS_IGPGART}, \ | 240 | {0x1002, 0x791e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS690|RADEON_IS_IGP|RADEON_NEW_MEMMAP|RADEON_IS_IGPGART}, \ |
241 | {0x1002, 0x791f, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS690|RADEON_IS_IGP|RADEON_NEW_MEMMAP|RADEON_IS_IGPGART}, \ | 241 | {0x1002, 0x791f, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS690|RADEON_IS_IGP|RADEON_NEW_MEMMAP|RADEON_IS_IGPGART}, \ |
242 | {0x1002, 0x793f, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS600|RADEON_IS_IGP|RADEON_NEW_MEMMAP}, \ | ||
243 | {0x1002, 0x7941, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS600|RADEON_IS_IGP|RADEON_NEW_MEMMAP}, \ | ||
244 | {0x1002, 0x7942, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS600|RADEON_IS_IGP|RADEON_NEW_MEMMAP}, \ | ||
242 | {0x1002, 0x796c, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS740|RADEON_IS_IGP|RADEON_NEW_MEMMAP|RADEON_IS_IGPGART}, \ | 245 | {0x1002, 0x796c, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS740|RADEON_IS_IGP|RADEON_NEW_MEMMAP|RADEON_IS_IGPGART}, \ |
243 | {0x1002, 0x796d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS740|RADEON_IS_IGP|RADEON_NEW_MEMMAP|RADEON_IS_IGPGART}, \ | 246 | {0x1002, 0x796d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS740|RADEON_IS_IGP|RADEON_NEW_MEMMAP|RADEON_IS_IGPGART}, \ |
244 | {0x1002, 0x796e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS740|RADEON_IS_IGP|RADEON_NEW_MEMMAP|RADEON_IS_IGPGART}, \ | 247 | {0x1002, 0x796e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS740|RADEON_IS_IGP|RADEON_NEW_MEMMAP|RADEON_IS_IGPGART}, \ |
245 | {0x1002, 0x796f, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS740|RADEON_IS_IGP|RADEON_NEW_MEMMAP|RADEON_IS_IGPGART}, \ | 248 | {0x1002, 0x796f, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS740|RADEON_IS_IGP|RADEON_NEW_MEMMAP|RADEON_IS_IGPGART}, \ |
249 | {0x1002, 0x9400, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_R600|RADEON_NEW_MEMMAP}, \ | ||
250 | {0x1002, 0x9401, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_R600|RADEON_NEW_MEMMAP}, \ | ||
251 | {0x1002, 0x9402, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_R600|RADEON_NEW_MEMMAP}, \ | ||
252 | {0x1002, 0x9403, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_R600|RADEON_NEW_MEMMAP}, \ | ||
253 | {0x1002, 0x9405, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_R600|RADEON_NEW_MEMMAP}, \ | ||
254 | {0x1002, 0x940A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_R600|RADEON_NEW_MEMMAP}, \ | ||
255 | {0x1002, 0x940B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_R600|RADEON_NEW_MEMMAP}, \ | ||
256 | {0x1002, 0x940F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_R600|RADEON_NEW_MEMMAP}, \ | ||
257 | {0x1002, 0x9440, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV770|RADEON_NEW_MEMMAP}, \ | ||
258 | {0x1002, 0x9441, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV770|RADEON_NEW_MEMMAP}, \ | ||
259 | {0x1002, 0x9442, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV770|RADEON_NEW_MEMMAP}, \ | ||
260 | {0x1002, 0x9444, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV770|RADEON_NEW_MEMMAP}, \ | ||
261 | {0x1002, 0x9446, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV770|RADEON_NEW_MEMMAP}, \ | ||
262 | {0x1002, 0x944A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV770|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
263 | {0x1002, 0x944B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV770|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
264 | {0x1002, 0x944C, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV770|RADEON_NEW_MEMMAP}, \ | ||
265 | {0x1002, 0x944E, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV770|RADEON_NEW_MEMMAP}, \ | ||
266 | {0x1002, 0x9450, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV770|RADEON_NEW_MEMMAP}, \ | ||
267 | {0x1002, 0x9452, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV770|RADEON_NEW_MEMMAP}, \ | ||
268 | {0x1002, 0x9456, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV770|RADEON_NEW_MEMMAP}, \ | ||
269 | {0x1002, 0x945A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV770|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
270 | {0x1002, 0x945B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV770|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
271 | {0x1002, 0x946A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV770|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
272 | {0x1002, 0x946B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV770|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
273 | {0x1002, 0x947A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV770|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
274 | {0x1002, 0x947B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV770|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
275 | {0x1002, 0x9480, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV730|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
276 | {0x1002, 0x9487, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV730|RADEON_NEW_MEMMAP}, \ | ||
277 | {0x1002, 0x9488, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV730|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
278 | {0x1002, 0x9489, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV730|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
279 | {0x1002, 0x948F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV730|RADEON_NEW_MEMMAP}, \ | ||
280 | {0x1002, 0x9490, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV730|RADEON_NEW_MEMMAP}, \ | ||
281 | {0x1002, 0x9491, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV730|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
282 | {0x1002, 0x9498, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV730|RADEON_NEW_MEMMAP}, \ | ||
283 | {0x1002, 0x949C, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV730|RADEON_NEW_MEMMAP}, \ | ||
284 | {0x1002, 0x949E, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV730|RADEON_NEW_MEMMAP}, \ | ||
285 | {0x1002, 0x949F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV730|RADEON_NEW_MEMMAP}, \ | ||
286 | {0x1002, 0x94C0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV610|RADEON_NEW_MEMMAP}, \ | ||
287 | {0x1002, 0x94C1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV610|RADEON_NEW_MEMMAP}, \ | ||
288 | {0x1002, 0x94C3, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV610|RADEON_NEW_MEMMAP}, \ | ||
289 | {0x1002, 0x94C4, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV610|RADEON_NEW_MEMMAP}, \ | ||
290 | {0x1002, 0x94C5, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV610|RADEON_NEW_MEMMAP}, \ | ||
291 | {0x1002, 0x94C6, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV610|RADEON_NEW_MEMMAP}, \ | ||
292 | {0x1002, 0x94C7, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV610|RADEON_NEW_MEMMAP}, \ | ||
293 | {0x1002, 0x94C8, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV610|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
294 | {0x1002, 0x94C9, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV610|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
295 | {0x1002, 0x94CB, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV610|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
296 | {0x1002, 0x94CC, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV610|RADEON_NEW_MEMMAP}, \ | ||
297 | {0x1002, 0x94CD, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV610|RADEON_NEW_MEMMAP}, \ | ||
298 | {0x1002, 0x9500, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV670|RADEON_NEW_MEMMAP}, \ | ||
299 | {0x1002, 0x9501, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV670|RADEON_NEW_MEMMAP}, \ | ||
300 | {0x1002, 0x9504, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV670|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
301 | {0x1002, 0x9505, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV670|RADEON_NEW_MEMMAP}, \ | ||
302 | {0x1002, 0x9506, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV670|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
303 | {0x1002, 0x9507, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV670|RADEON_NEW_MEMMAP}, \ | ||
304 | {0x1002, 0x9508, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV670|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
305 | {0x1002, 0x9509, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV670|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
306 | {0x1002, 0x950F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV670|RADEON_NEW_MEMMAP}, \ | ||
307 | {0x1002, 0x9511, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV670|RADEON_NEW_MEMMAP}, \ | ||
308 | {0x1002, 0x9515, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV670|RADEON_NEW_MEMMAP}, \ | ||
309 | {0x1002, 0x9517, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV670|RADEON_NEW_MEMMAP}, \ | ||
310 | {0x1002, 0x9519, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV670|RADEON_NEW_MEMMAP}, \ | ||
311 | {0x1002, 0x9540, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV710|RADEON_NEW_MEMMAP}, \ | ||
312 | {0x1002, 0x9541, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV710|RADEON_NEW_MEMMAP}, \ | ||
313 | {0x1002, 0x9542, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV710|RADEON_NEW_MEMMAP}, \ | ||
314 | {0x1002, 0x954E, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV710|RADEON_NEW_MEMMAP}, \ | ||
315 | {0x1002, 0x954F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV710|RADEON_NEW_MEMMAP}, \ | ||
316 | {0x1002, 0x9552, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV710|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
317 | {0x1002, 0x9553, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV710|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
318 | {0x1002, 0x9555, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV710|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
319 | {0x1002, 0x9580, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV630|RADEON_NEW_MEMMAP}, \ | ||
320 | {0x1002, 0x9581, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV630|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
321 | {0x1002, 0x9583, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV630|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
322 | {0x1002, 0x9586, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV630|RADEON_NEW_MEMMAP}, \ | ||
323 | {0x1002, 0x9587, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV630|RADEON_NEW_MEMMAP}, \ | ||
324 | {0x1002, 0x9588, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV630|RADEON_NEW_MEMMAP}, \ | ||
325 | {0x1002, 0x9589, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV630|RADEON_NEW_MEMMAP}, \ | ||
326 | {0x1002, 0x958A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV630|RADEON_NEW_MEMMAP}, \ | ||
327 | {0x1002, 0x958B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV630|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
328 | {0x1002, 0x958C, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV630|RADEON_NEW_MEMMAP}, \ | ||
329 | {0x1002, 0x958D, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV630|RADEON_NEW_MEMMAP}, \ | ||
330 | {0x1002, 0x958E, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV630|RADEON_NEW_MEMMAP}, \ | ||
331 | {0x1002, 0x958F, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV630|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
332 | {0x1002, 0x9590, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV635|RADEON_NEW_MEMMAP}, \ | ||
333 | {0x1002, 0x9591, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV635|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
334 | {0x1002, 0x9593, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV635|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
335 | {0x1002, 0x9595, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV635|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
336 | {0x1002, 0x9596, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV635|RADEON_NEW_MEMMAP}, \ | ||
337 | {0x1002, 0x9597, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV635|RADEON_NEW_MEMMAP}, \ | ||
338 | {0x1002, 0x9598, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV635|RADEON_NEW_MEMMAP}, \ | ||
339 | {0x1002, 0x9599, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV635|RADEON_NEW_MEMMAP}, \ | ||
340 | {0x1002, 0x959B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV635|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
341 | {0x1002, 0x95C0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV620|RADEON_NEW_MEMMAP}, \ | ||
342 | {0x1002, 0x95C5, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV620|RADEON_NEW_MEMMAP}, \ | ||
343 | {0x1002, 0x95C6, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV620|RADEON_NEW_MEMMAP}, \ | ||
344 | {0x1002, 0x95C7, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV620|RADEON_NEW_MEMMAP}, \ | ||
345 | {0x1002, 0x95C9, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV620|RADEON_NEW_MEMMAP}, \ | ||
346 | {0x1002, 0x95C2, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV620|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
347 | {0x1002, 0x95C4, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV620|RADEON_IS_MOBILITY|RADEON_NEW_MEMMAP}, \ | ||
348 | {0x1002, 0x95CC, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV620|RADEON_NEW_MEMMAP}, \ | ||
349 | {0x1002, 0x95CD, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV620|RADEON_NEW_MEMMAP}, \ | ||
350 | {0x1002, 0x95CE, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV620|RADEON_NEW_MEMMAP}, \ | ||
351 | {0x1002, 0x95CF, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RV620|RADEON_NEW_MEMMAP}, \ | ||
352 | {0x1002, 0x9610, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS780|RADEON_NEW_MEMMAP|RADEON_IS_IGP}, \ | ||
353 | {0x1002, 0x9611, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS780|RADEON_NEW_MEMMAP|RADEON_IS_IGP}, \ | ||
354 | {0x1002, 0x9612, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS780|RADEON_NEW_MEMMAP|RADEON_IS_IGP}, \ | ||
355 | {0x1002, 0x9613, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS780|RADEON_NEW_MEMMAP|RADEON_IS_IGP}, \ | ||
356 | {0x1002, 0x9614, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS780|RADEON_NEW_MEMMAP|RADEON_IS_IGP}, \ | ||
357 | {0x1002, 0x9615, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS780|RADEON_NEW_MEMMAP|RADEON_IS_IGP}, \ | ||
358 | {0x1002, 0x9616, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CHIP_RS780|RADEON_NEW_MEMMAP|RADEON_IS_IGP}, \ | ||
246 | {0, 0, 0} | 359 | {0, 0, 0} |
247 | 360 | ||
248 | #define r128_PCI_IDS \ | 361 | #define r128_PCI_IDS \ |
diff --git a/include/drm/radeon_drm.h b/include/drm/radeon_drm.h index 72ecf67ad3ec..fe3e3a4b4aed 100644 --- a/include/drm/radeon_drm.h +++ b/include/drm/radeon_drm.h | |||
@@ -306,6 +306,8 @@ typedef union { | |||
306 | 306 | ||
307 | #define RADEON_SCRATCH_REG_OFFSET 32 | 307 | #define RADEON_SCRATCH_REG_OFFSET 32 |
308 | 308 | ||
309 | #define R600_SCRATCH_REG_OFFSET 256 | ||
310 | |||
309 | #define RADEON_NR_SAREA_CLIPRECTS 12 | 311 | #define RADEON_NR_SAREA_CLIPRECTS 12 |
310 | 312 | ||
311 | /* There are 2 heaps (local/GART). Each region within a heap is a | 313 | /* There are 2 heaps (local/GART). Each region within a heap is a |
@@ -528,7 +530,8 @@ typedef struct drm_radeon_init { | |||
528 | RADEON_INIT_CP = 0x01, | 530 | RADEON_INIT_CP = 0x01, |
529 | RADEON_CLEANUP_CP = 0x02, | 531 | RADEON_CLEANUP_CP = 0x02, |
530 | RADEON_INIT_R200_CP = 0x03, | 532 | RADEON_INIT_R200_CP = 0x03, |
531 | RADEON_INIT_R300_CP = 0x04 | 533 | RADEON_INIT_R300_CP = 0x04, |
534 | RADEON_INIT_R600_CP = 0x05 | ||
532 | } func; | 535 | } func; |
533 | unsigned long sarea_priv_offset; | 536 | unsigned long sarea_priv_offset; |
534 | int is_pci; | 537 | int is_pci; |