/*
- * Copyright (c) 2005 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2005-2006 Apple Computer, Inc. All rights reserved.
*
* @APPLE_OSREFERENCE_LICENSE_HEADER_START@
*
* @APPLE_FREE_COPYRIGHT@
*/
-#include <mach_kdb.h>
-#include <platforms.h>
#include <kern/spl.h>
#include <mach/std_types.h>
#include <types.h>
#include <kern/thread.h>
#include <console/serial_protos.h>
+#include <libkern/section_keywords.h>
-extern unsigned int disableSerialOuput;
extern void cons_cinput(char ch); /* The BSD routine that gets characters */
-unsigned int serialmode; /* Serial mode keyboard and console control */
+SECURITY_READ_ONLY_LATE(unsigned int) serialmode; /* Serial mode keyboard and console control */
/*
* This routine will start a thread that polls the serial port, listening for
kern_return_t result;
thread_t thread;
- if(!(serialmode & 2)) return; /* Leave if we do not want a serial console */
+ if(!(serialmode & 2)) /* Leave if we do not want a serial console */
+ return;
kprintf("Serial keyboard started\n");
result = kernel_thread_start_priority((thread_continue_t)serial_keyboard_start, NULL, MAXPRI_KERNEL, &thread);
void
serial_keyboard_start(void)
{
-
- serial_keyboard_poll(); /* Go see if there are any characters pending now */
+ /* Go see if there are any characters pending now */
+ serial_keyboard_poll();
panic("serial_keyboard_start: we can't get back here\n");
-
}
void
int chr;
uint64_t next;
-
- while(1) { /* Do this for a while */
+ while(1) {
chr = _serial_getc(0, 1, 0, 1); /* Get a character if there is one */
- if(chr < 0) break; /* The serial buffer is empty */
+ if(chr < 0) /* The serial buffer is empty */
+ break;
cons_cinput((char)chr); /* Buffer up the character */
}
panic("serial_keyboard_poll: Shouldn't never ever get here...\n");
}
-boolean_t console_is_serial()
+boolean_t
+console_is_serial(void)
{
- return cons_ops_index == SERIAL_CONS_OPS;
+ return (cons_ops_index == SERIAL_CONS_OPS);
}
int
-switch_to_video_console()
+switch_to_video_console(void)
{
int old_cons_ops = cons_ops_index;
cons_ops_index = VC_CONS_OPS;
}
int
-switch_to_serial_console()
+switch_to_serial_console(void)
{
int old_cons_ops = cons_ops_index;
cons_ops_index = SERIAL_CONS_OPS;