1. c79637b Try to check for IDE drive 0 responding to drive 1 commands. by Kevin O'Connor · 15 years ago
  2. c946eca Add delay when changing drive on ide. by Kevin O'Connor · 15 years ago
  3. b30c400 Don't send ATA error reports when cdrom not ready. by Kevin O'Connor · 15 years ago
  4. 425f212 Add support for waiting for drive startup during ATA detect. by Kevin O'Connor · 15 years ago
  5. a9caeae Minor - reduce forced inlining directives in src/ata.c. by Kevin O'Connor · 15 years ago
  6. 32945af Don't 'autodetect' ATA PIO32 mode - use compile def instead. by Kevin O'Connor · 15 years ago
  7. 6a46a42 Fix typo causing atapi drive type misreport. by Kevin O'Connor · 15 years ago
  8. 94fd47e Minor - change checksum functions to take a (void *). by Kevin O'Connor · 15 years ago
  9. f358759 Clock cleanups. by Kevin O'Connor · 15 years ago
  10. 160f71c Add common ata identify sequence; improve debugging. by Kevin O'Connor · 15 years ago
  11. ab51560 Minor - ata identify commands should use a u16 buffer (not u8). by Kevin O'Connor · 15 years ago
  12. 89f6763 Don't overflow ATA.channels array on machines with > 4 controllers. by Kevin O'Connor · 15 years ago
  13. 0a92412 Add support for selecting harddrive order in boot menu. by Kevin O'Connor · 15 years ago
  14. 5eac1dd Suppress initialized variable compile warning in ata.c. by Kevin O'Connor · 15 years ago
  15. 580e332 Cleanup ATA code; get SATA drives working on real hardware. by Kevin O'Connor · 15 years ago
  16. ef3d882 Make sure to clear global variables before use. by Kevin O'Connor · 15 years ago
  17. 35ae726 Rename MAKE_FARPTR (and similar) to MAKE_FLATPTR. by Kevin O'Connor · 16 years ago
  18. b1b7c2a Change license from GPLv3 to LGPLv3. by Kevin O'Connor · 16 years ago
  19. 4524bf7 Use new 'struct disk_op_s' to issue ata requests. by Kevin O'Connor · 16 years ago
  20. 4a16ef6 Return CDEMU parameters to ebda segment (instead of using globals). by Kevin O'Connor · 16 years ago
  21. 92f95b0 Add more linker protections around variables accessed from 16bit mode. by Kevin O'Connor · 16 years ago
  22. 609da23 Move most of ATA and CDEMU from ebda to global variables. by Kevin O'Connor · 16 years ago
  23. 4d7c37e Support a relocatable ebda segment. by Kevin O'Connor · 16 years ago
  24. 4e6c970 Implement time based checks even when looping on an ioport. by Kevin O'Connor · 16 years ago
  25. 4132e02 Don't allow start_bdf with new auto max bus detection code. by Kevin O'Connor · 16 years ago
  26. 53ab0b6 Only support IDE devices with pci class of PCI_CLASS_STORAGE_IDE. by Kevin O'Connor · 16 years ago
  27. bc2aecd Implement tsc based delay timers, and use them throughout code. by Kevin O'Connor · 16 years ago
  28. d21c089 Enable a default hw irq handler. by Kevin O'Connor · 16 years ago
  29. 8820a10 Show PCI info when reporting ATA controllers. by Kevin O'Connor · 16 years ago
  30. be19cdc Overhaul PCI config functions. by Kevin O'Connor · 16 years ago
  31. 2ed2f58 Synch pci ids and registers with Linux kernel source. by Kevin O'Connor · 16 years ago
  32. 970a032 Misc minor cleanups. by Kevin O'Connor · 16 years ago
  33. 53236cc Use PCI bus scan to find all ATA controllers. Several IDE fixes. by Kevin O'Connor · 16 years ago
  34. 9521e26 Extract 'struct bregs' out of biosvar.h; clean up header includes. by Kevin O'Connor · 16 years ago
  35. a05223c Improve some debugging output. by Kevin O'Connor · 16 years ago
  36. f54c150 Cleanup handling of interrupt controller (PIC). by Kevin O'Connor · 16 years ago
  37. 2e3eeeb Wait for RDY bit when resetting ata hard drives. by Kevin O'Connor · 16 years ago
  38. 35192dd Move debugging messages to appropriate functions. by Kevin O'Connor · 16 years ago
  39. ef2822a Do proper delays when switching devices. by Kevin O'Connor · 16 years ago
  40. 3e1b649 Fix bug causing ata_reset to not wait for BSY to clear. by Kevin O'Connor · 16 years ago
  41. ac8df8c Improve control of debug messages. by Kevin O'Connor · 16 years ago
  42. f64f0db Initial support for coreboot. by Kevin O'Connor · 16 years ago
  43. c143761 Cleanup ata hard drive detection. by Kevin O'Connor · 16 years ago
  44. 1bb3b5c Add full support for drives with more that 2<<32 sectors. by Kevin O'Connor · 16 years ago
  45. ee55c76 Reduce ide stack usage by reorganizing ata calls. by Kevin O'Connor · 16 years ago
  46. 117fc21 Compile fixes for gcc 4.3. by Kevin O'Connor · 16 years ago
  47. 9f0d94d Move hard drive init from post.c to ata.c. by Kevin O'Connor · 16 years ago
  48. 74f9c08 Use __always_inline to force inlining. by Kevin O'Connor · 16 years ago
  49. dfabfe0 Fix bug causing write corruption on large disks. by Kevin O'Connor · 16 years ago rel-0.2.1
  50. a6b9f71 Refactor ata code. by Kevin O'Connor · 16 years ago
  51. f888f8c Move internal defs from ata.h to ata.c. by Kevin O'Connor · 16 years ago
  52. aa2590c Cleanup cdrom emulation. by Kevin O'Connor · 16 years ago
  53. 070231b Use "FARPTR" consistently in macros. by Kevin O'Connor · 16 years ago
  54. aafa657 Split up ata_detect() function. by Kevin O'Connor · 16 years ago
  55. 049d5a2 Use LBA disk access methods always; don't use CHS methods. by Kevin O'Connor · 16 years ago
  56. 74799df Move irq_enable/disable out of ata.c by Kevin O'Connor · 16 years ago
  57. efde609 Use 32bit absolute pointers for buffers in ATA code. by Kevin O'Connor · 16 years ago
  58. 1fcf144 Reorganize ata code; reduce stack usage. by Kevin O'Connor · 16 years ago
  59. 3a04963 Unify ata_cmd_data_in/out functions. by Kevin O'Connor · 16 years ago
  60. a20c4a5 Fix bug in cdrom reads causing incorrect return status. by Kevin O'Connor · 16 years ago
  61. 843a62c Optimize insb/outsb/insw/etc. functions. by Kevin O'Connor · 16 years ago
  62. 5b15fbf Fix bug in ata.c by Kevin O'Connor · 16 years ago
  63. 127cbd7 Clean up disk debugging messages. by Kevin O'Connor · 16 years ago
  64. 180a959 Get CDROM emulation working. by Kevin O'Connor · 16 years ago
  65. 96aa5e9 Don't pass segment to ata_cmd_packet. by Kevin O'Connor · 16 years ago
  66. c65a380 Bug fixes; get mouse working. by Kevin O'Connor · 16 years ago
  67. c09492e Add copyrights to ata.c/h files. by Kevin O'Connor · 16 years ago
  68. 15aee2e Make disk access work. by Kevin O'Connor · 16 years ago
  69. 3491e8b Initial support for ATA disks. by Kevin O'Connor · 16 years ago