Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1754 → Rev 1753

/kernel/trunk/genarch/src/i8042/i8042.c
26,14 → 26,10
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup genarch
/** @addtogroup genarch
* @{
*/
/**
* @file i8042.c
* @brief i8042 processor driver.
*
* It takes care of low-level keyboard functions.
/** @file
*/
 
#include <genarch/i8042/i8042.h>
49,7 → 45,12
#include <macros.h>
#include <interrupt.h>
 
/* Keyboard commands. */
/**
* i8042 processor driver.
* It takes care of low-level keyboard functions.
*/
 
/** Keyboard commands. */
#define KBD_ENABLE 0xf4
#define KBD_DISABLE 0xf5
#define KBD_ACK 0xfa
574,6 → 575,6
}
}
 
/** @}
/** @}
*/
 
/kernel/trunk/contrib/conf/gxemul.sh
1,3 → 1,4
#!/bin/sh
 
gxemul $@ -E testmips -X image.boot
# Uspace addresses outside of normal memory (kernel has std. 8 or 16MB)
# we place the pages at 24M
gxemul $@ -E testmips -X image.boot
/kernel/trunk/arch/mips32/src/exception.c
26,7 → 26,7
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup mips32
/** @addtogroup mips32
* @{
*/
/** @file
172,6 → 172,6
exc_register(EXC_Sys, "syscall", (iroutine) syscall_exception);
}
 
/** @}
/** @}
*/
 
/kernel/trunk/arch/ia32/src/drivers/vesa.c
26,12 → 26,10
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup ia32
/** @addtogroup ia32
* @{
*/
/**
* @file
* @brief VESA frame buffer driver.
/** @file
*/
 
#ifdef CONFIG_FB
72,5 → 70,6
 
#endif
 
/** @}
/** @}
*/
 
/kernel/trunk/arch/ia32/src/drivers/i8259.c
26,14 → 26,10
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup ia32
/** @addtogroup ia32
* @{
*/
/**
* @file
* @brief PIC driver.
*
* Programmable Interrupt Controller for UP systems based on i8259 chip.
/** @file
*/
 
#include <arch/drivers/i8259.h>
44,6 → 40,11
#include <print.h>
#include <interrupt.h>
 
/*
* This is the PIC driver.
* Programmable Interrupt Controller for UP systems.
*/
 
static void pic_spurious(int n, istate_t *istate);
 
void i8259_init(void)
130,5 → 131,6
#endif
}
 
/** @}
/** @}
*/
 
/kernel/trunk/arch/ia32/src/drivers/i8254.c
26,14 → 26,10
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup ia32
/** @addtogroup ia32
* @{
*/
/**
* @file
* @brief i8254 chip driver.
*
* Low level time functions.
/** @file
*/
 
#include <arch/types.h>
51,9 → 47,15
#include <time/delay.h>
#include <interrupt.h>
 
/*
* i8254 chip driver.
* Low level time functions.
*/
 
#define CLK_PORT1 0x40
#define CLK_PORT4 0x43
 
 
#define CLK_CONST 1193180
#define MAGIC_NUMBER 1194
 
135,5 → 137,6
clock();
}
 
/** @}
/** @}
*/
 
/kernel/trunk/arch/ia32/src/drivers/ega.c
26,12 → 26,10
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup ia32
/** @addtogroup ia32
* @{
*/
/**
* @file
* @brief EGA driver.
/** @file
*/
 
#include <arch/drivers/ega.h>
146,5 → 144,6
outb(0x3d5, ega_cursor & 0xff);
}
 
/** @}
/** @}
*/