]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/ia64/include/asm/kvm_host.h
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/signal
[karo-tx-linux.git] / arch / ia64 / include / asm / kvm_host.h
1 /*
2  * kvm_host.h: used for kvm module, and hold ia64-specific sections.
3  *
4  * Copyright (C) 2007, Intel Corporation.
5  *
6  * Xiantao Zhang <xiantao.zhang@intel.com>
7  *
8  * This program is free software; you can redistribute it and/or modify it
9  * under the terms and conditions of the GNU General Public License,
10  * version 2, as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
15  * more details.
16  *
17  * You should have received a copy of the GNU General Public License along with
18  * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
19  * Place - Suite 330, Boston, MA 02111-1307 USA.
20  *
21  */
22
23 #ifndef __ASM_KVM_HOST_H
24 #define __ASM_KVM_HOST_H
25
26 #define KVM_USER_MEM_SLOTS 32
27
28 #define KVM_COALESCED_MMIO_PAGE_OFFSET 1
29
30 /* define exit reasons from vmm to kvm*/
31 #define EXIT_REASON_VM_PANIC            0
32 #define EXIT_REASON_MMIO_INSTRUCTION    1
33 #define EXIT_REASON_PAL_CALL            2
34 #define EXIT_REASON_SAL_CALL            3
35 #define EXIT_REASON_SWITCH_RR6          4
36 #define EXIT_REASON_VM_DESTROY          5
37 #define EXIT_REASON_EXTERNAL_INTERRUPT  6
38 #define EXIT_REASON_IPI                 7
39 #define EXIT_REASON_PTC_G               8
40 #define EXIT_REASON_DEBUG               20
41
42 /*Define vmm address space and vm data space.*/
43 #define KVM_VMM_SIZE (__IA64_UL_CONST(16)<<20)
44 #define KVM_VMM_SHIFT 24
45 #define KVM_VMM_BASE 0xD000000000000000
46 #define VMM_SIZE (__IA64_UL_CONST(8)<<20)
47
48 /*
49  * Define vm_buffer, used by PAL Services, base address.
50  * Note: vm_buffer is in the VMM-BLOCK, the size must be < 8M
51  */
52 #define KVM_VM_BUFFER_BASE (KVM_VMM_BASE + VMM_SIZE)
53 #define KVM_VM_BUFFER_SIZE (__IA64_UL_CONST(8)<<20)
54
55 /*
56  * kvm guest's data area looks as follow:
57  *
58  *            +----------------------+  ------- KVM_VM_DATA_SIZE
59  *            |     vcpu[n]'s data   |   |     ___________________KVM_STK_OFFSET
60  *            |                      |   |    /                   |
61  *            |        ..........    |   |   /vcpu's struct&stack |
62  *            |        ..........    |   |  /---------------------|---- 0
63  *            |     vcpu[5]'s data   |   | /       vpd            |
64  *            |     vcpu[4]'s data   |   |/-----------------------|
65  *            |     vcpu[3]'s data   |   /         vtlb           |
66  *            |     vcpu[2]'s data   |  /|------------------------|
67  *            |     vcpu[1]'s data   |/  |         vhpt           |
68  *            |     vcpu[0]'s data   |____________________________|
69  *            +----------------------+   |
70  *            |    memory dirty log  |   |
71  *            +----------------------+   |
72  *            |    vm's data struct  |   |
73  *            +----------------------+   |
74  *            |                      |   |
75  *            |                      |   |
76  *            |                      |   |
77  *            |                      |   |
78  *            |                      |   |
79  *            |                      |   |
80  *            |                      |   |
81  *            |   vm's p2m table  |      |
82  *            |                      |   |
83  *            |                      |   |
84  *            |                      |   |  |
85  * vm's data->|                      |   |  |
86  *            +----------------------+ ------- 0
87  * To support large memory, needs to increase the size of p2m.
88  * To support more vcpus, needs to ensure it has enough space to
89  * hold vcpus' data.
90  */
91
92 #define KVM_VM_DATA_SHIFT       26
93 #define KVM_VM_DATA_SIZE        (__IA64_UL_CONST(1) << KVM_VM_DATA_SHIFT)
94 #define KVM_VM_DATA_BASE        (KVM_VMM_BASE + KVM_VM_DATA_SIZE)
95
96 #define KVM_P2M_BASE            KVM_VM_DATA_BASE
97 #define KVM_P2M_SIZE            (__IA64_UL_CONST(24) << 20)
98
99 #define VHPT_SHIFT              16
100 #define VHPT_SIZE               (__IA64_UL_CONST(1) << VHPT_SHIFT)
101 #define VHPT_NUM_ENTRIES        (__IA64_UL_CONST(1) << (VHPT_SHIFT-5))
102
103 #define VTLB_SHIFT              16
104 #define VTLB_SIZE               (__IA64_UL_CONST(1) << VTLB_SHIFT)
105 #define VTLB_NUM_ENTRIES        (1UL << (VHPT_SHIFT-5))
106
107 #define VPD_SHIFT               16
108 #define VPD_SIZE                (__IA64_UL_CONST(1) << VPD_SHIFT)
109
110 #define VCPU_STRUCT_SHIFT       16
111 #define VCPU_STRUCT_SIZE        (__IA64_UL_CONST(1) << VCPU_STRUCT_SHIFT)
112
113 /*
114  * This must match KVM_IA64_VCPU_STACK_{SHIFT,SIZE} arch/ia64/include/asm/kvm.h
115  */
116 #define KVM_STK_SHIFT           16
117 #define KVM_STK_OFFSET          (__IA64_UL_CONST(1)<< KVM_STK_SHIFT)
118
119 #define KVM_VM_STRUCT_SHIFT     19
120 #define KVM_VM_STRUCT_SIZE      (__IA64_UL_CONST(1) << KVM_VM_STRUCT_SHIFT)
121
122 #define KVM_MEM_DIRY_LOG_SHIFT  19
123 #define KVM_MEM_DIRTY_LOG_SIZE (__IA64_UL_CONST(1) << KVM_MEM_DIRY_LOG_SHIFT)
124
125 #ifndef __ASSEMBLY__
126
127 /*Define the max vcpus and memory for Guests.*/
128 #define KVM_MAX_VCPUS   (KVM_VM_DATA_SIZE - KVM_P2M_SIZE - KVM_VM_STRUCT_SIZE -\
129                         KVM_MEM_DIRTY_LOG_SIZE) / sizeof(struct kvm_vcpu_data)
130 #define KVM_MAX_MEM_SIZE (KVM_P2M_SIZE >> 3 << PAGE_SHIFT)
131
132 #define VMM_LOG_LEN 256
133
134 #include <linux/types.h>
135 #include <linux/mm.h>
136 #include <linux/kvm.h>
137 #include <linux/kvm_para.h>
138 #include <linux/kvm_types.h>
139
140 #include <asm/pal.h>
141 #include <asm/sal.h>
142 #include <asm/page.h>
143
144 struct kvm_vcpu_data {
145         char vcpu_vhpt[VHPT_SIZE];
146         char vcpu_vtlb[VTLB_SIZE];
147         char vcpu_vpd[VPD_SIZE];
148         char vcpu_struct[VCPU_STRUCT_SIZE];
149 };
150
151 struct kvm_vm_data {
152         char kvm_p2m[KVM_P2M_SIZE];
153         char kvm_vm_struct[KVM_VM_STRUCT_SIZE];
154         char kvm_mem_dirty_log[KVM_MEM_DIRTY_LOG_SIZE];
155         struct kvm_vcpu_data vcpu_data[KVM_MAX_VCPUS];
156 };
157
158 #define VCPU_BASE(n)    (KVM_VM_DATA_BASE + \
159                                 offsetof(struct kvm_vm_data, vcpu_data[n]))
160 #define KVM_VM_BASE     (KVM_VM_DATA_BASE + \
161                                 offsetof(struct kvm_vm_data, kvm_vm_struct))
162 #define KVM_MEM_DIRTY_LOG_BASE  KVM_VM_DATA_BASE + \
163                                 offsetof(struct kvm_vm_data, kvm_mem_dirty_log)
164
165 #define VHPT_BASE(n) (VCPU_BASE(n) + offsetof(struct kvm_vcpu_data, vcpu_vhpt))
166 #define VTLB_BASE(n) (VCPU_BASE(n) + offsetof(struct kvm_vcpu_data, vcpu_vtlb))
167 #define VPD_BASE(n)  (VCPU_BASE(n) + offsetof(struct kvm_vcpu_data, vcpu_vpd))
168 #define VCPU_STRUCT_BASE(n)     (VCPU_BASE(n) + \
169                                 offsetof(struct kvm_vcpu_data, vcpu_struct))
170
171 /*IO section definitions*/
172 #define IOREQ_READ      1
173 #define IOREQ_WRITE     0
174
175 #define STATE_IOREQ_NONE        0
176 #define STATE_IOREQ_READY       1
177 #define STATE_IOREQ_INPROCESS   2
178 #define STATE_IORESP_READY      3
179
180 /*Guest Physical address layout.*/
181 #define GPFN_MEM        (0UL << 60) /* Guest pfn is normal mem */
182 #define GPFN_FRAME_BUFFER   (1UL << 60) /* VGA framebuffer */
183 #define GPFN_LOW_MMIO       (2UL << 60) /* Low MMIO range */
184 #define GPFN_PIB        (3UL << 60) /* PIB base */
185 #define GPFN_IOSAPIC        (4UL << 60) /* IOSAPIC base */
186 #define GPFN_LEGACY_IO      (5UL << 60) /* Legacy I/O base */
187 #define GPFN_GFW        (6UL << 60) /* Guest Firmware */
188 #define GPFN_PHYS_MMIO      (7UL << 60) /* Directed MMIO Range */
189
190 #define GPFN_IO_MASK        (7UL << 60) /* Guest pfn is I/O type */
191 #define GPFN_INV_MASK       (1UL << 63) /* Guest pfn is invalid */
192 #define INVALID_MFN       (~0UL)
193 #define MEM_G   (1UL << 30)
194 #define MEM_M   (1UL << 20)
195 #define MMIO_START       (3 * MEM_G)
196 #define MMIO_SIZE        (512 * MEM_M)
197 #define VGA_IO_START     0xA0000UL
198 #define VGA_IO_SIZE      0x20000
199 #define LEGACY_IO_START  (MMIO_START + MMIO_SIZE)
200 #define LEGACY_IO_SIZE   (64 * MEM_M)
201 #define IO_SAPIC_START   0xfec00000UL
202 #define IO_SAPIC_SIZE    0x100000
203 #define PIB_START 0xfee00000UL
204 #define PIB_SIZE 0x200000
205 #define GFW_START        (4 * MEM_G - 16 * MEM_M)
206 #define GFW_SIZE         (16 * MEM_M)
207
208 /*Deliver mode, defined for ioapic.c*/
209 #define dest_Fixed IOSAPIC_FIXED
210 #define dest_LowestPrio IOSAPIC_LOWEST_PRIORITY
211
212 #define NMI_VECTOR                      2
213 #define ExtINT_VECTOR                   0
214 #define NULL_VECTOR                     (-1)
215 #define IA64_SPURIOUS_INT_VECTOR        0x0f
216
217 #define VCPU_LID(v) (((u64)(v)->vcpu_id) << 24)
218
219 /*
220  *Delivery mode
221  */
222 #define SAPIC_DELIV_SHIFT      8
223 #define SAPIC_FIXED            0x0
224 #define SAPIC_LOWEST_PRIORITY  0x1
225 #define SAPIC_PMI              0x2
226 #define SAPIC_NMI              0x4
227 #define SAPIC_INIT             0x5
228 #define SAPIC_EXTINT           0x7
229
230 /*
231  * vcpu->requests bit members for arch
232  */
233 #define KVM_REQ_PTC_G           32
234 #define KVM_REQ_RESUME          33
235
236 #define KVM_HPAGE_GFN_SHIFT(x)  0
237 #define KVM_NR_PAGE_SIZES       1
238 #define KVM_PAGES_PER_HPAGE(x)  1
239
240 struct kvm;
241 struct kvm_vcpu;
242
243 struct kvm_mmio_req {
244         uint64_t addr;          /*  physical address            */
245         uint64_t size;          /*  size in bytes               */
246         uint64_t data;          /*  data (or paddr of data)     */
247         uint8_t state:4;
248         uint8_t dir:1;          /*  1=read, 0=write             */
249 };
250
251 /*Pal data struct */
252 struct kvm_pal_call{
253         /*In area*/
254         uint64_t gr28;
255         uint64_t gr29;
256         uint64_t gr30;
257         uint64_t gr31;
258         /*Out area*/
259         struct ia64_pal_retval ret;
260 };
261
262 /* Sal data structure */
263 struct kvm_sal_call{
264         /*In area*/
265         uint64_t in0;
266         uint64_t in1;
267         uint64_t in2;
268         uint64_t in3;
269         uint64_t in4;
270         uint64_t in5;
271         uint64_t in6;
272         uint64_t in7;
273         struct sal_ret_values ret;
274 };
275
276 /*Guest change rr6*/
277 struct kvm_switch_rr6 {
278         uint64_t old_rr;
279         uint64_t new_rr;
280 };
281
282 union ia64_ipi_a{
283         unsigned long val;
284         struct {
285                 unsigned long rv  : 3;
286                 unsigned long ir  : 1;
287                 unsigned long eid : 8;
288                 unsigned long id  : 8;
289                 unsigned long ib_base : 44;
290         };
291 };
292
293 union ia64_ipi_d {
294         unsigned long val;
295         struct {
296                 unsigned long vector : 8;
297                 unsigned long dm  : 3;
298                 unsigned long ig  : 53;
299         };
300 };
301
302 /*ipi check exit data*/
303 struct kvm_ipi_data{
304         union ia64_ipi_a addr;
305         union ia64_ipi_d data;
306 };
307
308 /*global purge data*/
309 struct kvm_ptc_g {
310         unsigned long vaddr;
311         unsigned long rr;
312         unsigned long ps;
313         struct kvm_vcpu *vcpu;
314 };
315
316 /*Exit control data */
317 struct exit_ctl_data{
318         uint32_t exit_reason;
319         uint32_t vm_status;
320         union {
321                 struct kvm_mmio_req     ioreq;
322                 struct kvm_pal_call     pal_data;
323                 struct kvm_sal_call     sal_data;
324                 struct kvm_switch_rr6   rr_data;
325                 struct kvm_ipi_data     ipi_data;
326                 struct kvm_ptc_g        ptc_g_data;
327         } u;
328 };
329
330 union pte_flags {
331         unsigned long val;
332         struct {
333                 unsigned long p    :  1; /*0      */
334                 unsigned long      :  1; /* 1     */
335                 unsigned long ma   :  3; /* 2-4   */
336                 unsigned long a    :  1; /* 5     */
337                 unsigned long d    :  1; /* 6     */
338                 unsigned long pl   :  2; /* 7-8   */
339                 unsigned long ar   :  3; /* 9-11  */
340                 unsigned long ppn  : 38; /* 12-49 */
341                 unsigned long      :  2; /* 50-51 */
342                 unsigned long ed   :  1; /* 52    */
343         };
344 };
345
346 union ia64_pta {
347         unsigned long val;
348         struct {
349                 unsigned long ve : 1;
350                 unsigned long reserved0 : 1;
351                 unsigned long size : 6;
352                 unsigned long vf : 1;
353                 unsigned long reserved1 : 6;
354                 unsigned long base : 49;
355         };
356 };
357
358 struct thash_cb {
359         /* THASH base information */
360         struct thash_data       *hash; /* hash table pointer */
361         union ia64_pta          pta;
362         int           num;
363 };
364
365 struct kvm_vcpu_stat {
366         u32 halt_wakeup;
367 };
368
369 struct kvm_vcpu_arch {
370         int launched;
371         int last_exit;
372         int last_run_cpu;
373         int vmm_tr_slot;
374         int vm_tr_slot;
375         int sn_rtc_tr_slot;
376
377 #define KVM_MP_STATE_RUNNABLE          0
378 #define KVM_MP_STATE_UNINITIALIZED     1
379 #define KVM_MP_STATE_INIT_RECEIVED     2
380 #define KVM_MP_STATE_HALTED            3
381         int mp_state;
382
383 #define MAX_PTC_G_NUM                   3
384         int ptc_g_count;
385         struct kvm_ptc_g ptc_g_data[MAX_PTC_G_NUM];
386
387         /*halt timer to wake up sleepy vcpus*/
388         struct hrtimer hlt_timer;
389         long ht_active;
390
391         struct kvm_lapic *apic;    /* kernel irqchip context */
392         struct vpd *vpd;
393
394         /* Exit data for vmm_transition*/
395         struct exit_ctl_data exit_data;
396
397         cpumask_t cache_coherent_map;
398
399         unsigned long vmm_rr;
400         unsigned long host_rr6;
401         unsigned long psbits[8];
402         unsigned long cr_iipa;
403         unsigned long cr_isr;
404         unsigned long vsa_base;
405         unsigned long dirty_log_lock_pa;
406         unsigned long __gp;
407         /* TR and TC.  */
408         struct thash_data itrs[NITRS];
409         struct thash_data dtrs[NDTRS];
410         /* Bit is set if there is a tr/tc for the region.  */
411         unsigned char itr_regions;
412         unsigned char dtr_regions;
413         unsigned char tc_regions;
414         /* purge all */
415         unsigned long ptce_base;
416         unsigned long ptce_count[2];
417         unsigned long ptce_stride[2];
418         /* itc/itm */
419         unsigned long last_itc;
420         long itc_offset;
421         unsigned long itc_check;
422         unsigned long timer_check;
423         unsigned int timer_pending;
424         unsigned int timer_fired;
425
426         unsigned long vrr[8];
427         unsigned long ibr[8];
428         unsigned long dbr[8];
429         unsigned long insvc[4];         /* Interrupt in service.  */
430         unsigned long xtp;
431
432         unsigned long metaphysical_rr0; /* from kvm_arch (so is pinned) */
433         unsigned long metaphysical_rr4; /* from kvm_arch (so is pinned) */
434         unsigned long metaphysical_saved_rr0; /* from kvm_arch          */
435         unsigned long metaphysical_saved_rr4; /* from kvm_arch          */
436         unsigned long fp_psr;       /*used for lazy float register */
437         unsigned long saved_gp;
438         /*for phycial  emulation */
439         int mode_flags;
440         struct thash_cb vtlb;
441         struct thash_cb vhpt;
442         char irq_check;
443         char irq_new_pending;
444
445         unsigned long opcode;
446         unsigned long cause;
447         char log_buf[VMM_LOG_LEN];
448         union context host;
449         union context guest;
450
451         char mmio_data[8];
452 };
453
454 struct kvm_vm_stat {
455         u64 remote_tlb_flush;
456 };
457
458 struct kvm_sal_data {
459         unsigned long boot_ip;
460         unsigned long boot_gp;
461 };
462
463 struct kvm_arch_memory_slot {
464 };
465
466 struct kvm_arch {
467         spinlock_t dirty_log_lock;
468
469         unsigned long   vm_base;
470         unsigned long   metaphysical_rr0;
471         unsigned long   metaphysical_rr4;
472         unsigned long   vmm_init_rr;
473
474         int             is_sn2;
475
476         struct kvm_ioapic *vioapic;
477         struct kvm_vm_stat stat;
478         struct kvm_sal_data rdv_sal_data;
479
480         struct list_head assigned_dev_head;
481         struct iommu_domain *iommu_domain;
482         int iommu_flags;
483
484         unsigned long irq_sources_bitmap;
485         unsigned long irq_states[KVM_IOAPIC_NUM_PINS];
486 };
487
488 union cpuid3_t {
489         u64 value;
490         struct {
491                 u64 number : 8;
492                 u64 revision : 8;
493                 u64 model : 8;
494                 u64 family : 8;
495                 u64 archrev : 8;
496                 u64 rv : 24;
497         };
498 };
499
500 struct kvm_pt_regs {
501         /* The following registers are saved by SAVE_MIN: */
502         unsigned long b6;  /* scratch */
503         unsigned long b7;  /* scratch */
504
505         unsigned long ar_csd; /* used by cmp8xchg16 (scratch) */
506         unsigned long ar_ssd; /* reserved for future use (scratch) */
507
508         unsigned long r8;  /* scratch (return value register 0) */
509         unsigned long r9;  /* scratch (return value register 1) */
510         unsigned long r10; /* scratch (return value register 2) */
511         unsigned long r11; /* scratch (return value register 3) */
512
513         unsigned long cr_ipsr; /* interrupted task's psr */
514         unsigned long cr_iip;  /* interrupted task's instruction pointer */
515         unsigned long cr_ifs;  /* interrupted task's function state */
516
517         unsigned long ar_unat; /* interrupted task's NaT register (preserved) */
518         unsigned long ar_pfs;  /* prev function state  */
519         unsigned long ar_rsc;  /* RSE configuration */
520         /* The following two are valid only if cr_ipsr.cpl > 0: */
521         unsigned long ar_rnat;  /* RSE NaT */
522         unsigned long ar_bspstore; /* RSE bspstore */
523
524         unsigned long pr;  /* 64 predicate registers (1 bit each) */
525         unsigned long b0;  /* return pointer (bp) */
526         unsigned long loadrs;  /* size of dirty partition << 16 */
527
528         unsigned long r1;  /* the gp pointer */
529         unsigned long r12; /* interrupted task's memory stack pointer */
530         unsigned long r13; /* thread pointer */
531
532         unsigned long ar_fpsr;  /* floating point status (preserved) */
533         unsigned long r15;  /* scratch */
534
535         /* The remaining registers are NOT saved for system calls.  */
536         unsigned long r14;  /* scratch */
537         unsigned long r2;  /* scratch */
538         unsigned long r3;  /* scratch */
539         unsigned long r16;  /* scratch */
540         unsigned long r17;  /* scratch */
541         unsigned long r18;  /* scratch */
542         unsigned long r19;  /* scratch */
543         unsigned long r20;  /* scratch */
544         unsigned long r21;  /* scratch */
545         unsigned long r22;  /* scratch */
546         unsigned long r23;  /* scratch */
547         unsigned long r24;  /* scratch */
548         unsigned long r25;  /* scratch */
549         unsigned long r26;  /* scratch */
550         unsigned long r27;  /* scratch */
551         unsigned long r28;  /* scratch */
552         unsigned long r29;  /* scratch */
553         unsigned long r30;  /* scratch */
554         unsigned long r31;  /* scratch */
555         unsigned long ar_ccv;  /* compare/exchange value (scratch) */
556
557         /*
558          * Floating point registers that the kernel considers scratch:
559          */
560         struct ia64_fpreg f6;  /* scratch */
561         struct ia64_fpreg f7;  /* scratch */
562         struct ia64_fpreg f8;  /* scratch */
563         struct ia64_fpreg f9;  /* scratch */
564         struct ia64_fpreg f10;  /* scratch */
565         struct ia64_fpreg f11;  /* scratch */
566
567         unsigned long r4;  /* preserved */
568         unsigned long r5;  /* preserved */
569         unsigned long r6;  /* preserved */
570         unsigned long r7;  /* preserved */
571         unsigned long eml_unat;    /* used for emulating instruction */
572         unsigned long pad0;     /* alignment pad */
573 };
574
575 static inline struct kvm_pt_regs *vcpu_regs(struct kvm_vcpu *v)
576 {
577         return (struct kvm_pt_regs *) ((unsigned long) v + KVM_STK_OFFSET) - 1;
578 }
579
580 typedef int kvm_vmm_entry(void);
581 typedef void kvm_tramp_entry(union context *host, union context *guest);
582
583 struct kvm_vmm_info{
584         struct module   *module;
585         kvm_vmm_entry   *vmm_entry;
586         kvm_tramp_entry *tramp_entry;
587         unsigned long   vmm_ivt;
588         unsigned long   patch_mov_ar;
589         unsigned long   patch_mov_ar_sn2;
590 };
591
592 int kvm_highest_pending_irq(struct kvm_vcpu *vcpu);
593 int kvm_emulate_halt(struct kvm_vcpu *vcpu);
594 int kvm_pal_emul(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run);
595 void kvm_sal_emul(struct kvm_vcpu *vcpu);
596
597 #define __KVM_HAVE_ARCH_VM_ALLOC 1
598 struct kvm *kvm_arch_alloc_vm(void);
599 void kvm_arch_free_vm(struct kvm *kvm);
600
601 #endif /* __ASSEMBLY__*/
602
603 #endif