cmd_sata.c
来自「U-boot源码 ARM7启动代码」· C语言 代码 · 共 713 行 · 第 1/2 页
C
713 行
/* * Copyright (C) Procsys. All rights reserved. * Author: Mushtaq Khan <mushtaq_k@procsys.com> * <mushtaqk_921@yahoo.co.in> * * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * with the reference to libata in kernel 2.4.32 * *//* * File contains SATA read-write and other utility functions. */#include <common.h>#include <asm/io.h>#include <pci.h>#include <command.h>#include <config.h>#include <ide.h>#include <ata.h>#ifdef CFG_SATA_SUPPORTED/*For debug prints set macro DEBUG_SATA to 1 */#define DEBUG_SATA 0/*Macro for SATA library specific declarations */#define SATA_DECL#include <sata.h>#undef SATA_DECLstatic u8 __inline__sata_inb (unsigned long ioaddr){ return inb (ioaddr);}static void __inline__sata_outb (unsigned char val, unsigned long ioaddr){ outb (val, ioaddr);}static voidoutput_data (struct sata_ioports *ioaddr, ulong * sect_buf, int words){ outsw (ioaddr->data_addr, sect_buf, words << 1);}static intinput_data (struct sata_ioports *ioaddr, ulong * sect_buf, int words){ insw (ioaddr->data_addr, sect_buf, words << 1); return 0;}static voidsata_cpy (unsigned char *dst, unsigned char *src, unsigned int len){ unsigned char *end, *last; last = dst; end = src + len - 1; /* reserve space for '\0' */ if (len < 2) goto OUT; /* skip leading white space */ while ((*src) && (src < end) && (*src == ' ')) ++src; /* copy string, omitting trailing white space */ while ((*src) && (src < end)) { *dst++ = *src; if (*src++ != ' ') last = dst; } OUT: *last = '\0';}intsata_bus_softreset (int num){ u8 dev = 0, status = 0, i; port[num].dev_mask = 0; for (i = 0; i < CFG_SATA_DEVS_PER_BUS; i++) { if (!(sata_devchk (&port[num].ioaddr, i))) { PRINTF ("dev_chk failed for dev#%d\n", i); } else { port[num].dev_mask |= (1 << i); PRINTF ("dev_chk passed for dev#%d\n", i); } } if (!(port[num].dev_mask)) { printf ("no devices on port%d\n", num); return 1; } dev_select (&port[num].ioaddr, dev); port[num].ctl_reg = 0x08; /*Default value of control reg */ sata_outb (port[num].ctl_reg, port[num].ioaddr.ctl_addr); udelay (10); sata_outb (port[num].ctl_reg | ATA_SRST, port[num].ioaddr.ctl_addr); udelay (10); sata_outb (port[num].ctl_reg, port[num].ioaddr.ctl_addr); /* spec mandates ">= 2ms" before checking status. * We wait 150ms, because that was the magic delay used for * ATAPI devices in Hale Landis's ATADRVR, for the period of time * between when the ATA command register is written, and then * status is checked. Because waiting for "a while" before * checking status is fine, post SRST, we perform this magic * delay here as well. */ msleep (150); status = sata_busy_wait (&port[num].ioaddr, ATA_BUSY, 300); while ((status & ATA_BUSY)) { msleep (100); status = sata_busy_wait (&port[num].ioaddr, ATA_BUSY, 3); } if (status & ATA_BUSY) printf ("ata%u is slow to respond,plz be patient\n", port); while ((status & ATA_BUSY)) { msleep (100); status = sata_chk_status (&port[num].ioaddr); } if (status & ATA_BUSY) { printf ("ata%u failed to respond : ", port); printf ("bus reset failed\n"); return 1; } return 0;}voidsata_identify (int num, int dev){ u8 cmd = 0, status = 0, devno = num * CFG_SATA_DEVS_PER_BUS + dev; u16 iobuf[ATA_SECT_SIZE]; u64 n_sectors = 0; u8 mask = 0; memset (iobuf, 0, sizeof (iobuf)); hd_driveid_t *iop = (hd_driveid_t *) iobuf; if (dev == 0) mask = 0x01; else mask = 0x02; if (!(port[num].dev_mask & mask)) { printf ("dev%d is not present on port#%d\n", dev, num); return; } printf ("port=%d dev=%d\n", num, dev); dev_select (&port[num].ioaddr, dev); status = 0; cmd = ATA_CMD_IDENT; /*Device Identify Command */ sata_outb (cmd, port[num].ioaddr.command_addr); sata_inb (port[num].ioaddr.altstatus_addr); udelay (10); status = sata_busy_wait (&port[num].ioaddr, ATA_BUSY, 1000); if (status & ATA_ERR) { printf ("\ndevice not responding\n"); port[num].dev_mask &= ~mask; return; } input_data (&port[num].ioaddr, (ulong *) iobuf, ATA_SECTORWORDS); PRINTF ("\nata%u: dev %u cfg 49:%04x 82:%04x 83:%04x 84:%04x85:%04x" "86:%04x" "87:%04x 88:%04x\n", num, dev, iobuf[49], iobuf[82], iobuf[83], iobuf[84], iobuf[85], iobuf[86], iobuf[87], iobuf[88]); /* we require LBA and DMA support (bits 8 & 9 of word 49) */ if (!ata_id_has_dma (iobuf) || !ata_id_has_lba (iobuf)) { PRINTF ("ata%u: no dma/lba\n", num); } ata_dump_id (iobuf); if (ata_id_has_lba48 (iobuf)) { n_sectors = ata_id_u64 (iobuf, 100); } else { n_sectors = ata_id_u32 (iobuf, 60); } PRINTF ("no. of sectors %u\n", ata_id_u64 (iobuf, 100)); PRINTF ("no. of sectors %u\n", ata_id_u32 (iobuf, 60)); if (n_sectors == 0) { port[num].dev_mask &= ~mask; return; } sata_cpy (sata_dev_desc[devno].revision, iop->fw_rev, sizeof (sata_dev_desc[devno].revision)); sata_cpy (sata_dev_desc[devno].vendor, iop->model, sizeof (sata_dev_desc[devno].vendor)); sata_cpy (sata_dev_desc[devno].product, iop->serial_no, sizeof (sata_dev_desc[devno].product)); strswab (sata_dev_desc[devno].revision); strswab (sata_dev_desc[devno].vendor); if ((iop->config & 0x0080) == 0x0080) { sata_dev_desc[devno].removable = 1; } else { sata_dev_desc[devno].removable = 0; } sata_dev_desc[devno].lba = iop->lba_capacity; PRINTF ("lba=0x%x", sata_dev_desc[devno].lba);#ifdef CONFIG_LBA48 if (iop->command_set_2 & 0x0400) { sata_dev_desc[devno].lba48 = 1; lba = (unsigned long long) iop->lba48_capacity[0] | ((unsigned long long) iop->lba48_capacity[1] << 16) | ((unsigned long long) iop->lba48_capacity[2] << 32) | ((unsigned long long) iop->lba48_capacity[3] << 48); } else { sata_dev_desc[devno].lba48 = 0; }#endif /* assuming HD */ sata_dev_desc[devno].type = DEV_TYPE_HARDDISK; sata_dev_desc[devno].blksz = ATA_BLOCKSIZE; sata_dev_desc[devno].lun = 0; /* just to fill something in... */}voidset_Feature_cmd (int num, int dev){ u8 mask = 0x00, status = 0; if (dev == 0) mask = 0x01; else mask = 0x02; if (!(port[num].dev_mask & mask)) { PRINTF ("dev%d is not present on port#%d\n", dev, num); return; } dev_select (&port[num].ioaddr, dev); sata_outb (SETFEATURES_XFER, port[num].ioaddr.feature_addr); sata_outb (XFER_PIO_4, port[num].ioaddr.nsect_addr); sata_outb (0, port[num].ioaddr.lbal_addr); sata_outb (0, port[num].ioaddr.lbam_addr); sata_outb (0, port[num].ioaddr.lbah_addr); sata_outb (ATA_DEVICE_OBS, port[num].ioaddr.device_addr); sata_outb (ATA_CMD_SETF, port[num].ioaddr.command_addr); udelay (50); msleep (150); status = sata_busy_wait (&port[num].ioaddr, ATA_BUSY, 5000); if ((status & (ATA_STAT_BUSY | ATA_STAT_ERR))) { printf ("Error : status 0x%02x\n", status); port[num].dev_mask &= ~mask; }}voidsata_port (struct sata_ioports *ioport){ ioport->data_addr = ioport->cmd_addr + ATA_REG_DATA; ioport->error_addr = ioport->cmd_addr + ATA_REG_ERR; ioport->feature_addr = ioport->cmd_addr + ATA_REG_FEATURE; ioport->nsect_addr = ioport->cmd_addr + ATA_REG_NSECT; ioport->lbal_addr = ioport->cmd_addr + ATA_REG_LBAL; ioport->lbam_addr = ioport->cmd_addr + ATA_REG_LBAM; ioport->lbah_addr = ioport->cmd_addr + ATA_REG_LBAH; ioport->device_addr = ioport->cmd_addr + ATA_REG_DEVICE; ioport->status_addr = ioport->cmd_addr + ATA_REG_STATUS; ioport->command_addr = ioport->cmd_addr + ATA_REG_CMD;}intsata_devchk (struct sata_ioports *ioaddr, int dev){ u8 nsect, lbal; dev_select (ioaddr, dev); sata_outb (0x55, ioaddr->nsect_addr); sata_outb (0xaa, ioaddr->lbal_addr); sata_outb (0xaa, ioaddr->nsect_addr); sata_outb (0x55, ioaddr->lbal_addr); sata_outb (0x55, ioaddr->nsect_addr); sata_outb (0xaa, ioaddr->lbal_addr); nsect = sata_inb (ioaddr->nsect_addr); lbal = sata_inb (ioaddr->lbal_addr); if ((nsect == 0x55) && (lbal == 0xaa)) return 1; /* we found a device */ else return 0; /* nothing found */}voiddev_select (struct sata_ioports *ioaddr, int dev){ u8 tmp = 0; if (dev == 0) tmp = ATA_DEVICE_OBS; else tmp = ATA_DEVICE_OBS | ATA_DEV1; sata_outb (tmp, ioaddr->device_addr); sata_inb (ioaddr->altstatus_addr); udelay (5);}u8sata_busy_wait (struct sata_ioports *ioaddr, int bits, unsigned int max){ u8 status; do { udelay (1000); status = sata_chk_status (ioaddr); max--; } while ((status & bits) && (max > 0));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?