Implement com(4) interrupt support for receiving data. Add termios terminal support to the com(4) driver with tcsetattr(2) support for configuring the hardware serial settings. Add kernel(7) --console option which can be used to initialize the com(4) driver early for the kernel console with the specified serial settings and window size. Add kernel(7) --text option for overriding the TERM environment variable. Add kernel(7) --disable-logo option for disabling writing the the operating system logo to the console on boot. Add advanced bootloader option to select booting to a serial console on com1. Add bootloader variables and hooks to customize this behavior. Add tix-iso-bootconfig(8) --console, --grub-serial, --serial, and --serial-console options as a convenince to opt into booting to the serial console by default. Add tix-iso-bootconfig(8) --kernel-options option for forwarding additional options to the kernel. The logterminal driver used for tty1 currently assumes that it controls the kernel log, which is not true when com(4) is used as the console, therefore the tty1 driver is currently disabled if a serial console is selected, as a temporary workaround.
35 lines
1.1 KiB
C++
35 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2011, 2012, 2014, 2024 Jonas 'Sortie' Termansen.
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*
|
|
* com.h
|
|
* Handles communication to COM serial ports.
|
|
*/
|
|
|
|
#ifndef SORTIX_COM_H
|
|
#define SORTIX_COM_H
|
|
|
|
#include <sortix/kernel/descriptor.h>
|
|
#include <sortix/kernel/refcount.h>
|
|
|
|
namespace Sortix {
|
|
namespace COM {
|
|
|
|
void InitializeConsole(const char* console);
|
|
void Init(const char* devpath, Ref<Descriptor> slashdev);
|
|
|
|
} // namespace COM
|
|
} // namespace Sortix
|
|
|
|
#endif
|