Rev 1860 | Rev 1865 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 426 | jermar | 1 | # |
| 2 | # Copyright (C) 2005 Jakub Jermar |
||
| 3 | # All rights reserved. |
||
| 4 | # |
||
| 5 | # Redistribution and use in source and binary forms, with or without |
||
| 6 | # modification, are permitted provided that the following conditions |
||
| 7 | # are met: |
||
| 8 | # |
||
| 9 | # - Redistributions of source code must retain the above copyright |
||
| 10 | # notice, this list of conditions and the following disclaimer. |
||
| 11 | # - Redistributions in binary form must reproduce the above copyright |
||
| 12 | # notice, this list of conditions and the following disclaimer in the |
||
| 13 | # documentation and/or other materials provided with the distribution. |
||
| 14 | # - The name of the author may not be used to endorse or promote products |
||
| 15 | # derived from this software without specific prior written permission. |
||
| 16 | # |
||
| 17 | # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
||
| 18 | # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||
| 19 | # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
||
| 20 | # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
||
| 21 | # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||
| 22 | # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||
| 23 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||
| 24 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||
| 25 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
||
| 26 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||
| 27 | # |
||
| 28 | |||
| 1784 | jermar | 29 | #include <arch/stack.h> |
| 1789 | jermar | 30 | #include <arch/regdef.h> |
| 1860 | jermar | 31 | #include <arch/mm/mmu.h> |
| 1784 | jermar | 32 | |
| 426 | jermar | 33 | .text |
| 34 | |||
| 35 | .global memcpy |
||
| 1288 | jermar | 36 | .global memcpy_from_uspace |
| 37 | .global memcpy_to_uspace |
||
| 38 | .global memcpy_from_uspace_failover_address |
||
| 39 | .global memcpy_to_uspace_failover_address |
||
| 426 | jermar | 40 | .global memsetb |
| 41 | |||
| 1784 | jermar | 42 | |
| 426 | jermar | 43 | memcpy: |
| 1288 | jermar | 44 | memcpy_from_uspace: |
| 45 | memcpy_to_uspace: |
||
| 1790 | jermar | 46 | .register %g2, #scratch |
| 47 | .register %g3, #scratch |
||
| 48 | add %o1, 7, %g1 |
||
| 49 | and %g1, -8, %g1 |
||
| 50 | cmp %o1, %g1 |
||
| 51 | be,pn %xcc, 3f |
||
| 52 | add %o0, 7, %g1 |
||
| 53 | mov 0, %g3 |
||
| 54 | 0: |
||
| 55 | brz,pn %o2, 2f |
||
| 56 | mov 0, %g2 |
||
| 57 | 1: |
||
| 58 | ldub [%g3 + %o1], %g1 |
||
| 59 | add %g2, 1, %g2 |
||
| 60 | cmp %o2, %g2 |
||
| 61 | stb %g1, [%g3 + %o0] |
||
| 62 | bne,pt %xcc, 1b |
||
| 63 | mov %g2, %g3 |
||
| 64 | 2: |
||
| 65 | jmp %o7 + 8 ! exit point |
||
| 66 | mov %o1, %o0 |
||
| 67 | 3: |
||
| 68 | and %g1, -8, %g1 |
||
| 69 | cmp %o0, %g1 |
||
| 70 | bne,pt %xcc, 0b |
||
| 71 | mov 0, %g3 |
||
| 72 | srlx %o2, 3, %g4 |
||
| 73 | brz,pn %g4, 5f |
||
| 74 | mov 0, %g5 |
||
| 75 | 4: |
||
| 76 | sllx %g3, 3, %g2 |
||
| 77 | add %g5, 1, %g3 |
||
| 78 | ldx [%o1 + %g2], %g1 |
||
| 79 | mov %g3, %g5 |
||
| 80 | cmp %g4, %g3 |
||
| 81 | bne,pt %xcc, 4b |
||
| 82 | stx %g1, [%o0 + %g2] |
||
| 83 | 5: |
||
| 84 | and %o2, 7, %o2 |
||
| 85 | brz,pn %o2, 2b |
||
| 86 | sllx %g4, 3, %g1 |
||
| 87 | mov 0, %g2 |
||
| 88 | add %g1, %o0, %o0 |
||
| 89 | add %g1, %o1, %g4 |
||
| 90 | mov 0, %g3 |
||
| 91 | 6: |
||
| 92 | ldub [%g2 + %g4], %g1 |
||
| 93 | stb %g1, [%g2 + %o0] |
||
| 94 | add %g3, 1, %g2 |
||
| 95 | cmp %o2, %g2 |
||
| 96 | bne,pt %xcc, 6b |
||
| 97 | mov %g2, %g3 |
||
| 1288 | jermar | 98 | |
| 1790 | jermar | 99 | jmp %o7 + 8 ! exit point |
| 100 | mov %o1, %o0 |
||
| 426 | jermar | 101 | |
| 1288 | jermar | 102 | memcpy_from_uspace_failover_address: |
| 103 | memcpy_to_uspace_failover_address: |
||
| 1790 | jermar | 104 | jmp %o7 + 8 ! exit point |
| 105 | mov %g0, %o0 ! return 0 on failure |
||
| 1288 | jermar | 106 | |
| 426 | jermar | 107 | memsetb: |
| 108 | b _memsetb |
||
| 109 | nop |
||
| 1856 | jermar | 110 | |
| 111 | |||
| 112 | .macro WRITE_ALTERNATE_REGISTER reg, bit |
||
| 113 | save %sp, -STACK_WINDOW_SAVE_AREA_SIZE, %sp |
||
| 114 | rdpr %pstate, %l0 |
||
| 115 | wrpr %l0, \bit, %pstate |
||
| 116 | mov %i0, \reg |
||
| 117 | wrpr %l0, 0, %pstate |
||
| 118 | ret |
||
| 119 | restore |
||
| 120 | .endm |
||
| 121 | |||
| 122 | .macro READ_ALTERNATE_REGISTER reg, bit |
||
| 123 | save %sp, -STACK_WINDOW_SAVE_AREA_SIZE, %sp |
||
| 124 | rdpr %pstate, %l0 |
||
| 125 | wrpr %l0, \bit, %pstate |
||
| 126 | mov \reg, %i0 |
||
| 127 | wrpr %l0, 0, %pstate |
||
| 128 | ret |
||
| 129 | restore |
||
| 130 | .endm |
||
| 131 | |||
| 132 | .global write_to_ag_g6 |
||
| 133 | write_to_ag_g6: |
||
| 134 | WRITE_ALTERNATE_REGISTER %g6, PSTATE_AG_BIT |
||
| 135 | |||
| 136 | .global write_to_ag_g7 |
||
| 137 | write_to_ag_g7: |
||
| 138 | WRITE_ALTERNATE_REGISTER %g7, PSTATE_AG_BIT |
||
| 139 | |||
| 140 | .global write_to_ig_g6 |
||
| 141 | write_to_ig_g6: |
||
| 142 | WRITE_ALTERNATE_REGISTER %g6, PSTATE_IG_BIT |
||
| 143 | |||
| 144 | .global read_from_ag_g7 |
||
| 145 | read_from_ag_g7: |
||
| 146 | READ_ALTERNATE_REGISTER %g7, PSTATE_AG_BIT |
||
| 1860 | jermar | 147 | |
| 148 | |||
| 149 | /** Switch to userspace. |
||
| 150 | * |
||
| 151 | * %o0 Userspace entry address. |
||
| 152 | * %o1 Userspace stack pointer address. |
||
| 1864 | jermar | 153 | * %o2 Userspace address of uarg structure. |
| 1860 | jermar | 154 | */ |
| 155 | .global switch_to_userspace |
||
| 156 | switch_to_userspace: |
||
| 157 | flushw |
||
| 158 | wrpr %g0, 0, %cleanwin ! avoid information leak |
||
| 159 | save %o1, -STACK_WINDOW_SAVE_AREA_SIZE, %sp |
||
| 160 | |||
| 1864 | jermar | 161 | mov %i3, %o0 ! uarg |
| 162 | |||
| 1860 | jermar | 163 | clr %i2 |
| 164 | clr %i3 |
||
| 165 | clr %i4 |
||
| 166 | clr %i5 |
||
| 167 | clr %i6 |
||
| 168 | |||
| 169 | wrpr %g0, 1, %tl ! enforce mapping via nucleus |
||
| 170 | |||
| 171 | rdpr %cwp, %g1 |
||
| 172 | wrpr %g1, TSTATE_IE_BIT, %tstate |
||
| 173 | wrpr %i0, 0, %tnpc |
||
| 174 | |||
| 175 | /* |
||
| 176 | * Set primary context according to secondary context. |
||
| 177 | * Secondary context has been already installed by |
||
| 178 | * higher-level functions. |
||
| 179 | */ |
||
| 180 | wr %g0, ASI_DMMU, %asi |
||
| 181 | ldxa [VA_SECONDARY_CONTEXT_REG] %asi, %g1 |
||
| 182 | stxa %g1, [VA_PRIMARY_CONTEXT_REG] %asi |
||
| 183 | flush %i7 |
||
| 1864 | jermar | 184 | |
| 185 | /* |
||
| 186 | * Spills and fills will be handled by the userspace handlers. |
||
| 187 | */ |
||
| 188 | wrpr %g0, WSTATE_OTHER(0) | WSTATE_NORMAL(1), %wstate |
||
| 1860 | jermar | 189 | |
| 190 | done ! jump to userspace |