gateA20.c

Go to the documentation of this file.
00001 FILE_LICENCE ( GPL2_OR_LATER );
00002 
00003 #include <stdio.h>
00004 #include <realmode.h>
00005 #include <bios.h>
00006 #include <gpxe/io.h>
00007 #include <gpxe/timer.h>
00008 
00009 #define K_RDWR          0x60            /* keyboard data & cmds (read/write) */
00010 #define K_STATUS        0x64            /* keyboard status */
00011 #define K_CMD           0x64            /* keybd ctlr command (write-only) */
00012 
00013 #define K_OBUF_FUL      0x01            /* output buffer full */
00014 #define K_IBUF_FUL      0x02            /* input buffer full */
00015 
00016 #define KC_CMD_WIN      0xd0            /* read  output port */
00017 #define KC_CMD_WOUT     0xd1            /* write output port */
00018 #define KC_CMD_NULL     0xff            /* null command ("pulse nothing") */
00019 #define KB_SET_A20      0xdf            /* enable A20,
00020                                            enable output buffer full interrupt
00021                                            enable data line
00022                                            disable clock line */
00023 #define KB_UNSET_A20    0xdd            /* enable A20,
00024                                            enable output buffer full interrupt
00025                                            enable data line
00026                                            disable clock line */
00027 
00028 #define SCP_A           0x92            /* System Control Port A */
00029 
00030 enum { Disable_A20 = 0x2400, Enable_A20 = 0x2401, Query_A20_Status = 0x2402,
00031         Query_A20_Support = 0x2403 };
00032 
00033 enum a20_methods {
00034         A20_UNKNOWN = 0,
00035         A20_INT15,
00036         A20_KBC,
00037         A20_SCPA,
00038 };
00039 
00040 #define A20_MAX_RETRIES         32
00041 #define A20_INT15_RETRIES       32
00042 #define A20_KBC_RETRIES         (2^21)
00043 #define A20_SCPA_RETRIES        (2^21)
00044 
00045 /**
00046  * Drain keyboard controller
00047  */
00048 static void empty_8042 ( void ) {
00049         unsigned long time;
00050 
00051         time = currticks() + TICKS_PER_SEC;     /* max wait of 1 second */
00052         while ( ( inb ( K_CMD ) & ( K_IBUF_FUL | K_OBUF_FUL ) ) &&
00053                 currticks() < time ) {
00054                 iodelay();
00055                 ( void ) inb_p ( K_RDWR );
00056                 iodelay();
00057         }
00058 }
00059 
00060 /**
00061  * Fast test to see if gate A20 is already set
00062  *
00063  * @v retries           Number of times to retry before giving up
00064  * @ret set             Gate A20 is set
00065  */
00066 static int gateA20_is_set ( int retries ) {
00067         static uint32_t test_pattern = 0xdeadbeef;
00068         physaddr_t test_pattern_phys = virt_to_phys ( &test_pattern );
00069         physaddr_t verify_pattern_phys = ( test_pattern_phys ^ 0x100000 );
00070         userptr_t verify_pattern_user = phys_to_user ( verify_pattern_phys );
00071         uint32_t verify_pattern;
00072 
00073         do {
00074                 /* Check for difference */
00075                 copy_from_user ( &verify_pattern, verify_pattern_user, 0,
00076                                  sizeof ( verify_pattern ) );
00077                 if ( verify_pattern != test_pattern )
00078                         return 1;
00079 
00080                 /* Avoid false negatives */
00081                 test_pattern++;
00082 
00083                 iodelay();
00084 
00085                 /* Always retry at least once, to avoid false negatives */
00086         } while ( retries-- >= 0 );
00087 
00088         /* Pattern matched every time; gate A20 is not set */
00089         return 0;
00090 }
00091 
00092 /*
00093  * Gate A20 for high memory
00094  *
00095  * Note that this function gets called as part of the return path from
00096  * librm's real_call, which is used to make the int15 call if librm is
00097  * being used.  To avoid an infinite recursion, we make gateA20_set
00098  * return immediately if it is already part of the call stack.
00099  */
00100 void gateA20_set ( void ) {
00101         static char reentry_guard = 0;
00102         static int a20_method = A20_UNKNOWN;
00103         unsigned int discard_a;
00104         unsigned int scp_a;
00105         int retries = 0;
00106 
00107         /* Avoid potential infinite recursion */
00108         if ( reentry_guard )
00109                 return;
00110         reentry_guard = 1;
00111 
00112         /* Fast check to see if gate A20 is already enabled */
00113         if ( gateA20_is_set ( 0 ) )
00114                 goto out;
00115 
00116         for ( ; retries < A20_MAX_RETRIES ; retries++ ) {
00117                 switch ( a20_method ) {
00118                 case A20_UNKNOWN:
00119                 case A20_INT15:
00120                         /* Try INT 15 method */
00121                         __asm__ __volatile__ ( REAL_CODE ( "int $0x15" )
00122                                                : "=a" ( discard_a )
00123                                                : "a" ( Enable_A20 ) );
00124                         if ( gateA20_is_set ( A20_INT15_RETRIES ) ) {
00125                                 DBG ( "Enabled gate A20 using BIOS\n" );
00126                                 a20_method = A20_INT15;
00127                                 goto out;
00128                         }
00129                         /* fall through */
00130                 case A20_KBC:
00131                         /* Try keyboard controller method */
00132                         empty_8042();
00133                         outb ( KC_CMD_WOUT, K_CMD );
00134                         empty_8042();
00135                         outb ( KB_SET_A20, K_RDWR );
00136                         empty_8042();
00137                         outb ( KC_CMD_NULL, K_CMD );
00138                         empty_8042();
00139                         if ( gateA20_is_set ( A20_KBC_RETRIES ) ) {
00140                                 DBG ( "Enabled gate A20 using "
00141                                       "keyboard controller\n" );
00142                                 a20_method = A20_KBC;
00143                                 goto out;
00144                         }
00145                         /* fall through */
00146                 case A20_SCPA:
00147                         /* Try "Fast gate A20" method */
00148                         scp_a = inb ( SCP_A );
00149                         scp_a &= ~0x01; /* Avoid triggering a reset */
00150                         scp_a |= 0x02; /* Enable A20 */
00151                         iodelay();
00152                         outb ( scp_a, SCP_A );
00153                         iodelay();
00154                         if ( gateA20_is_set ( A20_SCPA_RETRIES ) ) {
00155                                 DBG ( "Enabled gate A20 using "
00156                                       "Fast Gate A20\n" );
00157                                 a20_method = A20_SCPA;
00158                                 goto out;
00159                         }
00160                 }
00161         }
00162 
00163         /* Better to die now than corrupt memory later */
00164         printf ( "FATAL: Gate A20 stuck\n" );
00165         while ( 1 ) {}
00166 
00167  out:
00168         if ( retries )
00169                 DBG ( "%d attempts were required to enable A20\n",
00170                       ( retries + 1 ) );
00171         reentry_guard = 0;
00172 }
00173 
00174 void gateA20_unset ( void ) {
00175         /* Not currently implemented */
00176 }

Generated on Tue Apr 6 20:00:49 2010 for gPXE by  doxygen 1.5.7.1