summaryrefslogtreecommitdiff
path: root/firmware/target/arm/sandisk/sansa-e200/ata-e200.c
blob: ca8cc1b3d927bd57db0c4b055c62b1d21ea87f11 (plain)
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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2006 Daniel Ankers
 *
 * All files in this archive are subject to the GNU General Public License.
 * See the file COPYING in the source tree root for full license agreement.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/
#include "ata.h"
#include "hotswap-target.h"
#include "ata-target.h"
#include "ata_idle_notify.h"
#include "system.h"
#include <string.h>
#include "thread.h"
#include "led.h"
#include "disk.h"
#include "pp5024.h"
#include "panic.h"

#define BLOCK_SIZE      (512)
#define SECTOR_SIZE     (512)
#define BLOCKS_PER_BANK 0x7a7800

#define STATUS_REG      (*(volatile unsigned int *)(0x70008204))
#define REG_1           (*(volatile unsigned int *)(0x70008208))
#define UNKNOWN         (*(volatile unsigned int *)(0x70008210))
#define BLOCK_SIZE_REG  (*(volatile unsigned int *)(0x7000821c))
#define BLOCK_COUNT_REG (*(volatile unsigned int *)(0x70008220))
#define REG_5           (*(volatile unsigned int *)(0x70008224))
#define CMD_REG0        (*(volatile unsigned int *)(0x70008228))
#define CMD_REG1        (*(volatile unsigned int *)(0x7000822c))
#define CMD_REG2        (*(volatile unsigned int *)(0x70008230))
#define RESPONSE_REG    (*(volatile unsigned int *)(0x70008234))
#define SD_STATE_REG    (*(volatile unsigned int *)(0x70008238))
#define REG_11          (*(volatile unsigned int *)(0x70008240))
#define REG_12          (*(volatile unsigned int *)(0x70008244))
#define DATA_REG        (*(volatile unsigned int *)(0x70008280))

/* STATUS_REG bits */
#define DATA_DONE       (1 << 12)
#define CMD_DONE        (1 << 13)
#define ERROR_BITS      (0x3f)
#define READY_FOR_DATA  (1 << 8)
#define FIFO_FULL       (1 << 7)
#define FIFO_EMPTY      (1 << 6)

#define CMD_OK          0x0 /* Command was successful */
#define CMD_ERROR_2     0x2 /* Seen when SD card is not inserted */

/* SD States */
#define IDLE            0
#define READY           1
#define IDENT           2
#define STBY            3
#define TRAN            4
#define DATA            5
#define RCV             6
#define PRG             7
#define DIS             8

#define FIFO_SIZE       16          /* FIFO is 16 words deep */

/* SD Commands */
#define GO_IDLE_STATE         0
#define ALL_SEND_CID          2
#define SEND_RELATIVE_ADDR    3
#define SET_DSR               4
#define SWITCH_FUNC           6
#define SELECT_CARD           7
#define DESELECT_CARD         7
#define SEND_CSD              9
#define SEND_CID             10
#define STOP_TRANSMISSION    12
#define SEND_STATUS          13
#define GO_INACTIVE_STATE    15
#define SET_BLOCKLEN         16
#define READ_SINGLE_BLOCK    17
#define READ_MULTIPLE_BLOCK  18
#define SEND_NUM_WR_BLOCKS   22
#define WRITE_BLOCK          24
#define WRITE_MULTIPLE_BLOCK 25
#define ERASE_WR_BLK_START   32
#define ERASE_WR_BLK_END     33
#define ERASE                38
#define APP_CMD              55

#define EC_POWER_UP             1 /* error code */
#define EC_READ_TIMEOUT         2 /* error code */
#define EC_WRITE_TIMEOUT        3 /* error code */
#define EC_TRAN_SEL_BANK        4 /* error code */
#define EC_TRAN_READ_ENTRY      5 /* error code */
#define EC_TRAN_READ_EXIT       6 /* error code */
#define EC_TRAN_WRITE_ENTRY     7 /* error code */
#define EC_TRAN_WRITE_EXIT      8 /* error code */
#define DO_PANIC               32 /* marker     */
#define NO_PANIC                0 /* marker     */
#define EC_COMMAND             10 /* error code */
#define EC_FIFO_SEL_BANK_EMPTY 11 /* error code */
#define EC_FIFO_SEL_BANK_DONE  12 /* error code */
#define EC_FIFO_ENA_BANK_EMPTY 13 /* error code */
#define EC_FIFO_READ_FULL      14 /* error code */
#define EC_FIFO_WR_EMPTY       15 /* error code */
#define EC_FIFO_WR_DONE        16 /* error code */

/* Application Specific commands */
#define SET_BUS_WIDTH   6
#define SD_APP_OP_COND  41

/* for compatibility */
int ata_spinup_time = 0;

long last_disk_activity = -1;

static bool initialized = false;
static int  sd1_status  = 0x00;  /* 0x00:inserted, 0x80:not inserted */

static tSDCardInfo card_info[2];
static tSDCardInfo *currcard; /* current active card */

/* Shoot for around 75% usage */
static long sd_stack [(DEFAULT_STACK_SIZE*2 + 0x1c0)/sizeof(long)];
static const char         sd_thread_name[] = "ata/sd";
static struct mutex       sd_mtx;
static struct event_queue sd_queue;

/* Posted when card plugged status has changed */
#define SD_HOTSWAP    1

/* Private Functions */

static unsigned int check_time[10];

static inline void sd_check_timeout(unsigned int timeout, int id)
{
    if (USEC_TIMER > check_time[id] + timeout)
        panicf("Error SDCard: %d", id);
}

static inline bool sd_poll_status(unsigned int trigger, unsigned int timeout,
                                  int id)
{
    unsigned int t = USEC_TIMER;

    while ((STATUS_REG & trigger) == 0)
    {
        if (USEC_TIMER > t + timeout)
        {
            if(id & DO_PANIC)
                panicf("Error SDCard: %d", id & 31);

            return false;
        }
    }

    return true;
}

static bool sd_command(unsigned int cmd, unsigned long arg1,
                       unsigned int *response, unsigned int type)
{
    int i, words; /* Number of 16 bit words to read from RESPONSE_REG */
    unsigned int data[9];

    CMD_REG0 = cmd;
    CMD_REG1 = (unsigned int)((arg1 & 0xffff0000) >> 16);
    CMD_REG2 = (unsigned int)((arg1 & 0xffff));
    UNKNOWN  = type;

    sd_poll_status(CMD_DONE, 100000, EC_COMMAND | DO_PANIC);

    if ((STATUS_REG & ERROR_BITS) != CMD_OK)
        return false; /* Error sending command */

    if (cmd == GO_IDLE_STATE)
        return true; /* no response here */

    words = (type == 2) ? 9 : 3;

    for (i = 0; i < words; i++) /* RESPONSE_REG is read MSB first */
    {
        data[i] = RESPONSE_REG; /* Read most significant 16-bit word */
    }

    if (type == 2)
    {
        /* Response type 2 has the following structure:
         * [135:135] Start Bit - '0'
         * [134:134] Transmission bit - '0'
         * [133:128] Reserved - '111111'
         * [127:001] CID or CSD register including internal CRC7
         * [000:000] End Bit - '1'
         */
        response[3] = (data[0]<<24) + (data[1]<<8) + ((data[2]&0xff00)>>8);
        response[2] = (data[2]<<24) + (data[3]<<8) + ((data[4]&0xff00)>>8);
        response[1] = (data[4]<<24) + (data[5]<<8) + ((data[6]&0xff00)>>8);
        response[0] = (data[6]<<24) + (data[7]<<8) + ((data[8]&0xff00)>>8);
    }
    else
    {
        /* Response types 1, 1b, 3, 6 have the following structure:
         * Types 4 and 5 are not supported.
         *
         *     [47] Start bit - '0'
         *     [46] Transmission bit - '0'
         *  [45:40] R1, R1b, R6: Command index
         *          R3: Reserved - '111111'
         *   [39:8] R1, R1b: Card Status
         *          R3: OCR Register
         *          R6: [31:16] RCA
         *              [15: 0] Card Status Bits 23, 22, 19, 12:0
         *                     [23] COM_CRC_ERROR
         *                     [22] ILLEGAL_COMMAND
         *                     [19] ERROR
         *                   [12:9] CURRENT_STATE
         *                      [8] READY_FOR_DATA
         *                    [7:6]
         *                      [5] APP_CMD
         *                      [4]
         *                      [3] AKE_SEQ_ERROR
         *                      [2] Reserved
         *                    [1:0] Reserved for test mode
         *    [7:1] R1, R1b: CRC7
         *          R3: Reserved - '1111111'
         *      [0] End Bit - '1'
         */
        response[0] = (data[0]<<24) + (data[1]<<8) + ((data[2]&0xff00)>>8);
    }

    return true;
}

static void sd_wait_for_state(unsigned int state, unsigned int id)
{
    unsigned int response = 0;

    check_time[id] = USEC_TIMER;

    while (1)
    {
        sd_command(SEND_STATUS, currcard->rca, &response, 1);
        sd_check_timeout(0x80000, id);

        if (((response >> 9) & 0xf) == state)
            break;

        priority_yield();
    }

    SD_STATE_REG = state;
}

static inline void copy_read_sectors_fast(unsigned char **buf)
{
    /* Copy one chunk of 16 words using best method for start alignment */
    switch ( (intptr_t)*buf & 3 )
    {
    case 0:
        asm volatile (
            "ldmia  %[data], { r2-r9 }          \r\n"
            "orr    r2, r2, r3, lsl #16         \r\n"
            "orr    r4, r4, r5, lsl #16         \r\n"
            "orr    r6, r6, r7, lsl #16         \r\n"
            "orr    r8, r8, r9, lsl #16         \r\n"
            "stmia  %[buf]!, { r2, r4, r6, r8 } \r\n"
            "ldmia  %[data], { r2-r9 }          \r\n"
            "orr    r2, r2, r3, lsl #16         \r\n"
            "orr    r4, r4, r5, lsl #16         \r\n"
            "orr    r6, r6, r7, lsl #16         \r\n"
            "orr    r8, r8, r9, lsl #16         \r\n"
            "stmia  %[buf]!, { r2, r4, r6, r8 } \r\n"
            : [buf]"+&r"(*buf)
            : [data]"r"(&DATA_REG)
            : "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9"
        );
        break;
    case 1:
        asm volatile (
            "ldmia  %[data], { r2-r9 }          \r\n"
            "orr    r3, r2, r3, lsl #16         \r\n"
            "strb   r3, [%[buf]], #1            \r\n"
            "mov    r3, r3, lsr #8              \r\n"
            "strh   r3, [%[buf]], #2            \r\n"
            "mov    r3, r3, lsr #16             \r\n"
            "orr    r3, r3, r4, lsl #8          \r\n"
            "orr    r3, r3, r5, lsl #24         \r\n"
            "mov    r5, r5, lsr #8              \r\n"
            "orr    r5, r5, r6, lsl #8          \r\n"
            "orr    r5, r5, r7, lsl #24         \r\n"
            "mov    r7, r7, lsr #8              \r\n"
            "orr    r7, r7, r8, lsl #8          \r\n"
            "orr    r7, r7, r9, lsl #24         \r\n"
            "mov    r2, r9, lsr #8              \r\n"
            "stmia  %[buf]!, { r3, r5, r7 }     \r\n"
            "ldmia  %[data], { r3-r10 }         \r\n"
            "orr    r2, r2, r3, lsl #8          \r\n"
            "orr    r2, r2, r4, lsl #24         \r\n"
            "mov    r4, r4, lsr #8              \r\n"
            "orr    r4, r4, r5, lsl #8          \r\n"
            "orr    r4, r4, r6, lsl #24         \r\n"
            "mov    r6, r6, lsr #8              \r\n"
            "orr    r6, r6, r7, lsl #8          \r\n"
            "orr    r6, r6, r8, lsl #24         \r\n"
            "mov    r8, r8, lsr #8              \r\n"
            "orr    r8, r8, r9, lsl #8          \r\n"
            "orr    r8, r8, r10, lsl #24        \r\n"
            "mov    r10, r10, lsr #8            \r\n"
            "stmia  %[buf]!, { r2, r4, r6, r8 } \r\n"
            "strb   r10, [%[buf]], #1           \r\n"
            : [buf]"+&r"(*buf)
            : [data]"r"(&DATA_REG)
            : "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10"
        );
        break;
    case 2:
        asm volatile (
            "ldmia  %[data], { r2-r9 }          \r\n"
            "strh   r2, [%[buf]], #2            \r\n"
            "orr    r3, r3, r4, lsl #16         \r\n"
            "orr    r5, r5, r6, lsl #16         \r\n"
            "orr    r7, r7, r8, lsl #16         \r\n"
            "stmia  %[buf]!, { r3, r5, r7 }     \r\n"
            "ldmia  %[data], { r2-r8, r10 }     \r\n"
            "orr    r2, r9, r2, lsl #16         \r\n"
            "orr    r3, r3, r4, lsl #16         \r\n"
            "orr    r5, r5, r6, lsl #16         \r\n"
            "orr    r7, r7, r8, lsl #16         \r\n"
            "stmia  %[buf]!, { r2, r3, r5, r7 } \r\n"
            "strh   r10, [%[buf]], #2           \r\n"
            : [buf]"+&r"(*buf)
            : [data]"r"(&DATA_REG)
            : "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10"
        );
        break;
    case 3:
        asm volatile (
            "ldmia  %[data], { r2-r9 }          \r\n"
            "orr    r3, r2, r3, lsl #16         \r\n"
            "strb   r3, [%[buf]], #1            \r\n"
            "mov    r3, r3, lsr #8              \r\n"
            "orr    r3, r3, r4, lsl #24         \r\n"
            "mov    r4, r4, lsr #8              \r\n"
            "orr    r5, r4, r5, lsl #8          \r\n"
            "orr    r5, r5, r6, lsl #24         \r\n"
            "mov    r6, r6, lsr #8              \r\n"
            "orr    r7, r6, r7, lsl #8          \r\n"
            "orr    r7, r7, r8, lsl #24         \r\n"
            "mov    r8, r8, lsr #8              \r\n"
            "orr    r2, r8, r9, lsl #8          \r\n"
            "stmia  %[buf]!, { r3, r5, r7 }     \r\n"
            "ldmia  %[data], { r3-r10 }         \r\n"
            "orr    r2, r2, r3, lsl #24         \r\n"
            "mov    r3, r3, lsr #8              \r\n"
            "orr    r4, r3, r4, lsl #8          \r\n"
            "orr    r4, r4, r5, lsl #24         \r\n"
            "mov    r5, r5, lsr #8              \r\n"
            "orr    r6, r5, r6, lsl #8          \r\n"
            "orr    r6, r6, r7, lsl #24         \r\n"
            "mov    r7, r7, lsr #8              \r\n"
            "orr    r8, r7, r8, lsl #8          \r\n"
            "orr    r8, r8, r9, lsl #24         \r\n"
            "mov    r9, r9, lsr #8              \r\n"
            "orr    r10, r9, r10, lsl #8        \r\n"
            "stmia  %[buf]!, { r2, r4, r6, r8 } \r\n"
            "strh   r10, [%[buf]], #2           \r\n"
            "mov    r10, r10, lsr #16           \r\n"
            "strb   r10, [%[buf]], #1           \r\n"
            : [buf]"+&r"(*buf)
            : [data]"r"(&DATA_REG)
            : "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10"
        );
        break;
    }
}

static inline void copy_read_sectors_slow(unsigned char** buf)
{
    int cnt = FIFO_SIZE;
    int t;

    /* Copy one chunk of 16 words */
    asm volatile (
    "1:                                     \r\n"
        "ldrh   %[t], [%[data]]             \r\n"
        "strb   %[t], [%[buf]], #1          \r\n"
        "mov    %[t], %[t], lsr #8          \r\n"
        "strb   %[t], [%[buf]], #1          \r\n"
        "subs   %[cnt], %[cnt], #1          \r\n"
        "bgt    1b                          \r\n"
        : [cnt]"+&r"(cnt), [buf]"+&r"(*buf),
          [t]"=&r"(t)
        : [data]"r"(&DATA_REG)
    );
}

/* Writes have to be kept slow for now */
static inline void copy_write_sectors(const unsigned char* buf)
{
    unsigned short tmp = 0;
    const unsigned char* bufend = buf + FIFO_SIZE*2;

    do
    {
        tmp  = (unsigned short) *buf++;
        tmp |= (unsigned short) *buf++ << 8;
        DATA_REG = tmp;
    } while (buf < bufend); /* tail loop is faster */
}

static bool sd_select_bank(unsigned char bank)
{
    unsigned int response;
    unsigned char card_data[512];
    unsigned char* write_buf;
    int i;

    memset(card_data, 0, 512);
    sd_wait_for_state(TRAN, EC_TRAN_SEL_BANK);
    BLOCK_SIZE_REG = 512;
    BLOCK_COUNT_REG = 1;

    if (!sd_command(35, 0, &response, 0x1c0d)) /* CMD35 is vendor specific */
        return false;

    SD_STATE_REG = PRG;

    card_data[0] = bank;

    /* Write the card data */
    write_buf = card_data;
    for (i = 0; i < BLOCK_SIZE / 2; i += FIFO_SIZE)
    {
        /* Wait for the FIFO to empty */
        sd_poll_status(FIFO_EMPTY, 10000, EC_FIFO_SEL_BANK_EMPTY | DO_PANIC);

        copy_write_sectors(write_buf); /* Copy one chunk of 16 words */

        write_buf += FIFO_SIZE*2; /* Advance one chunk of 16 words */
    }

    sd_poll_status(DATA_DONE, 10000, EC_FIFO_SEL_BANK_DONE | DO_PANIC);

    currcard->current_bank = bank;

    return true;
}

/* lock must already be aquired */
static void sd_init_device(int card_no)
{
/* SD Protocol registers */
    unsigned int  i, dummy;
    unsigned int  c_size = 0;
    unsigned long c_mult = 0;
    unsigned char carddata[512];
    unsigned char *dataptr;

/* Enable and initialise controller */
    REG_1 = 6;

    currcard = &card_info[card_no];

/* Initialise card data as blank */
    memset(currcard, 0, sizeof(*currcard));

    if (card_no == 0)
    {
        outl(inl(0x70000080) | 0x4, 0x70000080);

        GPIOA_ENABLE     &= ~0x7a;
        GPIOA_OUTPUT_EN  &= ~0x7a;
        GPIOD_ENABLE     |=  0x1f;
        GPIOD_OUTPUT_VAL |=  0x1f;
        GPIOD_OUTPUT_EN  |=  0x1f;

        outl((inl(0x70000014) & ~(0x3ffff)) | 0x255aa, 0x70000014);
    }
    else
    {
        outl(inl(0x70000080) & ~0x4, 0x70000080);

        GPIOD_ENABLE     &= ~0x1f;
        GPIOD_OUTPUT_EN  &= ~0x1f;
        GPIOA_ENABLE     |=  0x7a;
        GPIOA_OUTPUT_VAL |=  0x7a;
        GPIOA_OUTPUT_EN  |=  0x7a;

        outl(inl(0x70000014) & ~(0x3ffff), 0x70000014);
    }

    /* Init NAND */
    REG_11 |=  (1 << 15);
    REG_12 |=  (1 << 15);
    REG_12 &= ~(3 << 12);
    REG_12 |=  (1 << 13);
    REG_11 &= ~(3 << 12);
    REG_11 |=  (1 << 13);

    DEV_EN |= DEV_ATA; /* Enable controller */
    DEV_RS |= DEV_ATA; /* Reset controller */
    DEV_RS &=~DEV_ATA; /* Clear Reset */

    SD_STATE_REG = TRAN;

    REG_5 = 0xf;

    if (!sd_command(GO_IDLE_STATE, 0, &dummy, 256))
        goto card_init_error;

    check_time[EC_POWER_UP] = USEC_TIMER;
    while ((currcard->ocr & (1 << 31)) == 0) /* until card is powered up */
    {
        if (!sd_command(APP_CMD, currcard->rca, &dummy, 1))
            goto card_init_error;

        if (!sd_command(SD_APP_OP_COND, 0x100000, &currcard->ocr, 3))
            goto card_init_error;

        sd_check_timeout(5000000, EC_POWER_UP);
    }

    if (!sd_command(ALL_SEND_CID, 0, currcard->cid, 2))
        goto card_init_error;

    if (!sd_command(SEND_RELATIVE_ADDR, 0, &currcard->rca, 1))
        goto card_init_error;

    if (!sd_command(SEND_CSD, currcard->rca, currcard->csd, 2))
        goto card_init_error;

    /* These calculations come from the Sandisk SD card product manual */
    c_size = ((currcard->csd[2] & 0x3ff) << 2) + (currcard->csd[1] >> 30) + 1;
    c_mult = 4 << ((currcard->csd[1] >> 15) & 7);
    currcard->max_read_bl_len = 1 << ((currcard->csd[2] >> 16) & 15);
    currcard->block_size = BLOCK_SIZE;     /* Always use 512 byte blocks */
    currcard->numblocks = c_size * c_mult * (currcard->max_read_bl_len / 512);
    currcard->capacity = currcard->numblocks * currcard->block_size;

    REG_1 = 0;

    if (!sd_command(SELECT_CARD, currcard->rca, &dummy, 129))
        goto card_init_error;

    if (!sd_command(APP_CMD, currcard->rca, &dummy, 1))
        goto card_init_error;

    if (!sd_command(SET_BUS_WIDTH, currcard->rca | 2, &dummy, 1)) /* 4 bit */
        goto card_init_error;

    if (!sd_command(SET_BLOCKLEN, currcard->block_size, &dummy, 1))
        goto card_init_error;

    BLOCK_SIZE_REG = currcard->block_size;

    /* If this card is > 4Gb, then we need to enable bank switching */
    if(currcard->numblocks >= BLOCKS_PER_BANK)
    {
        SD_STATE_REG = TRAN;
        BLOCK_COUNT_REG = 1;

        if (!sd_command(SWITCH_FUNC, 0x80ffffef, &dummy, 0x1c05))
            goto card_init_error;

        /* Read 512 bytes from the card.
        The first 512 bits contain the status information
        TODO: Do something useful with this! */
        dataptr = carddata;
        for (i = 0; i < BLOCK_SIZE / 2; i += FIFO_SIZE)
        {
            /* Wait for the FIFO to be full */
            sd_poll_status(FIFO_FULL, 100000,
                           EC_FIFO_ENA_BANK_EMPTY | DO_PANIC);
            copy_read_sectors_slow(&dataptr);
        }
    }

    currcard->initialized = 1;
    return;

    /* Card failed to initialize so disable it */
card_init_error:
    currcard->initialized = -1;
}

/* API Functions */

void ata_led(bool onoff)
{
    led(onoff);
}

int ata_read_sectors(IF_MV2(int drive,) unsigned long start, int incount,
                     void* inbuf)
{
    int  ret = -9;
    unsigned char *buf, *buf_end;
    unsigned int dummy;
    int bank;
    
    /* TODO: Add DMA support. */

    spinlock_lock(&sd_mtx);

    ata_led(true);

    if (drive != 0 && (GPIOA_INPUT_VAL & 0x80) != 0)
        /* no external sd-card inserted */
        goto ata_read_error;

    if (&card_info[drive] != currcard || card_info[drive].initialized == 0)
    {
        sd_init_device(drive);

        if (card_info[drive].initialized < 0)
            goto ata_read_error;
    }

    last_disk_activity = current_tick;

    bank = start / BLOCKS_PER_BANK;

    if (currcard->current_bank != bank && !sd_select_bank(bank))
        goto ata_read_error;

    start -= bank * BLOCKS_PER_BANK;

    sd_wait_for_state(TRAN, EC_TRAN_READ_ENTRY);
    BLOCK_COUNT_REG = incount;

    if (!sd_command(READ_MULTIPLE_BLOCK, start * BLOCK_SIZE, &dummy, 0x1c25))
        goto ata_read_error;

    /* TODO: Don't assume BLOCK_SIZE == SECTOR_SIZE */

    buf_end = (unsigned char *)inbuf + incount * currcard->block_size;
    for (buf = inbuf; buf < buf_end;)
    {
        /* Wait for the FIFO to be full */
        sd_poll_status(FIFO_FULL, 0x80000, EC_FIFO_READ_FULL | DO_PANIC);
        copy_read_sectors_fast(&buf); /* Copy one chunk of 16 words */

        /* TODO: Switch bank if necessary */
    }

    last_disk_activity = current_tick;
#if 0
    udelay(75);
#endif
    if (!sd_command(STOP_TRANSMISSION, 0, &dummy, 1))
        goto ata_read_error;

    sd_wait_for_state(TRAN, EC_TRAN_READ_EXIT);

    ret = 0;

ata_read_error:
    ata_led(false);

    spinlock_unlock(&sd_mtx);

    return ret;
}

int ata_write_sectors(IF_MV2(int drive,) unsigned long start, int count,
                      const void* outbuf)
{
/* Write support is not finished yet */
/* TODO: The standard suggests using ACMD23 prior to writing multiple blocks
   to improve performance */
    unsigned int response;
    void const* buf, *buf_end;
    int ret = -9;
    int bank;

    spinlock_lock(&sd_mtx);

    ata_led(true);

    if (drive != 0 && (GPIOA_INPUT_VAL & 0x80) != 0)
        /* no external sd-card inserted */
        goto ata_write_error;

    if (&card_info[drive] != currcard || card_info[drive].initialized == 0)
    {
        sd_init_device(drive);

        if (card_info[drive].initialized < 0)
            goto ata_write_error;
    }

    bank = start / BLOCKS_PER_BANK;

    if (currcard->current_bank != bank && !sd_select_bank(bank))
        goto ata_write_error;

    start -= bank * BLOCKS_PER_BANK;

    check_time[EC_WRITE_TIMEOUT] = USEC_TIMER;
    sd_wait_for_state(TRAN, EC_TRAN_WRITE_ENTRY);
    BLOCK_COUNT_REG = count;

    if (!sd_command(WRITE_MULTIPLE_BLOCK, start * SECTOR_SIZE,
                    &response, 0x1c2d))
    {
        goto ata_write_error;
    }

    buf_end = outbuf + count * currcard->block_size;
    for (buf = outbuf; buf < buf_end; buf += 2 * FIFO_SIZE)
    {
        if (buf >= buf_end - 2 * FIFO_SIZE)
        {
            /* Set SD_STATE_REG to PRG for the last buffer fill */
            SD_STATE_REG = PRG;
        }

        udelay(2); /* needed here (loop is too fast :-) */

        /* Wait for the FIFO to empty */
        sd_poll_status(FIFO_EMPTY, 0x80000, EC_FIFO_WR_EMPTY | DO_PANIC);

        copy_write_sectors(buf); /* Copy one chunk of 16 words */

        /* TODO: Switch bank if necessary */
    }

    last_disk_activity = current_tick;

    sd_poll_status(DATA_DONE, 0x80000, EC_FIFO_WR_DONE | DO_PANIC);
    sd_check_timeout(0x80000, EC_WRITE_TIMEOUT);

    if (!sd_command(STOP_TRANSMISSION, 0, &response, 1))
        goto ata_write_error;

    sd_wait_for_state(TRAN, EC_TRAN_WRITE_EXIT);

    ret = 0;

ata_write_error:
    ata_led(false);
    spinlock_unlock(&sd_mtx);

    return ret;
}

static void sd_thread(void) __attribute__((noreturn));
static void sd_thread(void)
{
    struct event ev;
    bool idle_notified = false;
    
    while (1)
    {
        queue_wait_w_tmo(&sd_queue, &ev, HZ);

        switch ( ev.id ) 
        {
        case SD_HOTSWAP:
        {
            int status = 0;
            enum { SD_UNMOUNTED = 0x1, SD_MOUNTED = 0x2 };

            /* Delay on insert and remove to prevent reading state if it is
               just bouncing back and forth while card is sliding - delay on
               insert is also required for the card to stabilize and accept
               commands */
            sleep(HZ/10);

            /* Lock to keep us from messing with this variable while an init
               may be in progress */
            spinlock_lock(&sd_mtx);
            card_info[1].initialized = false;
            spinlock_unlock(&sd_mtx);

            /* Either unmount because the card was pulled or unmount and
               remount if already mounted since multiple messages may be
               generated for the same event - like someone inserting a new
               card before anything detects the old one pulled :) */
            if (disk_unmount(1) != 0)  /* release "by force" */
                status |= SD_UNMOUNTED;

            if (card_detect_target() && disk_mount(1) != 0) /* mount SD-CARD */
                status |= SD_MOUNTED;

            if (status & SD_UNMOUNTED)
                queue_broadcast(SYS_HOTSWAP_EXTRACTED, 0);

            if (status & SD_MOUNTED)
                queue_broadcast(SYS_HOTSWAP_INSERTED, 0);

            if (status)
                queue_broadcast(SYS_FS_CHANGED, 0);
            break;
            } /* SD_HOTSWAP */
        case SYS_TIMEOUT:
            if (TIME_BEFORE(current_tick, last_disk_activity+(3*HZ)))
            {
                idle_notified = false;
            }
            else if (!idle_notified)
            {
                call_ata_idle_notifys(false);
                idle_notified = true;
            }
            break;
        }
    }
}


void ata_spindown(int seconds)
{
    (void)seconds;
}

bool ata_disk_is_active(void)
{
    return 0;
}

void ata_sleep(void)
{
}

void ata_spin(void)
{
}

/* Hardware reset protocol as specified in chapter 9.1, ATA spec draft v5 */
int ata_hard_reset(void)
{
    return 0;
}

int ata_soft_reset(void)
{
    return 0;
}

void ata_enable(bool on)
{
    if(on)
    {
        DEV_EN |= DEV_ATA; /* Enable controller */
    }
    else
    {
        DEV_EN &= ~DEV_ATA; /* Disable controller */
    }
}

int ata_init(void)
{
    int ret = 0;

    ata_led(false);

    /* NOTE: This init isn't dual core safe */
    if (!initialized)
    {
        initialized = true;

        spinlock_init(&sd_mtx);

        spinlock_lock(&sd_mtx);

        /* init controller */
        outl(inl(0x70000088) & ~(0x4), 0x70000088);
        outl(inl(0x7000008c) & ~(0x4), 0x7000008c);
        outl(inl(0x70000084) | 0x4, 0x70000084);
        outl(0x1010, 0x70000034);

        GPIOG_ENABLE     |= (0x3 << 5);
        GPIOG_OUTPUT_EN  |= (0x3 << 5);
        GPIOG_OUTPUT_VAL |= (0x3 << 5);

        /* enable card detection port - mask interrupt first */
        GPIOA_INT_EN     &= ~0x80;

        GPIOA_OUTPUT_EN  &= ~0x80;
        GPIOA_ENABLE     |=  0x80;

        sd_init_device(0);

        if (currcard->initialized <= 0)
            ret = -1;

        queue_init(&sd_queue, true);
        create_thread(sd_thread, sd_stack, sizeof(sd_stack),
            sd_thread_name IF_PRIO(, PRIORITY_SYSTEM) IF_COP(, CPU, false));

        /* enable interupt for the mSD card */
        sleep(HZ/10);

        CPU_INT_EN = HI_MASK;
        CPU_HI_INT_EN = GPIO0_MASK;

        sd1_status = GPIOA_INPUT_VAL & 0x80;
        GPIOA_INT_LEV = (GPIOA_INT_LEV & ~0x80) | (sd1_status ^ 0x80);

        GPIOA_INT_CLR = 0x80;
        GPIOA_INT_EN |= 0x80;

        spinlock_unlock(&sd_mtx);
    }

    return ret;
}

/* move the sd-card info to mmc struct */
tCardInfo *card_get_info_target(int card_no)
{
    int i, temp;
    static tCardInfo card;
    static const char mantissa[] = {  /* *10 */
        0,  10, 12, 13, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 70, 80 };
    static const int exponent[] = {  /* use varies */
      1,10,100,1000,10000,100000,1000000,10000000,100000000,1000000000 };

    card.initialized  = card_info[card_no].initialized;
    card.ocr          = card_info[card_no].ocr;
    for(i=0; i<4; i++)  card.csd[i] = card_info[card_no].csd[3-i];
    for(i=0; i<4; i++)  card.cid[i] = card_info[card_no].cid[3-i];
    card.numblocks    = card_info[card_no].numblocks;
    card.blocksize    = card_info[card_no].block_size;
    card.size         = card_info[card_no].capacity < 0xffffffff ?
                        card_info[card_no].capacity : 0xffffffff;
    card.block_exp    = card_info[card_no].block_exp;
    temp              = card_extract_bits(card.csd, 29, 3);
    card.speed        = mantissa[card_extract_bits(card.csd, 25, 4)]
                      * exponent[temp > 2 ? 7 : temp + 4];
    card.nsac         = 100 * card_extract_bits(card.csd, 16, 8);
    temp              = card_extract_bits(card.csd, 13, 3);
    card.tsac         = mantissa[card_extract_bits(card.csd, 9, 4)]
                      * exponent[temp] / 10;
    card.cid[0]       = htobe32(card.cid[0]); /* ascii chars here */
    card.cid[1]       = htobe32(card.cid[1]); /* ascii chars here */
    temp = *((char*)card.cid+13); /* adjust year<=>month, 1997 <=> 2000 */
    *((char*)card.cid+13) = (unsigned char)((temp >> 4) | (temp << 4)) + 3;

    return &card;
}

bool card_detect_target(void)
{
    /* 0x00:inserted, 0x80:not inserted */
    return (GPIOA_INPUT_VAL & 0x80) == 0;
}

/* called on insertion/removal interrupt */
void microsd_int(void)
{
    int status = GPIOA_INPUT_VAL & 0x80;
    
    GPIOA_INT_LEV = (GPIOA_INT_LEV & ~0x80) | (status ^ 0x80);
    GPIOA_INT_CLR = 0x80;

    if (status == sd1_status)
        return;

    sd1_status = status;

    /* Take final state only - insert/remove is bouncy */
    queue_remove_from_head(&sd_queue, SD_HOTSWAP);
    queue_post(&sd_queue, SD_HOTSWAP, status);
}