mirror of
https://github.com/0xAX/linux-insides.git
synced 2024-11-01 04:29:39 +00:00
47 lines
1.4 KiB
Markdown
47 lines
1.4 KiB
Markdown
Useful links
|
|
========================
|
|
|
|
Linux boot
|
|
------------------------
|
|
|
|
* [Linux/x86 boot protocol](https://www.kernel.org/doc/Documentation/x86/boot.txt)
|
|
* [Linux kernel parameters](https://github.com/torvalds/linux/blob/master/Documentation/kernel-parameters.txt)
|
|
|
|
Protected mode
|
|
------------------------
|
|
|
|
* [64-ia-32-architectures-software-developer-vol-3a-part-1-manual.pdf](http://www.intel.com/content/www/us/en/processors/architectures-software-developer-manuals.html)
|
|
|
|
Serial programming
|
|
------------------------
|
|
|
|
* [8250 UART Programming](http://en.wikibooks.org/wiki/Serial_Programming/8250_UART_Programming#UART_Registers)
|
|
* [Serial ports on OSDEV](http://wiki.osdev.org/Serial_Ports)
|
|
|
|
VGA
|
|
------------------------
|
|
|
|
* [Video Graphics Array (VGA)](http://en.wikipedia.org/wiki/Video_Graphics_Array)
|
|
|
|
IO
|
|
------------------------
|
|
|
|
* [IO port programming](http://www.tldp.org/HOWTO/text/IO-Port-Programming)
|
|
|
|
GCC and GAS
|
|
------------------------
|
|
|
|
* [GCC type attributes](https://gcc.gnu.org/onlinedocs/gcc/Type-Attributes.html)
|
|
* [Assembler Directives](http://www.chemie.fu-berlin.de/chemnet/use/info/gas/gas_toc.html#TOC65)
|
|
|
|
|
|
Important data structures
|
|
--------------------------
|
|
|
|
* [task_struct definition](http://lxr.free-electrons.com/source/include/linux/sched.h#L1274)
|
|
|
|
Other architectures
|
|
------------------------
|
|
|
|
* [PowerPC and Linux Kernel Inside](http://www.systemcomputing.org/ppc/)
|