Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 | ;; $Id: e100lpslave.S,v 1.1.1.1 2001/12/17 13:59:27 bjornw Exp $ ;; ;; Etrax100 slave network<->parport forwarder ;; ;; Copyright (c) 1999 Bjorn Wesen, Axis Communications AB ;; ;; We got 784 bytes (par loader size) to do DMA forwarding ;; between DMA0/1 (ethernet) and DMA3/4 (par port 0 RX/1 TX) ;; #include <linux/config.h> #if 0 #define ASSEMBLER_MACROS_ONLY #endif #include <asm/sv_addr_ag.h> #define BUFSIZE 0x600 ;; R_IRQ_READ2 #define DMA1EOPBIT 3 #define DMA0EOPBIT 1 #define DMA3EOPBIT 7 #define DMA4DESCBIT 8 ;; R_IRQ_READ0 #define PAR0ECPCMDBIT 11 ;; get host CMDs #include "e100lpslave.h" start: ;; disable interrupts. we are not going to use them at all. di ;; setup DMA connections and port configuration movu.w 0x84, r0 ; DMA2/3/4/5 to par ports move.d r0, [R_GEN_CONFIG] ;; setup port PA dirs and turn on the LED to show were alive movu.w 0x0cfb, r0 ; PA2-PA3 out, PA2 inactive move.d r0, [R_PORT_PA_SET] ;; enable MDIO output pin moveq IO_STATE(R_NETWORK_MGM_CTRL, mdoe, enable), r0 move.d r0, [R_NETWORK_MGM_CTRL] ;; accept broadcast frames, and enable station address 0 moveq IO_STATE(R_NETWORK_REC_CONFIG, broadcast, receive) | \ IO_STATE(R_NETWORK_REC_CONFIG, ma0, enable), r0 move.d r0, [R_NETWORK_REC_CONFIG] ;; use MII CLK mode, and enable the controller moveq IO_STATE(R_NETWORK_GEN_CONFIG, phy, mii_clk) | \ IO_STATE(R_NETWORK_GEN_CONFIG, enable, on), r0 move.d r0, [R_NETWORK_GEN_CONFIG] move.d IO_STATE(R_PAR0_CONFIG, ioe, noninv) | \ IO_STATE(R_PAR0_CONFIG, iseli, noninv) | \ IO_STATE(R_PAR0_CONFIG, iautofd, noninv) | \ IO_STATE(R_PAR0_CONFIG, istrb, noninv) | \ IO_STATE(R_PAR0_CONFIG, iinit, noninv) | \ IO_STATE(R_PAR0_CONFIG, iperr, noninv) | \ IO_STATE(R_PAR0_CONFIG, iack, noninv) | \ IO_STATE(R_PAR0_CONFIG, ibusy, noninv) | \ IO_STATE(R_PAR0_CONFIG, ifault, noninv) | \ IO_STATE(R_PAR0_CONFIG, isel, noninv) | \ IO_STATE(R_PAR0_CONFIG, dma, enable) | \ IO_STATE(R_PAR0_CONFIG, rle_in, disable) | \ IO_STATE(R_PAR0_CONFIG, rle_out, disable) | \ IO_STATE(R_PAR0_CONFIG, enable, on) | \ IO_STATE(R_PAR0_CONFIG, force, on) | \ IO_STATE(R_PAR0_CONFIG, mode, ecp_rev), r0 ; Reverse ECP - PAR0 is RX move.d r0, [R_PAR0_CONFIG] move.d IO_STATE(R_PAR1_CONFIG, ioe, noninv) | \ IO_STATE(R_PAR1_CONFIG, iseli, noninv) | \ IO_STATE(R_PAR1_CONFIG, iautofd, noninv) | \ IO_STATE(R_PAR1_CONFIG, istrb, noninv) | \ IO_STATE(R_PAR1_CONFIG, iinit, noninv) | \ IO_STATE(R_PAR1_CONFIG, iperr, inv) | \ IO_STATE(R_PAR1_CONFIG, iack, noninv) | \ IO_STATE(R_PAR1_CONFIG, ibusy, noninv) | \ IO_STATE(R_PAR1_CONFIG, ifault, noninv) | \ IO_STATE(R_PAR1_CONFIG, isel, noninv) | \ IO_STATE(R_PAR1_CONFIG, dma, enable) | \ IO_STATE(R_PAR1_CONFIG, rle_in, disable) | \ IO_STATE(R_PAR1_CONFIG, rle_out, disable) | \ IO_STATE(R_PAR1_CONFIG, enable, on) | \ IO_STATE(R_PAR1_CONFIG, force, on) | \ IO_STATE(R_PAR1_CONFIG, mode, ecp_fwd), r0 ; Forward ECP - PAR1 is TX move.d r0, [R_PAR1_CONFIG] moveq IO_FIELD(R_PAR1_DELAY, setup, 0), r0 ; setup time of value * 160 + 20 == 20 ns move.d r0, [R_PAR1_DELAY] ;; we got four descriptors, that can be active at the same time: ;; 1) from network ;; 2) to parport ;; 3) from parport ;; 4) to network ;; ;; we got four buffers, each can hold a max packet (we use 1536 bytes) ;; buffers 1 and 2 are used from network to parport, while ;; buffers 3 and 4 are used from parport to network. ;; ;; a double buffering scheme is used, so that new data can be read ;; into a buffer pair while the last data is written out from the ;; last buffer. if the read buffer is done before the write buffer, ;; the reading will halt until the writing is done, at which point ;; writing starts from the newly read and reading can start with ;; the newly written. ;; move.d R_DMA_CH0_FIRST, r1 ; we use this as base for subsequent DMA ops moveq IO_STATE(R_DMA_CH1_CMD, cmd, start), r6 move.d FN1desc, r7 move.d R_IRQ_READ0, r9 ;; start receiving from network jsr startdmaFPTN jsr startdmaFNTP ;; ------------------- MAIN LOOP ;; IRQ bits: parport rcv is par0_ecp_cmd, then dma3_eop ;; network rcv is dma1_eop ;; parport tx is dma4_desc ;; network tx is dma0_eop mainloop: ;; ------- first handle the parport -> network link ;; check if we got something from the parport move.d [r9], r0 ; r0 <- *R_IRQ_READ0 btstq PAR0ECPCMDBIT, r0 bpl noparecp nop ;; ack it by reading PAR0_STATUS_DATA move.d [R_PAR0_STATUS_DATA], r0 ;; trigger EOP on DMA3 (par0 incoming channel) moveq IO_STATE(R_SET_EOP, ch3_eop, set), r0 move.d r0, [R_SET_EOP] noparecp: ;; if we simultaneously have parport rx EOP and ;; network TX eop, we can swap buffers and start a new RX/TX move.d [r9 + (R_IRQ_READ2 - R_IRQ_READ0)], r0 btstq DMA3EOPBIT, r0 ; check parport rx bpl noswap1 btstq DMA0EOPBIT, r0 ; check network tx bpl noswap1 nop ;; prepare to swap buffer ptrs (FN3b <-> TN4b) move.d [r4 = r7 + 56], r0; FP3b move.d [r3 = r7 + 72], r2; TN4b ;; but first check if this was a Host Command Packet move.d [r0], r5 ; r5 <- first 4 bytes in PAR-received packet bne handle_command ; if non-zero, it was a host command addq 4, r0 ; skip command (in delay slot - handle_command requires this) move.d r0, [r3] ; write to To Network descriptor subq 4, r2 ; undo the skipping done last swap move.d r2, [r4] ; write to From Parport descriptor ;; clear the interrupts moveq IO_STATE(R_DMA_CH0_CLR_INTR, clr_eop, do), r0 move.b r0, [r1 + (R_DMA_CH0_CLR_INTR - R_DMA_CH0_FIRST)] move.b r0, [r1 + (R_DMA_CH3_CLR_INTR - R_DMA_CH0_FIRST)] ;; copy received length to outgoing network length move.w [r7 + 60], r0 ; FPhlen subq 4, r0 ; skip command move.w r0, [r7 + 64] ; TN4desc ;; restart DMAs jsr startdmaFPTN #ifdef CONFIG_ETRAX_ETHERNET_LPSLAVE_HAS_LEDS #if defined(CONFIG_ETRAX_NETWORK_LED_ON_WHEN_LINK) ;; Turn off the LED signaling an outgoing network packet movu.b [LEDOff], r0 #elif defined(CONFIG_ETRAX_NETWORK_LED_ON_WHEN_ACTIVITY) ;; Light the LED signaling an outgoing network packet movu.b [LEDAmber], r0 #else #error "Define either CONFIG_ETRAX_NETWORK_LED_ON_WHEN_LINK or CONFIG_ETRAX_NETWORK_LED_ON_WHEN_ACTIVITY" #endif move.b r0, [R_PORT_PA_DATA] move.d 0x00011000, r0 move.d r0,[LEDCount] #endif noswap1: ;; ----- now check the network -> parport link ;; if we simultaneously have network rx EOP and ;; parport TX desc, we can swap buffers and start a new RX/TX move.d [r9 + (R_IRQ_READ2 - R_IRQ_READ0)], r0 btstq DMA1EOPBIT, r0 ; check network rx bpl noswap2 btstq DMA4DESCBIT, r0 ; check parport tx bpl noswap2 nop ;; prepare to swap buffer ptrs (FP1b <-> TP2b) move.d [r4 = r7 + 8], r0; FN1b move.d [r3 = r7 + 24], r2; TP2b move.d r0, [r3] ; write to To Parport descriptor move.d r2, [r4] ; write to From Network descriptor ;; clear the interrupts moveq IO_STATE(R_DMA_CH1_CLR_INTR, clr_eop, do) | \ IO_STATE(R_DMA_CH1_CLR_INTR, clr_descr, do), r0 move.b r0, [r1 + (R_DMA_CH1_CLR_INTR - R_DMA_CH0_FIRST)] move.b r0, [r1 + (R_DMA_CH4_CLR_INTR - R_DMA_CH0_FIRST)] ;; copy received network length to outgoing parport length move.w [r7 + 12], r0 ; FNhlen move.w r0, [r7 + 16] ; TP2desc ;; restart DMAs jsr startdmaFNTP #if 0 #ifdef CONFIG_ETRAX_ETHERNET_LPSLAVE_HAS_LEDS ;; Light the LED signaling an incoming networkpacket movu.b 0xFB, r0 move.b r0, [R_PORT_PA_DATA] move.d 0x00010000, r0 move.d r0,[LEDCount] #endif #endif noswap2: #ifdef CONFIG_ETRAX_ETHERNET_LPSLAVE_HAS_LEDS ;; Count down LED counter, and turn off the network LED if required move.d [LEDCount], r0 beq mainloop nop subq 1, r0 move.d r0, [LEDCount] bne mainloop nop #if defined(CONFIG_ETRAX_NETWORK_LED_ON_WHEN_LINK) ;; Light the network LED , and start over the main loop movu.b [LEDAmber], r0 #elif defined(CONFIG_ETRAX_NETWORK_LED_ON_WHEN_ACTIVITY) ;; Turn off the network LED, and start over the main loop movu.b [LEDOff], r0 #else #error "Define either CONFIG_ETRAX_NETWORK_LED_ON_WHEN_LINK or CONFIG_ETRAX_NETWORK_LED_ON_WHEN_ACTIVITY" #endif move.b r0, [R_PORT_PA_DATA] #endif ba mainloop nop ;; --- some useful subroutines. handle_command: ;; handle command. we also need to clear the PAR0 RX EOP IRQ, and ;; restart the PAR0 dma. command is in R5, packet after cmd is in R0 moveq IO_STATE(R_DMA_CH3_CLR_INTR, clr_eop, do), r2 move.b r2, [r1 + (R_DMA_CH3_CLR_INTR - R_DMA_CH0_FIRST)] cmpq HOST_CMD_SETMAC, r5 bne no_setmac nop ;; copy station address (6 bytes) from packet to hardware move.d [r0+], r2 move.d R_NETWORK_SA_0, r3 move.d r2, [r3] move.w [r0], r2 move.w r2, [r3 + 4] no_setmac: move noswap1, SRP ba startdmaFP nop ;; start DMAs, from parport and to network startdmaFPTN: ;; start transmitting to the network (CH0) move.d TN4desc, r8 move.d r8, [r1] ; TN4desc -> FIRST0 move.b r6, [r1 + (R_DMA_CH0_CMD - R_DMA_CH0_FIRST)] ; start -> CMD0 startdmaFP: ;; start receiving from parport (CH3) move.d FP3desc, r8 move.d r8, [r1 + (R_DMA_CH3_FIRST - R_DMA_CH0_FIRST)] ; FP3desc -> FIRST3 move.b r6, [r1 + (R_DMA_CH3_CMD - R_DMA_CH0_FIRST)] ; start -> CMD3 ret nop ;; start DMAs, from network and to parport startdmaFNTP: ;; start transmitting to the parport (CH4) move.d TP2desc, r8 move.d r8, [r1 + (R_DMA_CH4_FIRST - R_DMA_CH0_FIRST)] ; TP2desc -> FIRST4 move.b r6, [r1 + (R_DMA_CH4_CMD - R_DMA_CH0_FIRST)] ; start -> CMD4 ;; start receiving from network (CH1) (r7 already contains FN1desc) move.d r7, [r1 + (R_DMA_CH1_FIRST - R_DMA_CH0_FIRST)] ; FN1desc -> FIRST1 move.b r6, [r1 + (R_DMA_CH1_CMD - R_DMA_CH0_FIRST)] ; start -> CMD1 ret nop ;; --- DMA descriptors - each descriptor is 4 longwords (16 bytes) ;; DONT MOVE THESE AROUND. Due to the as/ld "hole-in-the-head", ;; we cant write stuff like (TP2b - TP2desc) but the offsets ;; have to be hardcoded. .data ;; 0 from network FN1desc: .word BUFSIZE ; sw_len .word 0x0001 ; ctrl, d_eol is only flag we need .dword 0 ; next FN1b: .dword buffers ; buffer 1 8 .word 0 ; hw_len .word 0 ; status ;; 16 to parport TP2desc: .word 2 ; sw_len, filled in by code .word 0x0004 ; ctrl, d_wait because ecp cmd in next .dword TP2desc2 ; next TP2b: .dword buffers + BUFSIZE ; buffer 2 24 .word 0 ; hw_len .word 0 ; status ;; 32 to parport second descriptor, for the ECP command TP2desc2: .word 0x0001 ; sw_len, 1 byte (ecp command) .word 0x0019 ; ctrl, d_ecp | d_eol | d_int .dword 0 ; next .dword TP2desc2 ; buffer, dont care .word 0 ; hw_len .word 0 ; status ;; 48 from parport FP3desc: .word BUFSIZE ; sw_len .word 0x0001 ; ctrl, d_eol is only flag we need .dword 0 ; next FP3b: .dword buffers + BUFSIZE * 2 ; 56 buffer 3 FPhlen: .word 0 ; 60 hw_len .word 0 ; status ;; 64 to network TN4desc: .word 2 ; sw_len, filled in by code .word 0x0007 ; ctrl, d_eop | d_eol | d_wait .dword 0 ; next TN4b: .dword buffers + BUFSIZE * 3 + 4 ; 72 buffer 4 (the +4 is to offset the anti-skipping) .word 0 ; hw_len .word 0 ; status #ifdef CONFIG_ETRAX_ETHERNET_LPSLAVE_HAS_LEDS LEDCount: .dword 0 LEDOff: .word 0xff LEDGreen: .word 0xfb LEDRed: .word 0xf7 LEDAmber: .word 0xf3 LED: .word 0xf7 #endif ;; after the prog we put the buffers. not in the asm program, we just use ;; the address generated buffers: ;; END |