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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* Tests for presence or absence of hardware registers.
  2.  * This code was originally in atari/config.c, but I noticed
  3.  * that it was also in drivers/nubus/nubus.c and I wanted to
  4.  * use it in hp300/config.c, so it seemed sensible to pull it
  5.  * out into its own file.
  6.  * 
  7.  * The test is for use when trying to read a hardware register
  8.  * that isn't present would cause a bus error. We set up a 
  9.  * temporary handler so that this doesn't kill the kernel.
  10.  *
  11.  * There is a test-by-reading and a test-by-writing; I present
  12.  * them here complete with the comments from the original atari
  13.  * config.c...
  14.  *                -- PMM <pmaydell@chiark.greenend.org.uk>, 05/1998
  15.  */
  16. /* This function tests for the presence of an address, specially a
  17.  * hardware register address. It is called very early in the kernel
  18.  * initialization process, when the VBR register isn't set up yet. On
  19.  * an Atari, it still points to address 0, which is unmapped. So a bus
  20.  * error would cause another bus error while fetching the exception
  21.  * vector, and the CPU would do nothing at all. So we needed to set up
  22.  * a temporary VBR and a vector table for the duration of the test.
  23.  */
  24. int hwreg_present( volatile void *regp )
  25. {
  26.     int ret = 0;
  27.     long save_sp, save_vbr;
  28.     long tmp_vectors[3];
  29.     __asm__ __volatile__
  30. ( "movec %/vbr,%2nt"
  31. "movel #Lberr1,%4@(8)nt"
  32.                 "movec %4,%/vbrnt"
  33. "movel %/sp,%1nt"
  34. "moveq #0,%0nt"
  35. "tstb %3@nt"  
  36. "nopnt"
  37. "moveq #1,%0n"
  38.                 "Lberr1:nt"
  39. "movel %1,%/spnt"
  40. "movec %2,%/vbr"
  41. : "=&d" (ret), "=&r" (save_sp), "=&r" (save_vbr)
  42. : "a" (regp), "a" (tmp_vectors)
  43.                 );
  44.     return( ret );
  45. }
  46.   
  47. /* Basically the same, but writes a value into a word register, protected
  48.  * by a bus error handler. Returns 1 if successful, 0 otherwise.
  49.  */
  50. int hwreg_write( volatile void *regp, unsigned short val )
  51. {
  52. int ret;
  53. long save_sp, save_vbr;
  54. long tmp_vectors[3];
  55. __asm__ __volatile__
  56. ( "movec %/vbr,%2nt"
  57. "movel #Lberr2,%4@(8)nt"
  58. "movec %4,%/vbrnt"
  59. "movel %/sp,%1nt"
  60. "moveq #0,%0nt"
  61. "movew %5,%3@nt"  
  62. "nop nt" /* If this nop isn't present, 'ret' may already be
  63.  * loaded with 1 at the time the bus error
  64.  * happens! */
  65. "moveq #1,%0n"
  66. "Lberr2:nt"
  67. "movel %1,%/spnt"
  68. "movec %2,%/vbr"
  69. : "=&d" (ret), "=&r" (save_sp), "=&r" (save_vbr)
  70. : "a" (regp), "a" (tmp_vectors), "g" (val)
  71. );
  72. return( ret );
  73. }