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
00010 #define K_STATUS 0x64
00011 #define K_CMD 0x64
00012
00013 #define K_OBUF_FUL 0x01
00014 #define K_IBUF_FUL 0x02
00015
00016 #define KC_CMD_WIN 0xd0
00017 #define KC_CMD_WOUT 0xd1
00018 #define KC_CMD_NULL 0xff
00019 #define KB_SET_A20 0xdf
00020
00021
00022
00023 #define KB_UNSET_A20 0xdd
00024
00025
00026
00027
00028 #define SCP_A 0x92
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
00047
00048 static void empty_8042 ( void ) {
00049 unsigned long time;
00050
00051 time = currticks() + TICKS_PER_SEC;
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
00062
00063
00064
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
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
00081 test_pattern++;
00082
00083 iodelay();
00084
00085
00086 } while ( retries-- >= 0 );
00087
00088
00089 return 0;
00090 }
00091
00092
00093
00094
00095
00096
00097
00098
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
00108 if ( reentry_guard )
00109 return;
00110 reentry_guard = 1;
00111
00112
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
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
00130 case A20_KBC:
00131
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
00146 case A20_SCPA:
00147
00148 scp_a = inb ( SCP_A );
00149 scp_a &= ~0x01;
00150 scp_a |= 0x02;
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
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
00176 }