ide-proc.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:28k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/ide/ide-proc.c Version 1.03 January  2, 1998
  3.  *
  4.  *  Copyright (C) 1997-1998 Mark Lord
  5.  */
  6. /*
  7.  * This is the /proc/ide/ filesystem implementation.
  8.  *
  9.  * The major reason this exists is to provide sufficient access
  10.  * to driver and config data, such that user-mode programs can
  11.  * be developed to handle chipset tuning for most PCI interfaces.
  12.  * This should provide better utilities, and less kernel bloat.
  13.  *
  14.  * The entire pci config space for a PCI interface chipset can be
  15.  * retrieved by just reading it.  e.g.    "cat /proc/ide3/config"
  16.  *
  17.  * To modify registers *safely*, do something like:
  18.  *   echo "P40:88" >/proc/ide/ide3/config
  19.  * That expression writes 0x88 to pci config register 0x40
  20.  * on the chip which controls ide3.  Multiple tuples can be issued,
  21.  * and the writes will be completed as an atomic set:
  22.  *   echo "P40:88 P41:35 P42:00 P43:00" >/proc/ide/ide3/config
  23.  *
  24.  * All numbers must be specified using pairs of ascii hex digits.
  25.  * It is important to note that these writes will be performed
  26.  * after waiting for the IDE controller (both interfaces)
  27.  * to be completely idle, to ensure no corruption of I/O in progress.
  28.  *
  29.  * Non-PCI registers can also be written, using "R" in place of "P"
  30.  * in the above examples.  The size of the port transfer is determined
  31.  * by the number of pairs of hex digits given for the data.  If a two
  32.  * digit value is given, the write will be a byte operation; if four
  33.  * digits are used, the write will be performed as a 16-bit operation;
  34.  * and if eight digits are specified, a 32-bit "dword" write will be
  35.  * performed.  Odd numbers of digits are not permitted.
  36.  *
  37.  * If there is an error *anywhere* in the string of registers/data
  38.  * then *none* of the writes will be performed.
  39.  *
  40.  * Drive/Driver settings can be retrieved by reading the drive's
  41.  * "settings" files.  e.g.    "cat /proc/ide0/hda/settings"
  42.  * To write a new value "val" into a specific setting "name", use:
  43.  *   echo "name:val" >/proc/ide/ide0/hda/settings
  44.  *
  45.  * Also useful, "cat /proc/ide0/hda/[identify, smart_values,
  46.  * smart_thresholds, capabilities]" will issue an IDENTIFY /
  47.  * PACKET_IDENTIFY / SMART_READ_VALUES / SMART_READ_THRESHOLDS /
  48.  * SENSE CAPABILITIES command to /dev/hda, and then dump out the
  49.  * returned data as 256 16-bit words.  The "hdparm" utility will
  50.  * be updated someday soon to use this mechanism.
  51.  *
  52.  * Feel free to develop and distribute fancy GUI configuration
  53.  * utilities for your favorite PCI chipsets.  I'll be working on
  54.  * one for the Promise 20246 someday soon.  -ml
  55.  *
  56.  */
  57. #include <linux/config.h>
  58. #include <asm/uaccess.h>
  59. #include <linux/errno.h>
  60. #include <linux/sched.h>
  61. #include <linux/proc_fs.h>
  62. #include <linux/stat.h>
  63. #include <linux/mm.h>
  64. #include <linux/pci.h>
  65. #include <linux/ctype.h>
  66. #include <linux/hdreg.h>
  67. #include <linux/ide.h>
  68. #include <asm/io.h>
  69. #ifndef MIN
  70. #define MIN(a,b) (((a) < (b)) ? (a) : (b))
  71. #endif
  72. #ifdef CONFIG_BLK_DEV_AEC62XX
  73. extern byte aec62xx_proc;
  74. int (*aec62xx_display_info)(char *, char **, off_t, int) = NULL;
  75. #endif /* CONFIG_BLK_DEV_AEC62XX */
  76. #ifdef CONFIG_BLK_DEV_ALI15X3
  77. extern byte ali_proc;
  78. int (*ali_display_info)(char *, char **, off_t, int) = NULL;
  79. #endif /* CONFIG_BLK_DEV_ALI15X3 */
  80. #ifdef CONFIG_BLK_DEV_AMD74XX
  81. extern byte amd74xx_proc;
  82. int (*amd74xx_display_info)(char *, char **, off_t, int) = NULL;
  83. #endif /* CONFIG_BLK_DEV_AMD74XX */
  84. #ifdef CONFIG_BLK_DEV_CMD64X
  85. extern byte cmd64x_proc;
  86. int (*cmd64x_display_info)(char *, char **, off_t, int) = NULL;
  87. #endif /* CONFIG_BLK_DEV_CMD64X */
  88. #ifdef CONFIG_BLK_DEV_CS5530
  89. extern byte cs5530_proc;
  90. int (*cs5530_display_info)(char *, char **, off_t, int) = NULL;
  91. #endif /* CONFIG_BLK_DEV_CS5530 */
  92. #ifdef CONFIG_BLK_DEV_HPT34X
  93. extern byte hpt34x_proc;
  94. int (*hpt34x_display_info)(char *, char **, off_t, int) = NULL;
  95. #endif /* CONFIG_BLK_DEV_HPT34X */
  96. #ifdef CONFIG_BLK_DEV_HPT366
  97. extern byte hpt366_proc;
  98. int (*hpt366_display_info)(char *, char **, off_t, int) = NULL;
  99. #endif /* CONFIG_BLK_DEV_HPT366 */
  100. #ifdef CONFIG_BLK_DEV_PDC202XX
  101. extern byte pdc202xx_proc;
  102. int (*pdc202xx_display_info)(char *, char **, off_t, int) = NULL;
  103. #endif /* CONFIG_BLK_DEV_PDC202XX */
  104. #ifdef CONFIG_BLK_DEV_PIIX
  105. extern byte piix_proc;
  106. int (*piix_display_info)(char *, char **, off_t, int) = NULL;
  107. #endif /* CONFIG_BLK_DEV_PIIX */
  108. #ifdef CONFIG_BLK_DEV_SVWKS
  109. extern byte svwks_proc;
  110. int (*svwks_display_info)(char *, char **, off_t, int) = NULL;
  111. #endif /* CONFIG_BLK_DEV_SVWKS */
  112. #ifdef CONFIG_BLK_DEV_SIS5513
  113. extern byte sis_proc;
  114. int (*sis_display_info)(char *, char **, off_t, int) = NULL;
  115. #endif /* CONFIG_BLK_DEV_SIS5513 */
  116. #ifdef CONFIG_BLK_DEV_SLC90E66
  117. extern byte slc90e66_proc;
  118. int (*slc90e66_display_info)(char *, char **, off_t, int) = NULL;
  119. #endif /* CONFIG_BLK_DEV_SLC90E66 */
  120. #ifdef CONFIG_BLK_DEV_VIA82CXXX
  121. extern byte via_proc;
  122. int (*via_display_info)(char *, char **, off_t, int) = NULL;
  123. #endif /* CONFIG_BLK_DEV_VIA82CXXX */
  124. static int ide_getxdigit(char c)
  125. {
  126. int digit;
  127. if (isdigit(c))
  128. digit = c - '0';
  129. else if (isxdigit(c))
  130. digit = tolower(c) - 'a' + 10;
  131. else
  132. digit = -1;
  133. return digit;
  134. }
  135. static int xx_xx_parse_error (const char *data, unsigned long len, const char *msg)
  136. {
  137. char errbuf[16];
  138. int i;
  139. if (len >= sizeof(errbuf))
  140. len = sizeof(errbuf) - 1;
  141. for (i = 0; i < len; ++i) {
  142. char c = data[i];
  143. if (!c || c == 'n')
  144. c = '';
  145. else if (iscntrl(c))
  146. c = '?';
  147. errbuf[i] = c;
  148. }
  149. errbuf[i] = '';
  150. printk("proc_ide: error: %s: '%s'n", msg, errbuf);
  151. return -EINVAL;
  152. }
  153. static struct proc_dir_entry * proc_ide_root = NULL;
  154. static int proc_ide_write_config
  155. (struct file *file, const char *buffer, unsigned long count, void *data)
  156. {
  157. ide_hwif_t *hwif = (ide_hwif_t *)data;
  158. int for_real = 0;
  159. unsigned long startn = 0, n, flags;
  160. const char *start = NULL, *msg = NULL;
  161. if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
  162. return -EACCES;
  163. /*
  164.  * Skip over leading whitespace
  165.  */
  166. while (count && isspace(*buffer)) {
  167. --count;
  168. ++buffer;
  169. }
  170. /*
  171.  * Do one full pass to verify all parameters,
  172.  * then do another to actually write the regs.
  173.  */
  174. save_flags(flags); /* all CPUs */
  175. do {
  176. const char *p;
  177. if (for_real) {
  178. unsigned long timeout = jiffies + (3 * HZ);
  179. ide_hwgroup_t *mygroup = (ide_hwgroup_t *)(hwif->hwgroup);
  180. ide_hwgroup_t *mategroup = NULL;
  181. if (hwif->mate && hwif->mate->hwgroup)
  182. mategroup = (ide_hwgroup_t *)(hwif->mate->hwgroup);
  183. cli(); /* all CPUs; ensure all writes are done together */
  184. while (mygroup->busy || (mategroup && mategroup->busy)) {
  185. sti(); /* all CPUs */
  186. if (0 < (signed long)(jiffies - timeout)) {
  187. printk("/proc/ide/%s/config: channel(s) busy, cannot writen", hwif->name);
  188. restore_flags(flags); /* all CPUs */
  189. return -EBUSY;
  190. }
  191. cli(); /* all CPUs */
  192. }
  193. }
  194. p = buffer;
  195. n = count;
  196. while (n > 0) {
  197. int d, digits;
  198. unsigned int reg = 0, val = 0, is_pci;
  199. start = p;
  200. startn = n--;
  201. switch (*p++) {
  202. case 'R': is_pci = 0;
  203. break;
  204. case 'P': is_pci = 1;
  205. #ifdef CONFIG_BLK_DEV_IDEPCI
  206. if (hwif->pci_dev && !IDE_PCI_DEVID_EQ(hwif->pci_devid, IDE_PCI_DEVID_NULL))
  207. break;
  208. #endif /* CONFIG_BLK_DEV_IDEPCI */
  209. msg = "not a PCI device";
  210. goto parse_error;
  211. default: msg = "expected 'R' or 'P'";
  212. goto parse_error;
  213. }
  214. digits = 0;
  215. while (n > 0 && (d = ide_getxdigit(*p)) >= 0) {
  216. reg = (reg << 4) | d;
  217. --n;
  218. ++p;
  219. ++digits;
  220. }
  221. if (!digits || (digits > 4) || (is_pci && reg > 0xff)) {
  222. msg = "bad/missing register number";
  223. goto parse_error;
  224. }
  225. if (n-- == 0 || *p++ != ':') {
  226. msg = "missing ':'";
  227. goto parse_error;
  228. }
  229. digits = 0;
  230. while (n > 0 && (d = ide_getxdigit(*p)) >= 0) {
  231. val = (val << 4) | d;
  232. --n;
  233. ++p;
  234. ++digits;
  235. }
  236. if (digits != 2 && digits != 4 && digits != 8) {
  237. msg = "bad data, 2/4/8 digits required";
  238. goto parse_error;
  239. }
  240. if (n > 0 && !isspace(*p)) {
  241. msg = "expected whitespace after data";
  242. goto parse_error;
  243. }
  244. while (n > 0 && isspace(*p)) {
  245. --n;
  246. ++p;
  247. }
  248. #ifdef CONFIG_BLK_DEV_IDEPCI
  249. if (is_pci && (reg & ((digits >> 1) - 1))) {
  250. msg = "misaligned access";
  251. goto parse_error;
  252. }
  253. #endif /* CONFIG_BLK_DEV_IDEPCI */
  254. if (for_real) {
  255. #if 0
  256. printk("proc_ide_write_config: type=%c, reg=0x%x, val=0x%x, digits=%dn", is_pci ? "PCI" : "non-PCI", reg, val, digits);
  257. #endif
  258. if (is_pci) {
  259. #ifdef CONFIG_BLK_DEV_IDEPCI
  260. int rc = 0;
  261. struct pci_dev *dev = hwif->pci_dev;
  262. switch (digits) {
  263. case 2: msg = "byte";
  264. rc = pci_write_config_byte(dev, reg, val);
  265. break;
  266. case 4: msg = "word";
  267. rc = pci_write_config_word(dev, reg, val);
  268. break;
  269. case 8: msg = "dword";
  270. rc = pci_write_config_dword(dev, reg, val);
  271. break;
  272. }
  273. if (rc) {
  274. restore_flags(flags); /* all CPUs */
  275. printk("proc_ide_write_config: error writing %s at bus %02x dev %02x reg 0x%x value 0x%xn",
  276. msg, dev->bus->number, dev->devfn, reg, val);
  277. printk("proc_ide_write_config: error %dn", rc);
  278. return -EIO;
  279. }
  280. #endif /* CONFIG_BLK_DEV_IDEPCI */
  281. } else { /* not pci */
  282. #if !defined(__mc68000__) && !defined(CONFIG_APUS)
  283. /*
  284.  * Geert Uytterhoeven
  285.  *
  286.  * unless you can explain me what it really does.
  287.  * On m68k, we don't have outw() and outl() yet,
  288.  * and I need a good reason to implement it.
  289.  * 
  290.  * BTW, IMHO the main remaining portability problem with the IDE driver 
  291.  * is that it mixes IO (ioport) and MMIO (iomem) access on different platforms.
  292.  * 
  293.  * I think all accesses should be done using
  294.  * 
  295.  *     ide_in[bwl](ide_device_instance, offset)
  296.  *     ide_out[bwl](ide_device_instance, value, offset)
  297.  * 
  298.  * so the architecture specific code can #define ide_{in,out}[bwl] to the
  299.  * appropriate function.
  300.  * 
  301.  */
  302. switch (digits) {
  303. case 2: outb(val, reg);
  304. break;
  305. case 4: outw(val, reg);
  306. break;
  307. case 8: outl(val, reg);
  308. break;
  309. }
  310. #endif /* !__mc68000__ && !CONFIG_APUS */
  311. }
  312. }
  313. }
  314. } while (!for_real++);
  315. restore_flags(flags); /* all CPUs */
  316. return count;
  317. parse_error:
  318. restore_flags(flags); /* all CPUs */
  319. printk("parse errorn");
  320. return xx_xx_parse_error(start, startn, msg);
  321. }
  322. static int proc_ide_read_config
  323. (char *page, char **start, off_t off, int count, int *eof, void *data)
  324. {
  325. char *out = page;
  326. int len;
  327. #ifdef CONFIG_BLK_DEV_IDEPCI
  328. ide_hwif_t *hwif = (ide_hwif_t *)data;
  329. struct pci_dev *dev = hwif->pci_dev;
  330. if (!IDE_PCI_DEVID_EQ(hwif->pci_devid, IDE_PCI_DEVID_NULL) && dev && dev->bus) {
  331. int reg = 0;
  332. out += sprintf(out, "pci bus %02x device %02x vid %04x did %04x channel %dn",
  333. dev->bus->number, dev->devfn, hwif->pci_devid.vid, hwif->pci_devid.did, hwif->channel);
  334. do {
  335. byte val;
  336. int rc = pci_read_config_byte(dev, reg, &val);
  337. if (rc) {
  338. printk("proc_ide_read_config: error %d reading bus %02x dev %02x reg 0x%02xn",
  339. rc, dev->bus->number, dev->devfn, reg);
  340. out += sprintf(out, "??%c", (++reg & 0xf) ? ' ' : 'n');
  341. } else
  342. out += sprintf(out, "%02x%c", val, (++reg & 0xf) ? ' ' : 'n');
  343. } while (reg < 0x100);
  344. } else
  345. #endif /* CONFIG_BLK_DEV_IDEPCI */
  346. out += sprintf(out, "(none)n");
  347. len = out - page;
  348. PROC_IDE_READ_RETURN(page,start,off,count,eof,len);
  349. }
  350. static int ide_getdigit(char c)
  351. {
  352. int digit;
  353. if (isdigit(c))
  354. digit = c - '0';
  355. else
  356. digit = -1;
  357. return digit;
  358. }
  359. static int proc_ide_read_drivers
  360. (char *page, char **start, off_t off, int count, int *eof, void *data)
  361. {
  362. char *out = page;
  363. int len;
  364. ide_module_t *p = ide_modules;
  365. ide_driver_t *driver;
  366. while (p) {
  367. driver = (ide_driver_t *) p->info;
  368. if (driver)
  369. out += sprintf(out, "%s version %sn", driver->name, driver->version);
  370. p = p->next;
  371. }
  372. len = out - page;
  373. PROC_IDE_READ_RETURN(page,start,off,count,eof,len);
  374. }
  375. static int proc_ide_read_imodel
  376. (char *page, char **start, off_t off, int count, int *eof, void *data)
  377. {
  378. ide_hwif_t *hwif = (ide_hwif_t *) data;
  379. int len;
  380. const char *name;
  381. switch (hwif->chipset) {
  382. case ide_unknown: name = "(none)"; break;
  383. case ide_generic: name = "generic"; break;
  384. case ide_pci: name = "pci"; break;
  385. case ide_cmd640: name = "cmd640"; break;
  386. case ide_dtc2278: name = "dtc2278"; break;
  387. case ide_ali14xx: name = "ali14xx"; break;
  388. case ide_qd65xx: name = "qd65xx"; break;
  389. case ide_umc8672: name = "umc8672"; break;
  390. case ide_ht6560b: name = "ht6560b"; break;
  391. case ide_pdc4030: name = "pdc4030"; break;
  392. case ide_rz1000: name = "rz1000"; break;
  393. case ide_trm290: name = "trm290"; break;
  394. case ide_cmd646: name = "cmd646"; break;
  395. case ide_cy82c693: name = "cy82c693"; break;
  396. case ide_4drives: name = "4drives"; break;
  397. case ide_pmac: name = "mac-io"; break;
  398. default: name = "(unknown)"; break;
  399. }
  400. len = sprintf(page, "%sn", name);
  401. PROC_IDE_READ_RETURN(page,start,off,count,eof,len);
  402. }
  403. static int proc_ide_read_mate
  404. (char *page, char **start, off_t off, int count, int *eof, void *data)
  405. {
  406. ide_hwif_t *hwif = (ide_hwif_t *) data;
  407. int len;
  408. if (hwif && hwif->mate && hwif->mate->present)
  409. len = sprintf(page, "%sn", hwif->mate->name);
  410. else
  411. len = sprintf(page, "(none)n");
  412. PROC_IDE_READ_RETURN(page,start,off,count,eof,len);
  413. }
  414. static int proc_ide_read_channel
  415. (char *page, char **start, off_t off, int count, int *eof, void *data)
  416. {
  417. ide_hwif_t *hwif = (ide_hwif_t *) data;
  418. int len;
  419. page[0] = hwif->channel ? '1' : '0';
  420. page[1] = 'n';
  421. len = 2;
  422. PROC_IDE_READ_RETURN(page,start,off,count,eof,len);
  423. }
  424. static int proc_ide_get_identify(ide_drive_t *drive, byte *buf)
  425. {
  426. struct hd_drive_task_hdr taskfile;
  427. struct hd_drive_hob_hdr hobfile;
  428. memset(&taskfile, 0, sizeof(struct hd_drive_task_hdr));
  429. memset(&hobfile, 0, sizeof(struct hd_drive_hob_hdr));
  430. taskfile.sector_count = 0x01;
  431. taskfile.command = (drive->media == ide_disk) ? WIN_IDENTIFY : WIN_PIDENTIFY ;
  432. return ide_wait_taskfile(drive, &taskfile, &hobfile, buf);
  433. }
  434. static int proc_ide_read_identify
  435. (char *page, char **start, off_t off, int count, int *eof, void *data)
  436. {
  437. ide_drive_t *drive = (ide_drive_t *)data;
  438. int len = 0, i = 0;
  439. if (drive && !proc_ide_get_identify(drive, page)) {
  440. unsigned short *val = (unsigned short *) page;
  441. char *out = ((char *)val) + (SECTOR_WORDS * 4);
  442. page = out;
  443. do {
  444. out += sprintf(out, "%04x%c", le16_to_cpu(*val), (++i & 7) ? ' ' : 'n');
  445. val += 1;
  446. } while (i < (SECTOR_WORDS * 2));
  447. len = out - page;
  448. }
  449. else
  450. len = sprintf(page, "n");
  451. PROC_IDE_READ_RETURN(page,start,off,count,eof,len);
  452. }
  453. static int proc_ide_read_settings
  454. (char *page, char **start, off_t off, int count, int *eof, void *data)
  455. {
  456. ide_drive_t *drive = (ide_drive_t *) data;
  457. ide_settings_t *setting = (ide_settings_t *) drive->settings;
  458. char *out = page;
  459. int len, rc, mul_factor, div_factor;
  460. out += sprintf(out, "nametttvaluettminttmaxttmoden");
  461. out += sprintf(out, "----ttt-----tt---tt---tt----n");
  462. while(setting) {
  463. mul_factor = setting->mul_factor;
  464. div_factor = setting->div_factor;
  465. out += sprintf(out, "%-24s", setting->name);
  466. if ((rc = ide_read_setting(drive, setting)) >= 0)
  467. out += sprintf(out, "%-16d", rc * mul_factor / div_factor);
  468. else
  469. out += sprintf(out, "%-16s", "write-only");
  470. out += sprintf(out, "%-16d%-16d", (setting->min * mul_factor + div_factor - 1) / div_factor, setting->max * mul_factor / div_factor);
  471. if (setting->rw & SETTING_READ)
  472. out += sprintf(out, "r");
  473. if (setting->rw & SETTING_WRITE)
  474. out += sprintf(out, "w");
  475. out += sprintf(out, "n");
  476. setting = setting->next;
  477. }
  478. len = out - page;
  479. PROC_IDE_READ_RETURN(page,start,off,count,eof,len);
  480. }
  481. #define MAX_LEN 30
  482. static int proc_ide_write_settings
  483. (struct file *file, const char *buffer, unsigned long count, void *data)
  484. {
  485. ide_drive_t *drive = (ide_drive_t *) data;
  486. char name[MAX_LEN + 1];
  487. int for_real = 0, len;
  488. unsigned long n;
  489. const char *start = NULL;
  490. ide_settings_t *setting;
  491. if (!capable(CAP_SYS_ADMIN))
  492. return -EACCES;
  493. /*
  494.  * Skip over leading whitespace
  495.  */
  496. while (count && isspace(*buffer)) {
  497. --count;
  498. ++buffer;
  499. }
  500. /*
  501.  * Do one full pass to verify all parameters,
  502.  * then do another to actually write the new settings.
  503.  */
  504. do {
  505. const char *p;
  506. p = buffer;
  507. n = count;
  508. while (n > 0) {
  509. int d, digits;
  510. unsigned int val = 0;
  511. start = p;
  512. while (n > 0 && *p != ':') {
  513. --n;
  514. p++;
  515. }
  516. if (*p != ':')
  517. goto parse_error;
  518. len = IDE_MIN(p - start, MAX_LEN);
  519. strncpy(name, start, IDE_MIN(len, MAX_LEN));
  520. name[len] = 0;
  521. if (n > 0) {
  522. --n;
  523. p++;
  524. } else
  525. goto parse_error;
  526. digits = 0;
  527. while (n > 0 && (d = ide_getdigit(*p)) >= 0) {
  528. val = (val * 10) + d;
  529. --n;
  530. ++p;
  531. ++digits;
  532. }
  533. if (n > 0 && !isspace(*p))
  534. goto parse_error;
  535. while (n > 0 && isspace(*p)) {
  536. --n;
  537. ++p;
  538. }
  539. setting = ide_find_setting_by_name(drive, name);
  540. if (!setting)
  541. goto parse_error;
  542. if (for_real)
  543. ide_write_setting(drive, setting, val * setting->div_factor / setting->mul_factor);
  544. }
  545. } while (!for_real++);
  546. return count;
  547. parse_error:
  548. printk("proc_ide_write_settings(): parse errorn");
  549. return -EINVAL;
  550. }
  551. int proc_ide_read_capacity
  552. (char *page, char **start, off_t off, int count, int *eof, void *data)
  553. {
  554. ide_drive_t *drive = (ide_drive_t *) data;
  555. ide_driver_t    *driver = (ide_driver_t *) drive->driver;
  556. int len;
  557. if (!driver)
  558. len = sprintf(page, "(none)n");
  559.         else
  560. len = sprintf(page,"%llun",
  561.       (unsigned long long) ((ide_driver_t *)drive->driver)->capacity(drive));
  562. PROC_IDE_READ_RETURN(page,start,off,count,eof,len);
  563. }
  564. int proc_ide_read_geometry
  565. (char *page, char **start, off_t off, int count, int *eof, void *data)
  566. {
  567. ide_drive_t *drive = (ide_drive_t *) data;
  568. char *out = page;
  569. int len;
  570. out += sprintf(out,"physical     %d/%d/%dn", drive->cyl, drive->head, drive->sect);
  571. out += sprintf(out,"logical      %d/%d/%dn", drive->bios_cyl, drive->bios_head, drive->bios_sect);
  572. len = out - page;
  573. PROC_IDE_READ_RETURN(page,start,off,count,eof,len);
  574. }
  575. static int proc_ide_read_dmodel
  576. (char *page, char **start, off_t off, int count, int *eof, void *data)
  577. {
  578. ide_drive_t *drive = (ide_drive_t *) data;
  579. struct hd_driveid *id = drive->id;
  580. int len;
  581. len = sprintf(page, "%.40sn", (id && id->model[0]) ? (char *)id->model : "(none)");
  582. PROC_IDE_READ_RETURN(page,start,off,count,eof,len);
  583. }
  584. static int proc_ide_read_driver
  585. (char *page, char **start, off_t off, int count, int *eof, void *data)
  586. {
  587. ide_drive_t *drive = (ide_drive_t *) data;
  588. ide_driver_t *driver = (ide_driver_t *) drive->driver;
  589. int len;
  590. if (!driver)
  591. len = sprintf(page, "(none)n");
  592. else
  593. len = sprintf(page, "%s version %sn", driver->name, driver->version);
  594. PROC_IDE_READ_RETURN(page,start,off,count,eof,len);
  595. }
  596. static int proc_ide_write_driver
  597. (struct file *file, const char *buffer, unsigned long count, void *data)
  598. {
  599. ide_drive_t *drive = (ide_drive_t *) data;
  600. if (!capable(CAP_SYS_ADMIN))
  601. return -EACCES;
  602. if (ide_replace_subdriver(drive, buffer))
  603. return -EINVAL;
  604. return count;
  605. }
  606. static int proc_ide_read_media
  607. (char *page, char **start, off_t off, int count, int *eof, void *data)
  608. {
  609. ide_drive_t *drive = (ide_drive_t *) data;
  610. const char *media;
  611. int len;
  612. switch (drive->media) {
  613. case ide_disk: media = "diskn";
  614. break;
  615. case ide_cdrom: media = "cdromn";
  616. break;
  617. case ide_tape: media = "tapen";
  618. break;
  619. case ide_floppy:media = "floppyn";
  620. break;
  621. default: media = "UNKNOWNn";
  622. break;
  623. }
  624. strcpy(page,media);
  625. len = strlen(media);
  626. PROC_IDE_READ_RETURN(page,start,off,count,eof,len);
  627. }
  628. static ide_proc_entry_t generic_drive_entries[] = {
  629. { "driver", S_IFREG|S_IRUGO, proc_ide_read_driver, proc_ide_write_driver },
  630. { "identify", S_IFREG|S_IRUSR, proc_ide_read_identify, NULL },
  631. { "media", S_IFREG|S_IRUGO, proc_ide_read_media, NULL },
  632. { "model", S_IFREG|S_IRUGO, proc_ide_read_dmodel, NULL },
  633. { "settings", S_IFREG|S_IRUSR|S_IWUSR,proc_ide_read_settings, proc_ide_write_settings },
  634. { NULL, 0, NULL, NULL }
  635. };
  636. void ide_add_proc_entries(struct proc_dir_entry *dir, ide_proc_entry_t *p, void *data)
  637. {
  638. struct proc_dir_entry *ent;
  639. if (!dir || !p)
  640. return;
  641. while (p->name != NULL) {
  642. ent = create_proc_entry(p->name, p->mode, dir);
  643. if (!ent) return;
  644. ent->nlink = 1;
  645. ent->data = data;
  646. ent->read_proc = p->read_proc;
  647. ent->write_proc = p->write_proc;
  648. p++;
  649. }
  650. }
  651. void ide_remove_proc_entries(struct proc_dir_entry *dir, ide_proc_entry_t *p)
  652. {
  653. if (!dir || !p)
  654. return;
  655. while (p->name != NULL) {
  656. remove_proc_entry(p->name, dir);
  657. p++;
  658. }
  659. }
  660. static void create_proc_ide_drives(ide_hwif_t *hwif)
  661. {
  662. int d;
  663. struct proc_dir_entry *ent;
  664. struct proc_dir_entry *parent = hwif->proc;
  665. char name[64];
  666. for (d = 0; d < MAX_DRIVES; d++) {
  667. ide_drive_t *drive = &hwif->drives[d];
  668. ide_driver_t *driver = drive->driver;
  669. if (!drive->present)
  670. continue;
  671. if (drive->proc)
  672. continue;
  673. drive->proc = proc_mkdir(drive->name, parent);
  674. if (drive->proc) {
  675. ide_add_proc_entries(drive->proc, generic_drive_entries, drive);
  676. if (driver) {
  677. ide_add_proc_entries(drive->proc, generic_subdriver_entries, drive);
  678. ide_add_proc_entries(drive->proc, driver->proc, drive);
  679. }
  680. }
  681. sprintf(name,"ide%d/%s", (drive->name[2]-'a')/2, drive->name);
  682. ent = proc_symlink(drive->name, proc_ide_root, name);
  683. if (!ent) return;
  684. }
  685. }
  686. void recreate_proc_ide_device(ide_hwif_t *hwif, ide_drive_t *drive)
  687. {
  688. struct proc_dir_entry *ent;
  689. struct proc_dir_entry *parent = hwif->proc;
  690. char name[64];
  691. // ide_driver_t *driver = drive->driver;
  692. if (drive->present && !drive->proc) {
  693. drive->proc = proc_mkdir(drive->name, parent);
  694. if (drive->proc)
  695. ide_add_proc_entries(drive->proc, generic_drive_entries, drive);
  696. /*
  697.  * assume that we have these already, however, should test FIXME!
  698.  * if (driver) {
  699.  *      ide_add_proc_entries(drive->proc, generic_subdriver_entries, drive);
  700.  *      ide_add_proc_entries(drive->proc, driver->proc, drive);
  701.  * }
  702.  *
  703.  */
  704. sprintf(name,"ide%d/%s", (drive->name[2]-'a')/2, drive->name);
  705. ent = proc_symlink(drive->name, proc_ide_root, name);
  706. if (!ent)
  707. return;
  708. }
  709. }
  710. void destroy_proc_ide_device(ide_hwif_t *hwif, ide_drive_t *drive)
  711. {
  712. ide_driver_t *driver = drive->driver;
  713. if (drive->proc) {
  714. if (driver)
  715. ide_remove_proc_entries(drive->proc, driver->proc);
  716. ide_remove_proc_entries(drive->proc, generic_drive_entries);
  717. remove_proc_entry(drive->name, proc_ide_root);
  718. remove_proc_entry(drive->name, hwif->proc);
  719. drive->proc = NULL;
  720. }
  721. }
  722. void destroy_proc_ide_drives(ide_hwif_t *hwif)
  723. {
  724. int d;
  725. for (d = 0; d < MAX_DRIVES; d++) {
  726. ide_drive_t *drive = &hwif->drives[d];
  727. // ide_driver_t *driver = drive->driver;
  728. if (drive->proc)
  729. destroy_proc_ide_device(hwif, drive);
  730. }
  731. }
  732. static ide_proc_entry_t hwif_entries[] = {
  733. { "channel", S_IFREG|S_IRUGO, proc_ide_read_channel, NULL },
  734. { "config", S_IFREG|S_IRUGO|S_IWUSR,proc_ide_read_config, proc_ide_write_config },
  735. { "mate", S_IFREG|S_IRUGO, proc_ide_read_mate, NULL },
  736. { "model", S_IFREG|S_IRUGO, proc_ide_read_imodel, NULL },
  737. { NULL, 0, NULL, NULL }
  738. };
  739. void create_proc_ide_interfaces(void)
  740. {
  741. int h;
  742. for (h = 0; h < MAX_HWIFS; h++) {
  743. ide_hwif_t *hwif = &ide_hwifs[h];
  744. if (!hwif->present)
  745. continue;
  746. if (!hwif->proc) {
  747. hwif->proc = proc_mkdir(hwif->name, proc_ide_root);
  748. if (!hwif->proc)
  749. return;
  750. ide_add_proc_entries(hwif->proc, hwif_entries, hwif);
  751. }
  752. create_proc_ide_drives(hwif);
  753. }
  754. }
  755. static void destroy_proc_ide_interfaces(void)
  756. {
  757. int h;
  758. for (h = 0; h < MAX_HWIFS; h++) {
  759. ide_hwif_t *hwif = &ide_hwifs[h];
  760. int exist = (hwif->proc != NULL);
  761. #if 0
  762. if (!hwif->present)
  763. continue;
  764. #endif
  765. if (exist) {
  766. destroy_proc_ide_drives(hwif);
  767. ide_remove_proc_entries(hwif->proc, hwif_entries);
  768. remove_proc_entry(hwif->name, proc_ide_root);
  769. hwif->proc = NULL;
  770. } else
  771. continue;
  772. }
  773. }
  774. void proc_ide_create(void)
  775. {
  776. proc_ide_root = proc_mkdir("ide", 0);
  777. if (!proc_ide_root) return;
  778. create_proc_ide_interfaces();
  779. create_proc_read_entry("drivers", 0, proc_ide_root,
  780. proc_ide_read_drivers, NULL);
  781. #ifdef CONFIG_BLK_DEV_AEC62XX
  782. if ((aec62xx_display_info) && (aec62xx_proc))
  783. create_proc_info_entry("aec62xx", 0, proc_ide_root, aec62xx_display_info);
  784. #endif /* CONFIG_BLK_DEV_AEC62XX */
  785. #ifdef CONFIG_BLK_DEV_ALI15X3
  786. if ((ali_display_info) && (ali_proc))
  787. create_proc_info_entry("ali", 0, proc_ide_root, ali_display_info);
  788. #endif /* CONFIG_BLK_DEV_ALI15X3 */
  789. #ifdef CONFIG_BLK_DEV_AMD74XX
  790. if ((amd74xx_display_info) && (amd74xx_proc))
  791. create_proc_info_entry("amd74xx", 0, proc_ide_root, amd74xx_display_info);
  792. #endif /* CONFIG_BLK_DEV_AMD74XX */
  793. #ifdef CONFIG_BLK_DEV_CMD64X
  794. if ((cmd64x_display_info) && (cmd64x_proc))
  795. create_proc_info_entry("cmd64x", 0, proc_ide_root, cmd64x_display_info);
  796. #endif /* CONFIG_BLK_DEV_CMD64X */
  797. #ifdef CONFIG_BLK_DEV_CS5530
  798. if ((cs5530_display_info) && (cs5530_proc))
  799. create_proc_info_entry("cs5530", 0, proc_ide_root, cs5530_display_info);
  800. #endif /* CONFIG_BLK_DEV_CS5530 */
  801. #ifdef CONFIG_BLK_DEV_HPT34X
  802. if ((hpt34x_display_info) && (hpt34x_proc))
  803. create_proc_info_entry("hpt34x", 0, proc_ide_root, hpt34x_display_info);
  804. #endif /* CONFIG_BLK_DEV_HPT34X */
  805. #ifdef CONFIG_BLK_DEV_HPT366
  806. if ((hpt366_display_info) && (hpt366_proc))
  807. create_proc_info_entry("hpt366", 0, proc_ide_root, hpt366_display_info);
  808. #endif /* CONFIG_BLK_DEV_HPT366 */
  809. #ifdef CONFIG_BLK_DEV_SVWKS
  810. if ((svwks_display_info) && (svwks_proc))
  811. create_proc_info_entry("svwks", 0, proc_ide_root, svwks_display_info);
  812. #endif /* CONFIG_BLK_DEV_SVWKS */
  813. #ifdef CONFIG_BLK_DEV_PDC202XX
  814. if ((pdc202xx_display_info) && (pdc202xx_proc))
  815. create_proc_info_entry("pdc202xx", 0, proc_ide_root, pdc202xx_display_info);
  816. #endif /* CONFIG_BLK_DEV_PDC202XX */
  817. #ifdef CONFIG_BLK_DEV_PIIX
  818. if ((piix_display_info) && (piix_proc))
  819. create_proc_info_entry("piix", 0, proc_ide_root, piix_display_info);
  820. #endif /* CONFIG_BLK_DEV_PIIX */
  821. #ifdef CONFIG_BLK_DEV_SIS5513
  822. if ((sis_display_info) && (sis_proc))
  823. create_proc_info_entry("sis", 0, proc_ide_root, sis_display_info);
  824. #endif /* CONFIG_BLK_DEV_SIS5513 */
  825. #ifdef CONFIG_BLK_DEV_SLC90E66
  826. if ((slc90e66_display_info) && (slc90e66_proc))
  827. create_proc_info_entry("slc90e66", 0, proc_ide_root, slc90e66_display_info);
  828. #endif /* CONFIG_BLK_DEV_SLC90E66 */
  829. #ifdef CONFIG_BLK_DEV_VIA82CXXX
  830. if ((via_display_info) && (via_proc))
  831. create_proc_info_entry("via", 0, proc_ide_root, via_display_info);
  832. #endif /* CONFIG_BLK_DEV_VIA82CXXX */
  833. }
  834. void proc_ide_destroy(void)
  835. {
  836. /*
  837.  * Mmmm.. does this free up all resources,
  838.  * or do we need to do a more proper cleanup here ??
  839.  */
  840. #ifdef CONFIG_BLK_DEV_AEC62XX
  841. if ((aec62xx_display_info) && (aec62xx_proc))
  842. remove_proc_entry("ide/aec62xx",0);
  843. #endif /* CONFIG_BLK_DEV_AEC62XX */
  844. #ifdef CONFIG_BLK_DEV_ALI15X3
  845. if ((ali_display_info) && (ali_proc))
  846. remove_proc_entry("ide/ali",0);
  847. #endif /* CONFIG_BLK_DEV_ALI15X3 */
  848. #ifdef CONFIG_BLK_DEV_AMD74XX
  849. if ((amd74xx_display_info) && (amd74xx_proc))
  850. remove_proc_entry("ide/amd74xx",0);
  851. #endif /* CONFIG_BLK_DEV_AMD74XX */
  852. #ifdef CONFIG_BLK_DEV_CMD64X
  853. if ((cmd64x_display_info) && (cmd64x_proc))
  854. remove_proc_entry("ide/cmd64x",0);
  855. #endif /* CONFIG_BLK_DEV_CMD64X */
  856. #ifdef CONFIG_BLK_DEV_CS5530
  857. if ((cs5530_display_info) && (cs5530_proc))
  858. remove_proc_entry("ide/cs5530",0);
  859. #endif /* CONFIG_BLK_DEV_CS5530 */
  860. #ifdef CONFIG_BLK_DEV_HPT34X
  861. if ((hpt34x_display_info) && (hpt34x_proc))
  862. remove_proc_entry("ide/hpt34x",0);
  863. #endif /* CONFIG_BLK_DEV_HPT34X */
  864. #ifdef CONFIG_BLK_DEV_HPT366
  865. if ((hpt366_display_info) && (hpt366_proc))
  866. remove_proc_entry("ide/hpt366",0);
  867. #endif /* CONFIG_BLK_DEV_HPT366 */
  868. #ifdef CONFIG_BLK_DEV_PDC202XX
  869. if ((pdc202xx_display_info) && (pdc202xx_proc))
  870. remove_proc_entry("ide/pdc202xx",0);
  871. #endif /* CONFIG_BLK_DEV_PDC202XX */
  872. #ifdef CONFIG_BLK_DEV_PIIX
  873. if ((piix_display_info) && (piix_proc))
  874. remove_proc_entry("ide/piix",0);
  875. #endif /* CONFIG_BLK_DEV_PIIX */
  876. #ifdef CONFIG_BLK_DEV_SVWKS
  877. if ((svwks_display_info) && (svwks_proc))
  878. remove_proc_entry("ide/svwks",0);
  879. #endif /* CONFIG_BLK_DEV_SVWKS */
  880. #ifdef CONFIG_BLK_DEV_SIS5513
  881. if ((sis_display_info) && (sis_proc))
  882. remove_proc_entry("ide/sis", 0);
  883. #endif /* CONFIG_BLK_DEV_SIS5513 */
  884. #ifdef CONFIG_BLK_DEV_SLC90E66
  885. if ((slc90e66_display_info) && (slc90e66_proc))
  886. remove_proc_entry("ide/slc90e66",0);
  887. #endif /* CONFIG_BLK_DEV_SLC90E66 */
  888. #ifdef CONFIG_BLK_DEV_VIA82CXXX
  889. if ((via_display_info) && (via_proc))
  890. remove_proc_entry("ide/via",0);
  891. #endif /* CONFIG_BLK_DEV_VIA82CXXX */
  892. remove_proc_entry("ide/drivers", 0);
  893. destroy_proc_ide_interfaces();
  894. remove_proc_entry("ide", 0);
  895. }