jsflash.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:16k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * drivers/sbus/char/jsflash.c
  3.  *
  4.  *  Copyright (C) 1991, 1992  Linus Torvalds (drivers/char/mem.c)
  5.  *  Copyright (C) 1997  Eddie C. Dost (drivers/sbus/char/flash.c)
  6.  *  Copyright (C) 1997-2000 Pavel Machek <pavel@ucw.cz>   (drivers/block/nbd.c)
  7.  *  Copyright (C) 1999-2000 Pete Zaitcev
  8.  *
  9.  * This driver is used to program OS into a Flash SIMM on
  10.  * Krups and Espresso platforms.
  11.  *
  12.  * TODO: do not allow erase/programming if file systems are mounted.
  13.  * TODO: Erase/program both banks of a 8MB SIMM.
  14.  *
  15.  * It is anticipated that programming an OS Flash will be a routine
  16.  * procedure. In the same time it is exeedingly dangerous because
  17.  * a user can program its OBP flash with OS image and effectively
  18.  * kill the machine.
  19.  *
  20.  * This driver uses an interface different from Eddie's flash.c
  21.  * as a silly safeguard.
  22.  *
  23.  * XXX The flash.c manipulates page caching characteristics in a certain
  24.  * dubious way; also it assumes that remap_page_range() can remap
  25.  * PCI bus locations, which may be false. ioremap() must be used
  26.  * instead. We should discuss this.
  27.  */
  28. #include <linux/module.h>
  29. #include <linux/types.h>
  30. #include <linux/errno.h>
  31. #include <linux/miscdevice.h>
  32. #include <linux/slab.h>
  33. #include <linux/fcntl.h>
  34. #include <linux/poll.h>
  35. #include <linux/init.h>
  36. #include <linux/string.h>
  37. #include <linux/smp_lock.h>
  38. /*
  39.  * <linux/blk.h> is controlled from the outside with these definitions.
  40.  */
  41. #define MAJOR_NR JSFD_MAJOR
  42. #define DEVICE_NAME "jsfd"
  43. #define DEVICE_REQUEST jsfd_do_request
  44. #define DEVICE_NR(device) (MINOR(device))
  45. #define DEVICE_ON(device)
  46. #define DEVICE_OFF(device)
  47. #define DEVICE_NO_RANDOM
  48. #include <linux/blk.h>
  49. #include <asm/uaccess.h>
  50. #include <asm/pgtable.h>
  51. #include <asm/io.h>
  52. #include <asm/pcic.h>
  53. #include <asm/oplib.h>
  54. #include <asm/jsflash.h> /* ioctl arguments. <linux/> ?? */
  55. #define JSFIDSZ (sizeof(struct jsflash_ident_arg))
  56. #define JSFPRGSZ (sizeof(struct jsflash_program_arg))
  57. /*
  58.  * Our device numbers have no business in system headers.
  59.  * The only thing a user knows is the device name /dev/jsflash.
  60.  *
  61.  * Block devices are laid out like this:
  62.  *   minor+0 - Bootstrap, for 8MB SIMM 0x20400000[0x800000]
  63.  *   minor+1 - Filesystem to mount, normally 0x20400400[0x7ffc00]
  64.  *   minor+2 - Whole flash area for any case... 0x20000000[0x01000000]
  65.  * Total 3 minors per flash device.
  66.  *
  67.  * It is easier to have static size vectors, so we define
  68.  * a total minor range JSF_MAX, which must cover all minors.
  69.  */
  70. /* character device */
  71. #define JSF_MINOR 178 /* 178 is registered with hpa */
  72. /* block device */
  73. #define JSF_MAX  3 /* 3 minors wasted total so far. */
  74. #define JSF_NPART  3 /* 3 minors per flash device */
  75. #define JSF_PART_BITS  2 /* 2 bits of minors to cover JSF_NPART */
  76. #define JSF_PART_MASK  0x3 /* 2 bits mask */
  77. /*
  78.  * Access functions.
  79.  * We could ioremap(), but it's easier this way.
  80.  */
  81. static unsigned int jsf_inl(unsigned long addr)
  82. {
  83. unsigned long retval;
  84. __asm__ __volatile__("lda [%1] %2, %0nt" :
  85. "=r" (retval) :
  86. "r" (addr), "i" (ASI_M_BYPASS));
  87.         return retval;
  88. }
  89. static void jsf_outl(unsigned long addr, __u32 data)
  90. {
  91. __asm__ __volatile__("sta %0, [%1] %2nt" : :
  92. "r" (data), "r" (addr), "i" (ASI_M_BYPASS) :
  93. "memory");
  94. }
  95. /*
  96.  * soft carrier
  97.  */
  98. struct jsfd_part {
  99. unsigned long dbase;
  100. unsigned long dsize;
  101. int refcnt;
  102. };
  103. struct jsflash {
  104. unsigned long base;
  105. unsigned long size;
  106. unsigned long busy; /* In use? */
  107. struct jsflash_ident_arg id;
  108. /* int mbase; */ /* Minor base, typically zero */
  109. struct jsfd_part dv[JSF_NPART];
  110. };
  111. /*
  112.  * We do not map normal memory or obio as a safety precaution.
  113.  * But offsets are real, for ease of userland programming.
  114.  */
  115. #define JSF_BASE_TOP 0x30000000
  116. #define JSF_BASE_ALL 0x20000000
  117. #define JSF_BASE_JK 0x20400000
  118. /*
  119.  */
  120. static int jsfd_blksizes[JSF_MAX];
  121. static int jsfd_sizes[JSF_MAX];
  122. static u64 jsfd_bytesizes[JSF_MAX];
  123. /*
  124.  * Let's pretend we may have several of these...
  125.  */
  126. static struct jsflash jsf0;
  127. /*
  128.  * Wait for AMD to finish its embedded algorithm.
  129.  * We use the Toggle bit DQ6 (0x40) because it does not
  130.  * depend on the data value as /DATA bit DQ7 does.
  131.  *
  132.  * XXX Do we need any timeout here? So far it never hanged, beware broken hw.
  133.  */
  134. static void jsf_wait(unsigned long p) {
  135. unsigned int x1, x2;
  136. for (;;) {
  137. x1 = jsf_inl(p);
  138. x2 = jsf_inl(p);
  139. if ((x1 & 0x40404040) == (x2 & 0x40404040)) return;
  140. }
  141. }
  142. /*
  143.  * Programming will only work if Flash is clean,
  144.  * we leave it to the programmer application.
  145.  *
  146.  * AMD must be programmed one byte at a time;
  147.  * thus, Simple Tech SIMM must be written 4 bytes at a time.
  148.  *
  149.  * Write waits for the chip to become ready after the write
  150.  * was finished. This is done so that application would read
  151.  * consistent data after the write is done.
  152.  */
  153. static void jsf_write4(unsigned long fa, u32 data) {
  154. jsf_outl(fa, 0xAAAAAAAA); /* Unlock 1 Write 1 */
  155. jsf_outl(fa, 0x55555555); /* Unlock 1 Write 2 */
  156. jsf_outl(fa, 0xA0A0A0A0); /* Byte Program */
  157. jsf_outl(fa, data);
  158. jsf_wait(fa);
  159. }
  160. /*
  161.  */
  162. static void jsfd_read(char *buf, unsigned long p, size_t togo) {
  163. union byte4 {
  164. char s[4];
  165. unsigned int n;
  166. } b;
  167. while (togo >= 4) {
  168. togo -= 4;
  169. b.n = jsf_inl(p);
  170. memcpy(buf, b.s, 4);
  171. p += 4;
  172. buf += 4;
  173. }
  174. }
  175. static void jsfd_do_request(request_queue_t *q)
  176. {
  177. struct request *req;
  178. int dev;
  179. struct jsfd_part *jdp;
  180. unsigned long offset;
  181. size_t len;
  182. for (;;) {
  183. INIT_REQUEST; /* if (QUEUE_EMPTY) return; */
  184. req = CURRENT;
  185. dev = MINOR(req->rq_dev);
  186. if (dev >= JSF_MAX || (dev & JSF_PART_MASK) >= JSF_NPART) {
  187. end_request(0);
  188. continue;
  189. }
  190. jdp = &jsf0.dv[dev & JSF_PART_MASK];
  191. offset = req->sector << 9;
  192. len = req->current_nr_sectors << 9;
  193. if ((offset + len) > jdp->dsize) {
  194.                 end_request(0);
  195. continue;
  196. }
  197. if (req->cmd == WRITE) {
  198. printk(KERN_ERR "jsfd: writen");
  199. end_request(0);
  200. continue;
  201. }
  202. if (req->cmd != READ) {
  203. printk(KERN_ERR "jsfd: bad req->cmd %dn", req->cmd);
  204. end_request(0);
  205. continue;
  206. }
  207. if ((jdp->dbase & 0xff000000) != 0x20000000) {
  208. printk(KERN_ERR "jsfd: bad base %xn", (int)jdp->dbase);
  209. end_request(0);
  210. continue;
  211. }
  212. /* printk("jsfd%d: read buf %p off %x len %xn", dev, req->buffer, (int)offset, (int)len); */ /* P3 */
  213. jsfd_read(req->buffer, jdp->dbase + offset, len);
  214. end_request(1);
  215. }
  216. }
  217. /*
  218.  * The memory devices use the full 32/64 bits of the offset, and so we cannot
  219.  * check against negative addresses: they are ok. The return value is weird,
  220.  * though, in that case (0).
  221.  *
  222.  * also note that seeking relative to the "end of file" isn't supported:
  223.  * it has no meaning, so it returns -EINVAL.
  224.  */
  225. static loff_t jsf_lseek(struct file * file, loff_t offset, int orig)
  226. {
  227. switch (orig) {
  228. case 0:
  229. file->f_pos = offset;
  230. return file->f_pos;
  231. case 1:
  232. file->f_pos += offset;
  233. return file->f_pos;
  234. default:
  235. return -EINVAL;
  236. }
  237. }
  238. /*
  239.  * OS SIMM Cannot be read in other size but a 32bits word.
  240.  */
  241. static ssize_t jsf_read(struct file * file, char * buf, 
  242.     size_t togo, loff_t *ppos)
  243. {
  244. unsigned long p = *ppos;
  245. char *tmp = buf;
  246. union byte4 {
  247. char s[4];
  248. unsigned int n;
  249. } b;
  250. if (verify_area(VERIFY_WRITE, buf, togo))
  251. return -EFAULT; 
  252. if (p < JSF_BASE_ALL || p >= JSF_BASE_TOP) {
  253. return 0;
  254. }
  255. if ((p + togo) < p /* wrap */
  256.    || (p + togo) >= JSF_BASE_TOP) {
  257. togo = JSF_BASE_TOP - p;
  258. }
  259. if (p < JSF_BASE_ALL && togo != 0) {
  260. #if 0 /* __bzero XXX */
  261. size_t x = JSF_BASE_ALL - p;
  262. if (x > togo) x = togo;
  263. clear_user(tmp, x);
  264. tmp += x;
  265. p += x;
  266. togo -= x;
  267. #else
  268. /*
  269.  * Implementation of clear_user() calls __bzero
  270.  * without regard to modversions,
  271.  * so we cannot build a module.
  272.  */
  273. return 0;
  274. #endif
  275. }
  276. while (togo >= 4) {
  277. togo -= 4;
  278. b.n = jsf_inl(p);
  279. copy_to_user(tmp, b.s, 4);
  280. tmp += 4;
  281. p += 4;
  282. }
  283. /*
  284.  * XXX Small togo may remain if 1 byte is ordered.
  285.  * It would be nice if we did a word size read and unpacked it.
  286.  */
  287. *ppos = p;
  288. return tmp-buf;
  289. }
  290. static ssize_t jsf_write(struct file * file, const char * buf,
  291.     size_t count, loff_t *ppos)
  292. {
  293. return -ENOSPC;
  294. }
  295. /*
  296.  */
  297. static int jsf_ioctl_erase(unsigned long arg)
  298. {
  299. unsigned long p;
  300. /* p = jsf0.base; hits wrong bank */
  301. p = 0x20400000;
  302. jsf_outl(p, 0xAAAAAAAA); /* Unlock 1 Write 1 */
  303. jsf_outl(p, 0x55555555); /* Unlock 1 Write 2 */
  304. jsf_outl(p, 0x80808080); /* Erase setup */
  305. jsf_outl(p, 0xAAAAAAAA); /* Unlock 2 Write 1 */
  306. jsf_outl(p, 0x55555555); /* Unlock 2 Write 2 */
  307. jsf_outl(p, 0x10101010); /* Chip erase */
  308. #if 0
  309. /*
  310.  * This code is ok, except that counter based timeout
  311.  * has no place in this world. Let's just drop timeouts...
  312.  */
  313. {
  314. int i;
  315. __u32 x;
  316. for (i = 0; i < 1000000; i++) {
  317. x = jsf_inl(p);
  318. if ((x & 0x80808080) == 0x80808080) break;
  319. }
  320. if ((x & 0x80808080) != 0x80808080) {
  321. printk("jsf0: erase timeout with 0x%08xn", x);
  322. } else {
  323. printk("jsf0: erase done with 0x%08xn", x);
  324. }
  325. }
  326. #else
  327. jsf_wait(p);
  328. #endif
  329. return 0;
  330. }
  331. /*
  332.  * Program a block of flash.
  333.  * Very simple because we can do it byte by byte anyway.
  334.  */
  335. static int jsf_ioctl_program(unsigned long arg)
  336. {
  337. struct jsflash_program_arg abuf;
  338. char *uptr;
  339. unsigned long p;
  340. unsigned int togo;
  341. union {
  342. unsigned int n;
  343. char s[4];
  344. } b;
  345. if (verify_area(VERIFY_READ, (void *)arg, JSFPRGSZ))
  346. return -EFAULT; 
  347. copy_from_user(&abuf, (char *)arg, JSFPRGSZ);
  348. p = abuf.off;
  349. togo = abuf.size;
  350. if ((togo & 3) || (p & 3)) return -EINVAL;
  351. uptr = (char *) (unsigned long) abuf.data;
  352. if (verify_area(VERIFY_READ, uptr, togo))
  353. return -EFAULT;
  354. while (togo != 0) {
  355. togo -= 4;
  356. copy_from_user(&b.s[0], uptr, 4);
  357. jsf_write4(p, b.n);
  358. p += 4;
  359. uptr += 4;
  360. }
  361. return 0;
  362. }
  363. static int jsf_ioctl(struct inode *inode, struct file *f, unsigned int cmd,
  364.     unsigned long arg)
  365. {
  366. int error = -ENOTTY;
  367. if (!capable(CAP_SYS_ADMIN))
  368. return -EPERM;
  369. switch (cmd) {
  370. case JSFLASH_IDENT:
  371. if (verify_area(VERIFY_WRITE, (void *)arg, JSFIDSZ))
  372. return -EFAULT; 
  373. copy_to_user(arg, &jsf0.id, JSFIDSZ);
  374. error = 0;
  375. break;
  376. case JSFLASH_ERASE:
  377. error = jsf_ioctl_erase(arg);
  378. break;
  379. case JSFLASH_PROGRAM:
  380. error = jsf_ioctl_program(arg);
  381. break;
  382. }
  383. return error;
  384. }
  385. static int jsfd_ioctl(struct inode *inode, struct file *file,
  386.     unsigned int cmd, unsigned long arg)
  387. {
  388. int dev;
  389. if (!capable(CAP_SYS_ADMIN))
  390. return -EPERM;
  391. if (!inode)
  392. return -EINVAL;
  393. if ((dev = MINOR(inode->i_rdev)) >= JSF_MAX) return -ENODEV;
  394. switch (cmd) {
  395. case BLKGETSIZE:
  396. return put_user(jsfd_bytesizes[dev] >> 9, (unsigned long *) arg);
  397. case BLKGETSIZE64:
  398. return put_user(jsfd_bytesizes[dev], (u64 *) arg);
  399. #if 0
  400. case BLKROSET:
  401. case BLKROGET:
  402. case BLKSSZGET:
  403. return blk_ioctl(inode->i_rdev, cmd, arg);
  404. #endif
  405. /* case BLKFLSBUF: */ /* Program, then read, what happens? Stale? */
  406. default: ;
  407. }
  408. return -ENOTTY;
  409. }
  410. static int jsf_mmap(struct file * file, struct vm_area_struct * vma)
  411. {
  412. return -ENXIO;
  413. }
  414. static int jsf_open(struct inode * inode, struct file * filp)
  415. {
  416. if (jsf0.base == 0) return -ENXIO;
  417. if (test_and_set_bit(0, (void *)&jsf0.busy) != 0)
  418. return -EBUSY;
  419. return 0; /* XXX What security? */
  420. }
  421. static int jsfd_open(struct inode *inode, struct file *file)
  422. {
  423. struct jsfd_part *jdp;
  424. int dev;
  425. if (!inode)
  426. return -EINVAL;
  427. dev = MINOR(inode->i_rdev);
  428. if (dev >= JSF_MAX || (dev & JSF_PART_MASK) >= JSF_NPART) {
  429. printk(KERN_ALERT "jsfd_open: illegal minor %dn", dev);
  430. return -ENODEV;
  431. }
  432. jdp = &jsf0.dv[dev];
  433. jdp->refcnt++;
  434. return 0;
  435. }
  436. static int jsf_release(struct inode *inode, struct file *file)
  437. {
  438. jsf0.busy = 0;
  439. return 0;
  440. }
  441. static int jsfd_release(struct inode *inode, struct file *file)
  442. {
  443. struct jsfd_part *jdp;
  444. int dev;
  445. if (!inode)
  446. return -ENODEV;
  447. dev = MINOR(inode->i_rdev);
  448. if (dev >= JSF_MAX || (dev & JSF_PART_MASK) >= JSF_NPART) {
  449. printk(KERN_ALERT "jsfd_release: illegal minor %dn", dev);
  450. return -ENODEV;
  451. }
  452. jdp = &jsf0.dv[dev];
  453. if (jdp->refcnt <= 0) {
  454. printk(KERN_ALERT "jsfd_release: bad ref on minor %dn", dev);
  455. } else {
  456. --jdp->refcnt;
  457. }
  458. /* N.B. Doesn't lo->file need an fput?? */
  459. return 0;
  460. }
  461. static struct file_operations jsf_fops = {
  462. owner: THIS_MODULE,
  463. llseek: jsf_lseek,
  464. read: jsf_read,
  465. write: jsf_write,
  466. ioctl: jsf_ioctl,
  467. mmap: jsf_mmap,
  468. open: jsf_open,
  469. release: jsf_release,
  470. };
  471. static struct miscdevice jsf_dev = { JSF_MINOR, "jsflash", &jsf_fops };
  472. static struct block_device_operations jsfd_fops = {
  473. owner: THIS_MODULE,
  474. open: jsfd_open,
  475. release: jsfd_release,
  476. ioctl: jsfd_ioctl,
  477. };
  478. EXPORT_NO_SYMBOLS;
  479. int jsflash_init(void)
  480. {
  481. int rc;
  482. struct jsflash *jsf;
  483. int node;
  484. char banner[128];
  485. struct linux_prom_registers reg0;
  486. node = prom_getchild(prom_root_node);
  487. node = prom_searchsiblings(node, "flash-memory");
  488. if (node != 0 && node != -1) {
  489. if (prom_getproperty(node, "reg",
  490.     (char *)&reg0, sizeof(reg0)) == -1) {
  491. printk("jsflash: no "reg" propertyn");
  492. return -ENXIO;
  493. }
  494. if (reg0.which_io != 0) {
  495. printk("jsflash: bus number nonzero: 0x%x:%xn",
  496.     reg0.which_io, reg0.phys_addr);
  497. return -ENXIO;
  498. }
  499. /*
  500.  * Flash may be somewhere else, for instance on Ebus.
  501.  * So, don't do the following check for IIep flash space.
  502.  */
  503. #if 0
  504. if ((reg0.phys_addr >> 24) != 0x20) {
  505. printk("jsflash: suspicious address: 0x%x:%xn",
  506.     reg0.which_io, reg0.phys_addr);
  507. return -ENXIO;
  508. }
  509. #endif
  510. if ((int)reg0.reg_size <= 0) {
  511. printk("jsflash: bad size 0x%xn", (int)reg0.reg_size);
  512. return -ENXIO;
  513. }
  514. } else {
  515. /* XXX Remove this code once PROLL ID12 got widespread */
  516. printk("jsflash: no /flash-memory node, use PROLL >= 12n");
  517. prom_getproperty(prom_root_node, "banner-name", banner, 128);
  518. if (strcmp (banner, "JavaStation-NC") != 0 &&
  519.     strcmp (banner, "JavaStation-E") != 0) {
  520. return -ENXIO;
  521. }
  522. reg0.which_io = 0;
  523. reg0.phys_addr = 0x20400000;
  524. reg0.reg_size  = 0x00800000;
  525. }
  526. /* Let us be really paranoid for modifications to probing code. */
  527. /* extern enum sparc_cpu sparc_cpu_model; */ /* in <asm/system.h> */
  528. if (sparc_cpu_model != sun4m) {
  529. /* We must be on sun4m because we use MMU Bypass ASI. */
  530. return -ENXIO;
  531. }
  532. if (jsf0.base == 0) {
  533. jsf = &jsf0;
  534. jsf->base = reg0.phys_addr;
  535. jsf->size = reg0.reg_size;
  536. /* XXX Redo the userland interface. */
  537. jsf->id.off = JSF_BASE_ALL;
  538. jsf->id.size = 0x01000000; /* 16M - all segments */
  539. strcpy(jsf->id.name, "Krups_all");
  540. jsf->dv[0].dbase = jsf->base;
  541. jsf->dv[0].dsize = jsf->size;
  542. jsf->dv[1].dbase = jsf->base + 1024;
  543. jsf->dv[1].dsize = jsf->size - 1024;
  544. jsf->dv[2].dbase = JSF_BASE_ALL;
  545. jsf->dv[2].dsize = 0x01000000;
  546. printk("Espresso Flash @0x%lx [%d MB]n", jsf->base,
  547.     (int) (jsf->size / (1024*1024)));
  548. }
  549. if ((rc = misc_register(&jsf_dev)) != 0) {
  550. printk(KERN_ERR "jsf: unable to get misc minor %dn",
  551.     JSF_MINOR);
  552. jsf0.base = 0;
  553. return rc;
  554. }
  555. return 0;
  556. }
  557. int jsfd_init(void) {
  558. struct jsflash *jsf;
  559. struct jsfd_part *jdp;
  560. int i;
  561. if (jsf0.base == 0) {
  562. return -ENXIO;
  563. }
  564. if (register_blkdev(JSFD_MAJOR, "jsfd", &jsfd_fops)) {
  565. printk("jsfd_init: unable to get major number %dn",
  566.     JSFD_MAJOR);
  567. return -EIO;
  568. }
  569. blksize_size[JSFD_MAJOR] = jsfd_blksizes;
  570. blk_size[JSFD_MAJOR] = jsfd_sizes;
  571. blk_init_queue(BLK_DEFAULT_QUEUE(MAJOR_NR), DEVICE_REQUEST);
  572. /* blk_queue_headactive(BLK_DEFAULT_QUEUE(MAJOR_NR), 0); */
  573. for (i = 0; i < JSF_MAX; i++) {
  574. if ((i & JSF_PART_MASK) >= JSF_NPART) continue;
  575. jsf = &jsf0; /* actually, &jsfv[i >> JSF_PART_BITS] */
  576. jdp = &jsf->dv[i&JSF_PART_MASK];
  577. jdp->refcnt = 0;
  578. jsfd_blksizes[i] = 1024;
  579. jsfd_bytesizes[i] = jdp->dsize;
  580. jsfd_sizes[i] = jsfd_bytesizes[i] >> 10;
  581. register_disk(NULL, MKDEV(JSFD_MAJOR, i), 1, &jsfd_fops,
  582. jsfd_bytesizes[i] >> 9);
  583. set_device_ro(MKDEV(JSFD_MAJOR, i), 1);
  584. }
  585. return 0;
  586. }
  587. #ifdef MODULE
  588. MODULE_LICENSE("GPL");
  589. int init_module(void) {
  590. int rc;
  591. if ((rc = jsflash_init()) == 0) {
  592. jsfd_init();
  593. return 0;
  594. }
  595. return rc;
  596. }
  597. void cleanup_module(void) {
  598. /* for (all probed units) {  } */
  599. if (jsf0.busy)
  600. printk("jsf0: cleaning busy unitn");
  601. jsf0.base = 0;
  602. jsf0.busy = 0;
  603. misc_deregister(&jsf_dev);
  604. if (unregister_blkdev(JSFD_MAJOR, "jsfd") != 0)
  605. printk("jsfd: cleanup_module failedn");
  606. blk_cleanup_queue(BLK_DEFAULT_QUEUE(MAJOR_NR));
  607. }
  608. #endif