📄 ata.c
字号:
/*************************************************************************** * __________ __ ___. * Open \______ \ ____ ____ | | _\_ |__ _______ ___ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ * \/ \/ \/ \/ \/ * $Id: ata.c,v 1.111 2004/03/09 08:52:14 linusnielsen Exp $ * * Copyright (C) 2002 by Alan Korr * * 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 <stdbool.h>#include "ata.h"#include "kernel.h"#include "thread.h"#include "led.h"#include "sh7034.h"#include "system.h"#include "debug.h"#include "panic.h"#include "usb.h"#include "power.h"#include "string.h"#include "hwcompat.h"/* use plain C code in copy_read_sectors(), instead of tweaked assembler */#define PREFER_C /* mystery: assembler caused problems with some disks */#define SECTOR_SIZE 512#define ATA_DATA (*((volatile unsigned short*)0x06104100))#define ATA_ERROR (*((volatile unsigned char*)0x06100101))#define ATA_FEATURE ATA_ERROR#define ATA_NSECTOR (*((volatile unsigned char*)0x06100102))#define ATA_SECTOR (*((volatile unsigned char*)0x06100103))#define ATA_LCYL (*((volatile unsigned char*)0x06100104))#define ATA_HCYL (*((volatile unsigned char*)0x06100105))#define ATA_SELECT (*((volatile unsigned char*)0x06100106))#define ATA_COMMAND (*((volatile unsigned char*)0x06100107))#define ATA_STATUS (*((volatile unsigned char*)0x06100107))#define ATA_CONTROL1 ((volatile unsigned char*)0x06200206)#define ATA_CONTROL2 ((volatile unsigned char*)0x06200306)#define ATA_CONTROL (*ata_control)#define ATA_ALT_STATUS ATA_CONTROL#define SELECT_DEVICE1 0x10#define SELECT_LBA 0x40#define STATUS_BSY 0x80#define STATUS_RDY 0x40#define STATUS_DF 0x20#define STATUS_DRQ 0x08#define STATUS_ERR 0x01#define ERROR_ABRT 0x04#define CONTROL_nIEN 0x02#define CONTROL_SRST 0x04#define CMD_READ_SECTORS 0x20#define CMD_WRITE_SECTORS 0x30#define CMD_READ_MULTIPLE 0xC4#define CMD_WRITE_MULTIPLE 0xC5#define CMD_SET_MULTIPLE_MODE 0xC6#define CMD_STANDBY_IMMEDIATE 0xE0#define CMD_STANDBY 0xE2#define CMD_IDENTIFY 0xEC#define CMD_SLEEP 0xE6#define CMD_SET_FEATURES 0xEF#define CMD_SECURITY_FREEZE_LOCK 0xF5#define Q_SLEEP 0#define READ_TIMEOUT 5*HZstatic struct mutex ata_mtx;char ata_device; /* device 0 (master) or 1 (slave) */int ata_io_address; /* 0x300 or 0x200, only valid on recorder */static volatile unsigned char* ata_control;bool old_recorder = false;int ata_spinup_time = 0;static bool spinup = false;static bool sleeping = true;static int sleep_timeout = 5*HZ;static bool poweroff = false;#ifdef HAVE_ATA_POWER_OFFstatic int poweroff_timeout = 2*HZ;#endifstatic char ata_stack[DEFAULT_STACK_SIZE];static char ata_thread_name[] = "ata";static struct event_queue ata_queue;static bool initialized = false;static bool delayed_write = false;static unsigned char delayed_sector[SECTOR_SIZE];static int delayed_sector_num;static long last_user_activity = -1;long last_disk_activity = -1;static int multisectors; /* number of supported multisectors */static unsigned short identify_info[SECTOR_SIZE];static int ata_power_on(void);static int perform_soft_reset(void);static int set_multiple_mode(int sectors);static int set_features(void);static int wait_for_bsy(void) __attribute__ ((section (".icode")));static int wait_for_bsy(void){ int timeout = current_tick + HZ*10; while (TIME_BEFORE(current_tick, timeout) && (ATA_STATUS & STATUS_BSY)) { last_disk_activity = current_tick; yield(); } if (TIME_BEFORE(current_tick, timeout)) return 1; else return 0; /* timeout */}static int wait_for_rdy(void) __attribute__ ((section (".icode")));static int wait_for_rdy(void){ int timeout; if (!wait_for_bsy()) return 0; timeout = current_tick + HZ*10; while (TIME_BEFORE(current_tick, timeout) && !(ATA_ALT_STATUS & STATUS_RDY)) { last_disk_activity = current_tick; yield(); } if (TIME_BEFORE(current_tick, timeout)) return STATUS_RDY; else return 0; /* timeout */}static int wait_for_start_of_transfer(void) __attribute__ ((section (".icode")));static int wait_for_start_of_transfer(void){ if (!wait_for_bsy()) return 0; return (ATA_ALT_STATUS & (STATUS_BSY|STATUS_DRQ)) == STATUS_DRQ;}static int wait_for_end_of_transfer(void) __attribute__ ((section (".icode")));static int wait_for_end_of_transfer(void){ if (!wait_for_bsy()) return 0; return (ATA_ALT_STATUS & (STATUS_RDY|STATUS_DRQ)) == STATUS_RDY;} /* the tight loop of ata_read_sectors(), to avoid the whole in IRAM */static void copy_read_sectors(unsigned char* buf, int wordcount) __attribute__ ((section (".icode")));static void copy_read_sectors(unsigned char* buf, int wordcount){ unsigned short tmp = 0; /* have to init to prevent warning? */ if ( (unsigned int)buf & 1) { /* not 16-bit aligned, copy byte by byte */ unsigned char* bufend = buf + wordcount*2;#ifdef PREFER_C do { /* loop compiles to 9 assembler instructions */ tmp = ATA_DATA; *buf++ = tmp & 0xff; /* I assume big endian */ *buf++ = tmp >> 8; /* and don't use the SWAB16 macro */ } while (buf < bufend); /* tail loop is faster */#else /* I can bring it down to 7 instructions/loop, and exploit pipeline */ asm ( "mov #1, r0 \n" /* r0 = 1; */ /* correct for the "early increment" below */ "add #-2,%2 \n" /* buf -= 2; */ "add #-2,%3 \n" /* bufend -= 2; */ "loop_b: \n" "mov.w @%1,%0 \n" /* tmp = ATA_DATA; */ /* Now we're reading from the bus, I do something independent we need later, to avoid pipeline stall */ "add #0x02,%2 \n" /* buf += 2; */ "cmp/hs %3,%2 \n" /* if (buf < bufend) */ /* now use the read result */ "mov.b %0,@%2 \n" /* buf[0] = lowbyte(tmp); */ "shlr8 %0 \n" /* tmp >>= 8; */ "mov.b %0,@(r0,%2) \n" /* buf[r0] = lowbyte(tmp); */ "bf loop_b \n" /* goto loop_b; */ : /* outputs */ : /* inputs */ /* %0 */ "r"(tmp), /* %1 */ "r"(&ATA_DATA), /* %2 */ "r"(buf), /* %3 */ "r"(bufend) : /* trashed */ "r0" );#endif } else { /* 16-bit aligned, can do faster copy */ unsigned short* wbuf = (unsigned short*)buf; unsigned short* wbufend = wbuf + wordcount;#ifdef PREFER_C do { /* loop compiles to 7 assembler instructions */ *wbuf = SWAB16(ATA_DATA); } while (++wbuf < wbufend); /* tail loop is faster */#else /* I can bring it down to 9 instructions for 2 loops, and pipeline */ asm ( "mov #2, r0 \n" /* r0 = 2 */ /* correct for the "early increment" below */ "add #-4,%2 \n" /* wbuf -= 4; */ "bra enter_loop \n" /* goto enter_loop, after next instr. */ "add #-4,%3 \n" /* wbufend -= 4; */ "loop_w: \n" /* use read result and store, from last round */ "swap.b %0,%0 \n" /* endian_swap(tmp); */ "mov.w %0,@(r0,%2) \n" /* wbuf[r0] = tmp; */ "enter_loop: \n" "mov.w @%1,%0 \n" /* tmp = ATA_DATA; */ /* keep the pipeline busy with 2 independent instructions */ "add #0x04,%2 \n" /* wbuf += 4; */ "cmp/hs %3,%2 \n" /* if (wbuf < wbufend) */ "swap.b %0,%0 \n" /* endian_swap(tmp); */ "mov.w %0,@%2 \n" /* wbuf[0] = tmp; */ /* unrolled, do one more */ "mov.w @%1,%0 \n" /* tmp = ATA_DATA; */ /* use and store later, to keep pipeline busy */ "bf loop_w \n" /* goto loop_w; */ "swap.b %0,%0 \n" /* endian_swap(tmp); */ "mov.w %0,@(r0,%2) \n" /* wbuf[r0] = tmp; */ : /* outputs */ : /* inputs */ /* %0 */ "r"(tmp), /* %1 */ "r"(&ATA_DATA), /* %2 */ "r"(wbuf), /* %3 */ "r"(wbufend) : /* trashed */ "r0" );#endif }}int ata_read_sectors(unsigned long start, int incount, void* inbuf){ int ret = 0; int timeout; int count; void* buf; int spinup_start; mutex_lock(&ata_mtx); last_disk_activity = current_tick; spinup_start = current_tick; led(true); if ( sleeping ) { spinup = true; if (poweroff) { if (ata_power_on()) { mutex_unlock(&ata_mtx); led(false); return -1; } } else { if (perform_soft_reset()) { mutex_unlock(&ata_mtx); led(false); return -1; } } } timeout = current_tick + READ_TIMEOUT; ATA_SELECT = ata_device; if (!wait_for_rdy()) { mutex_unlock(&ata_mtx); led(false); return -2; } retry: buf = inbuf; count = incount; while (TIME_BEFORE(current_tick, timeout)) { ret = 0; last_disk_activity = current_tick; if ( count == 256 ) ATA_NSECTOR = 0; /* 0 means 256 sectors */ else ATA_NSECTOR = (unsigned char)count; ATA_SECTOR = start & 0xff; ATA_LCYL = (start >> 8) & 0xff; ATA_HCYL = (start >> 16) & 0xff; ATA_SELECT = ((start >> 24) & 0xf) | SELECT_LBA | ata_device; ATA_COMMAND = CMD_READ_MULTIPLE; /* wait at least 400ns between writing command and reading status */ asm volatile ("nop"); asm volatile ("nop"); asm volatile ("nop"); asm volatile ("nop"); asm volatile ("nop"); while (count) { int sectors; int wordcount; int status; if (!wait_for_start_of_transfer()) { ret = -4; goto retry; } if (spinup) { ata_spinup_time = current_tick - spinup_start; spinup = false; sleeping = false; poweroff = false; } /* read the status register exactly once per loop */ status = ATA_STATUS; /* if destination address is odd, use byte copying, otherwise use word copying */ if (count >= multisectors ) sectors = multisectors; else sectors = count; wordcount = sectors * SECTOR_SIZE / 2; copy_read_sectors(buf, wordcount); /* "Device errors encountered during READ MULTIPLE commands are posted at the beginning of the block or partial block transfer, but the DRQ bit is still set to one and the data transfer shall take place, including transfer of corrupted data, if any." -- ATA specification */ if ( status & (STATUS_BSY | STATUS_ERR | STATUS_DF) ) { ret = -5; goto retry; } buf += sectors * SECTOR_SIZE; /* Advance one chunk of sectors */ count -= sectors; last_disk_activity = current_tick; } if(!ret && !wait_for_end_of_transfer()) { ret = -3; goto retry; } break; } led(false); mutex_unlock(&ata_mtx); /* only flush if reading went ok */ if ( (ret == 0) && delayed_write ) ata_flush(); return ret;}int ata_write_sectors(unsigned long start, int count, void* buf){ int i; int ret = 0; int spinup_start; if (start == 0) panicf("Writing on sector 0\n"); mutex_lock(&ata_mtx); last_disk_activity = current_tick; spinup_start = current_tick; led(true); if ( sleeping ) { spinup = true; if (poweroff) { if (ata_power_on()) { mutex_unlock(&ata_mtx); led(false); return -1; } } else { if (perform_soft_reset()) { mutex_unlock(&ata_mtx); led(false); return -1; } } } ATA_SELECT = ata_device; if (!wait_for_rdy()) { mutex_unlock(&ata_mtx); led(false); return -2; } if ( count == 256 ) ATA_NSECTOR = 0; /* 0 means 256 sectors */ else ATA_NSECTOR = (unsigned char)count; ATA_SECTOR = start & 0xff; ATA_LCYL = (start >> 8) & 0xff; ATA_HCYL = (start >> 16) & 0xff; ATA_SELECT = ((start >> 24) & 0xf) | SELECT_LBA | ata_device; ATA_COMMAND = CMD_WRITE_SECTORS; for (i=0; i<count; i++) { int j; if (!wait_for_start_of_transfer()) { ret = -3; break; } if (spinup) { ata_spinup_time = current_tick - spinup_start; spinup = false; sleeping = false; poweroff = false; } for (j=0; j<SECTOR_SIZE/2; j++) { ATA_DATA = (unsigned short) (((unsigned char *)buf)[j*2+1] << 8) | ((unsigned char *)buf)[j*2]; }#ifdef USE_INTERRUPT /* reading the status register clears the interrupt */ j = ATA_STATUS;#endif buf += SECTOR_SIZE; last_disk_activity = current_tick; } if(!ret && !wait_for_end_of_transfer()) ret = -4; led(false); mutex_unlock(&ata_mtx); /* only flush if writing went ok */ if ( (ret == 0) && delayed_write ) ata_flush(); return ret;}extern void ata_delayed_write(unsigned long sector, void* buf){ memcpy(delayed_sector, buf, SECTOR_SIZE); delayed_sector_num = sector; delayed_write = true;}extern void ata_flush(void){ if ( delayed_write ) {
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -