ARM: PCI: Remove the IXP PCI driver
[oweals/u-boot.git] / doc / driver-model / UDM-block.txt
index 5d5c7760176742989858fdec6b1cbf2f0f461e79..0437d9bb9c0e5c9095cb871c9c4007729d9b585a 100644 (file)
@@ -93,7 +93,7 @@ I) Overview
       uchar ide_read_register(int dev, unsigned int port);
       void  ide_write_register(int dev, unsigned int port, unsigned char val);
       void  ide_read_data(int dev, ulong *sect_buf, int words);
-      void  ide_write_data(int dev, ulong *sect_buf, int words);
+      void  ide_write_data(int dev, const ulong *sect_buf, int words);
 
     The first two functions are called from ide_inb()/ide_outb(), and will
     default to direct memory access if CONFIG_IDE_AHB is not set, or
@@ -218,62 +218,61 @@ II) Approach
   in near future.
 
 
-
 III) Analysis of in-tree drivers
 --------------------------------
 
-  1) ahci.c
-  ---------
+  ahci.c
+  ------
     SCSI API, will be rewritten for a different API.
 
-  2) ata_piix.c
-  -------------
+  ata_piix.c
+  ----------
     SATA API, easy to port.
 
-  3) fsl_sata.c
-  -------------
+  fsl_sata.c
+  ----------
     SATA API, few CONFIG macros, easy to port.
 
-  4) ftide020.c
-  -------------
+  ftide020.c
+  ----------
     IDE API, defines CONFIG_IDE_AHB and ide_preinit hook functions.
 
-  5) mg_disk.c
-  ------------
+  mg_disk.c
+  ---------
     Single driver with mg_disk API, not much to change, easy to port.
 
-  6) mvsata_ide.c
-  ---------------
+  mvsata_ide.c
+  ------------
     IDE API, only defines ide_preinit hook function.
 
-  7) mxc_ata.c
-  ------------
+  mxc_ata.c
+  ---------
     IDE API, only defines ide_preinit hook function.
 
-  8) pata_bfin.c
-  --------------
+  pata_bfin.c
+  -----------
     SATA API, easy to port.
 
-  9) sata_dwc.c
-  -------------
+  sata_dwc.c
+  ----------
     SATA API, easy to port.
 
-  10) sata_sil3114.c
-  ------------------
+  sata_sil3114.c
+  --------------
     SATA API, easy to port.
 
-  11) sata_sil.c
-  --------------
+  sata_sil.c
+  ----------
     SATA API, easy to port.
 
-  12) sil680.c
-  ------------
+  sil680.c
+  --------
     IDE API, only defines ide_preinit hook function.
 
-  13) sym53c8xx.c
-  ---------------
+  sym53c8xx.c
+  -----------
     SCSI API, may be merged with code from cmd_scsi.
 
-  14) systemace.c
-  ---------------
+  systemace.c
+  -----------
     Single driver with systemace API, not much to change, easy to port.