skull_init.c
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:6k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * skull.c -- sample typeless module.
  3.  *
  4.  * BUGS:
  5.  *   -it only runs on intel platforms.
  6.  *   -readb() should be used (see short.c): skull doesn't work with 2.1
  7.  *
  8.  */
  9. #ifndef __KERNEL__
  10. #  define __KERNEL__
  11. #endif
  12. #ifndef MODULE
  13. #  define MODULE
  14. #endif
  15. #ifndef EXPORT_SYMTAB
  16. #  define EXPORT_SYMTAB
  17. #endif
  18. #include <linux/config.h>
  19. #include <linux/module.h>
  20. #include <linux/kernel.h> /* printk */
  21. #include <linux/ioport.h>
  22. #include <linux/errno.h>
  23. #include <asm/system.h> /* cli(), *_flags */
  24. #include <linux/mm.h> /* vremap (2.0) */
  25. #include <asm/io.h> /* ioremap */
  26. #include "sysdep.h"
  27. /* The region we look at. */
  28. #define ISA_REGION_BEGIN 0xA0000
  29. #define ISA_REGION_END   0x100000
  30. #define STEP 2048
  31. /* have three symbols to export */
  32.        void skull_fn1(void){}
  33. static void skull_fn2(void){}
  34.        int  skull_variable;
  35. #ifndef __USE_OLD_SYMTAB__
  36. EXPORT_SYMBOL (skull_fn1);
  37. EXPORT_SYMBOL (skull_fn2);
  38. EXPORT_SYMBOL (skull_variable);
  39. #endif
  40. static int skull_register(void) /* and export them */
  41. {
  42. #ifdef __USE_OLD_SYMTAB__
  43.   static struct symbol_table skull_syms = {
  44. #include <linux/symtab_begin.h>
  45.         X(skull_fn1),
  46.         X(skull_fn2),
  47.         X(skull_variable),
  48. #include <linux/symtab_end.h>
  49. };
  50.   register_symtab(&skull_syms);
  51. #endif   /* __USE_OLD_SYMTAB__ */
  52.   return 0;
  53. }
  54. /* perform hardware autodetection */
  55. int skull_probe_hw(unsigned int port, unsigned int range)
  56. {
  57.    /* do smart probing here */
  58.    return -1; /* not found  :-) */
  59. }
  60. /* perform hardware initalizazion */
  61. int skull_init_board(unsigned int port)
  62. {
  63.   /* do smart initalization here */
  64.   return 0; /* done :-) */
  65. }
  66. /* detect the the device if the region is still free */
  67. static int skull_detect(unsigned int port, unsigned int range)
  68. {
  69.     int err;
  70.     if ((err = check_region(port,range)) < 0) return err; /* busy */
  71.     if (skull_probe_hw(port,range) != 0) return -ENODEV;  /* not found */
  72.     request_region(port,range,"skull");                   /* "Can't fail" */
  73.     return 0;
  74. }
  75. /*
  76.  * port ranges: the device can reside between
  77.  * 0x280 and 0x300, in step of 0x10. It uses 0x10 ports.
  78.  */
  79. #define SKULL_PORT_FLOOR 0x280
  80. #define SKULL_PORT_CEIL  0x300
  81. #define SKULL_PORT_RANGE  0x010
  82. /*
  83.  * the following function performs autodetection, unless a specific
  84.  * value was assigned by insmod to "skull_port_base"
  85.  */
  86. static int skull_port_base=0; /* 0 forces autodetection */
  87. MODULE_PARM (skull_port_base, "i");
  88. MODULE_PARM_DESC (skull_port_base, "Base I/O port for skull");
  89. static int skull_find_hw(void) /* returns the # of devices */
  90. {
  91.     /* base is either the load-time value or the first trial */
  92.     int base = skull_port_base ? skull_port_base 
  93.                              : SKULL_PORT_FLOOR; 
  94.     int result = 0;
  95.     /* loop one time if value assigned, try them all if autodetecting */
  96.     do {
  97. if (skull_detect(base, SKULL_PORT_RANGE) == 0) {
  98.     skull_init_board(base);
  99.     result++;
  100. }
  101. base += SKULL_PORT_RANGE; /* prepare for next trial */
  102.     }
  103.     while (skull_port_base == 0 && base < SKULL_PORT_CEIL);
  104.     return result;
  105. }
  106. int skull_init(void)
  107. {
  108.     /*
  109.      * Print the isa region map, in blocks of 2K bytes.
  110.      * This is not the best code, as it prints too many lines,
  111.      * but it deserves to remain short to be included in the book.
  112.      * Note also that read() should be used instead of pointers.
  113.      */
  114.     unsigned char oldval, newval; /* values read from memory   */
  115.     unsigned long flags;          /* used to hold system flags */
  116.     unsigned long add, i;
  117.     void *base;
  118.     
  119.     /* Use ioremap to get a handle on our region */
  120.     base = ioremap(ISA_REGION_BEGIN, ISA_REGION_END - ISA_REGION_BEGIN);
  121.     base -= ISA_REGION_BEGIN;  /* Do the offset once */
  122.     
  123.     /* probe all the memory hole in 2KB steps */
  124.     for (add = ISA_REGION_BEGIN; add < ISA_REGION_END; add += STEP) {
  125. /*
  126.  * Check for an already allocated region.
  127.  */
  128. if (check_mem_region (add, 2048)) {
  129. printk(KERN_INFO "%lx: Allocatedn", add);
  130. continue;
  131. }
  132. /*
  133.  * Read and write the beginning of the region and see what happens.
  134.  */
  135. save_flags(flags); 
  136. cli();
  137. oldval = readb (base + add);  /* Read a byte */
  138. writeb (oldval^0xff, base + add);
  139. mb();
  140. newval = readb (base + add);
  141. writeb (oldval, base + add);
  142. restore_flags(flags);
  143. if ((oldval^newval) == 0xff) {  /* we re-read our change: it's ram */
  144.     printk(KERN_INFO "%lx: RAMn", add);
  145.     continue;
  146. }
  147. if ((oldval^newval) != 0) {  /* random bits changed: it's empty */
  148.     printk(KERN_INFO "%lx: emptyn", add);
  149.     continue;
  150. }
  151. /*
  152.  * Expansion rom (executed at boot time by the bios)
  153.  * has a signature where the first byt is 0x55, the second 0xaa,
  154.  * and the third byte indicates the size of such rom
  155.  */
  156. if ( (oldval == 0x55) && (readb (base + add + 1) == 0xaa)) {
  157.     int size = 512 * readb (base + add + 2);
  158.     printk(KERN_INFO "%lx: Expansion ROM, %i bytesn",
  159.                    add, size);
  160.     add += (size & ~2048) - 2048; /* skip it */
  161.     continue;
  162. }
  163. /*
  164.  * If the tests above failed, we still don't know if it is ROM or
  165.  * empty. Since empty memory can appear as 0x00, 0xff, or the low
  166.  * address byte, we must probe multiple bytes: if at least one of
  167.  * them is different from these three values, then this is rom
  168.  * (though not boot rom).
  169.  */
  170. printk(KERN_INFO "%lx: ", add);
  171. for (i=0; i<5; i++) {
  172.     unsigned long radd = add + 57*(i+1);  /* a "random" value */
  173.     unsigned char val = readb (base + radd);
  174.     if (val && val != 0xFF && val != ((unsigned long) radd&0xFF))
  175. break;
  176. }    
  177. printk("%sn", i==5 ? "empty" : "ROM");
  178.     }
  179.     /*
  180.      * Find you hardware 
  181.      */
  182.     skull_find_hw();
  183.     /*
  184.      * Always fail to load (or suceed).
  185.      */
  186.     skull_register(); /* register your symbol table */
  187.     return 0;
  188. }
  189. module_init(skull_init);