Changeset d99c1d2 in mainline for kernel/genarch
- Timestamp:
- 2010-03-23T14:41:06Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1b1164e8
- Parents:
- 7c682dd1
- Location:
- kernel/genarch
- Files:
-
- 30 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/include/acpi/acpi.h
r7c682dd1 rd99c1d2 36 36 #define KERN_ACPI_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 40 40 /* Root System Description Pointer */ -
kernel/genarch/include/drivers/dsrln/dsrlnin.h
r7c682dd1 rd99c1d2 39 39 40 40 #include <ddi/irq.h> 41 #include <arch/types.h>42 41 #include <console/chardev.h> 43 42 #include <typedefs.h> -
kernel/genarch/include/drivers/dsrln/dsrlnout.h
r7c682dd1 rd99c1d2 38 38 #define KERN_DSRLNOUT_H_ 39 39 40 #include <arch/types.h>41 40 #include <typedefs.h> 42 41 #include <console/chardev.h> -
kernel/genarch/include/drivers/ega/ega.h
r7c682dd1 rd99c1d2 36 36 #define KERN_EGA_H_ 37 37 38 #include <arch/types.h>39 38 #include <typedefs.h> 40 39 #include <console/chardev.h> -
kernel/genarch/include/drivers/i8042/i8042.h
r7c682dd1 rd99c1d2 37 37 38 38 #include <ddi/irq.h> 39 #include <arch/types.h>40 39 #include <console/chardev.h> 41 40 #include <typedefs.h> -
kernel/genarch/include/drivers/legacy/ia32/io.h
r7c682dd1 rd99c1d2 38 38 #define KERN_LEGACY_IA32_IO_H 39 39 40 #include < arch/types.h>40 #include <typedefs.h> 41 41 42 42 #define I8042_BASE ((ioport8_t *) 0x60) -
kernel/genarch/include/drivers/ns16550/ns16550.h
r7c682dd1 rd99c1d2 39 39 40 40 #include <ddi/irq.h> 41 #include < arch/types.h>41 #include <typedefs.h> 42 42 #include <console/chardev.h> 43 43 -
kernel/genarch/include/drivers/pl050/pl050.h
r7c682dd1 rd99c1d2 42 42 43 43 #include <ddi/irq.h> 44 #include <arch/types.h>45 44 #include <console/chardev.h> 46 45 #include <typedefs.h> -
kernel/genarch/include/drivers/via-cuda/cuda.h
r7c682dd1 rd99c1d2 37 37 38 38 #include <ddi/irq.h> 39 #include < arch/types.h>39 #include <typedefs.h> 40 40 #include <console/chardev.h> 41 41 #include <synch/spinlock.h> -
kernel/genarch/include/drivers/z8530/z8530.h
r7c682dd1 rd99c1d2 39 39 40 40 #include <ddi/irq.h> 41 #include < arch/types.h>41 #include <typedefs.h> 42 42 #include <console/chardev.h> 43 43 -
kernel/genarch/include/fb/fb.h
r7c682dd1 rd99c1d2 36 36 #define KERN_FB_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <console/chardev.h> 40 40 #include <genarch/fb/visuals.h> -
kernel/genarch/include/fb/logo-196x66.h
r7c682dd1 rd99c1d2 40 40 #define LOGO_COLOR 0xffffff 41 41 42 #include < arch/types.h>42 #include <typedefs.h> 43 43 44 44 extern uint32_t fb_logo[LOGO_WIDTH * LOGO_HEIGHT]; -
kernel/genarch/include/mm/as_ht.h
r7c682dd1 rd99c1d2 38 38 #include <mm/mm.h> 39 39 #include <adt/list.h> 40 #include < arch/types.h>40 #include <typedefs.h> 41 41 42 42 typedef struct { -
kernel/genarch/include/mm/page_ht.h
r7c682dd1 rd99c1d2 40 40 #define KERN_PAGE_HT_H_ 41 41 42 #include < arch/types.h>42 #include <typedefs.h> 43 43 #include <mm/as.h> 44 44 #include <mm/page.h> -
kernel/genarch/include/mm/page_pt.h
r7c682dd1 rd99c1d2 47 47 #include <mm/page.h> 48 48 #include <arch/mm/page.h> 49 #include < arch/types.h>49 #include <typedefs.h> 50 50 51 51 /* -
kernel/genarch/include/multiboot/multiboot.h
r7c682dd1 rd99c1d2 36 36 #define KERN_MULTIBOOT_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <arch/boot/memmap.h> 40 40 -
kernel/genarch/include/ofw/ebus.h
r7c682dd1 rd99c1d2 31 31 32 32 #include <genarch/ofw/ofw_tree.h> 33 #include < arch/types.h>33 #include <typedefs.h> 34 34 #include <ddi/irq.h> 35 35 #include <typedefs.h> -
kernel/genarch/include/ofw/fhc.h
r7c682dd1 rd99c1d2 31 31 32 32 #include <genarch/ofw/ofw_tree.h> 33 #include < arch/types.h>33 #include <typedefs.h> 34 34 #include <ddi/irq.h> 35 35 #include <typedefs.h> -
kernel/genarch/include/ofw/ofw_tree.h
r7c682dd1 rd99c1d2 30 30 #define KERN_OFW_TREE_H_ 31 31 32 #include <arch/types.h>33 32 #include <typedefs.h> 34 33 -
kernel/genarch/include/ofw/pci.h
r7c682dd1 rd99c1d2 31 31 32 32 #include <genarch/ofw/ofw_tree.h> 33 #include < arch/types.h>33 #include <typedefs.h> 34 34 #include <ddi/irq.h> 35 35 #include <typedefs.h> -
kernel/genarch/include/ofw/sbus.h
r7c682dd1 rd99c1d2 31 31 32 32 #include <genarch/ofw/ofw_tree.h> 33 #include < arch/types.h>33 #include <typedefs.h> 34 34 #include <ddi/irq.h> 35 35 #include <typedefs.h> -
kernel/genarch/include/ofw/upa.h
r7c682dd1 rd99c1d2 31 31 32 32 #include <genarch/ofw/ofw_tree.h> 33 #include < arch/types.h>33 #include <typedefs.h> 34 34 #include <ddi/irq.h> 35 35 #include <typedefs.h> -
kernel/genarch/src/acpi/madt.c
r7c682dd1 rd99c1d2 35 35 */ 36 36 37 #include < arch/types.h>37 #include <typedefs.h> 38 38 #include <genarch/acpi/acpi.h> 39 39 #include <genarch/acpi/madt.h> -
kernel/genarch/src/drivers/ega/ega.c
r7c682dd1 rd99c1d2 42 42 #include <arch/mm/page.h> 43 43 #include <synch/spinlock.h> 44 #include < arch/types.h>44 #include <typedefs.h> 45 45 #include <arch/asm.h> 46 46 #include <memstr.h> -
kernel/genarch/src/fb/fb.c
r7c682dd1 rd99c1d2 51 51 #include <str.h> 52 52 #include <ddi/ddi.h> 53 #include < arch/types.h>53 #include <typedefs.h> 54 54 #include <byteorder.h> 55 55 -
kernel/genarch/src/mm/as_ht.c
r7c682dd1 rd99c1d2 41 41 #include <mm/as.h> 42 42 #include <mm/frame.h> 43 #include < arch/types.h>43 #include <typedefs.h> 44 44 #include <memstr.h> 45 45 #include <adt/hash_table.h> -
kernel/genarch/src/mm/as_pt.c
r7c682dd1 rd99c1d2 43 43 #include <arch/mm/page.h> 44 44 #include <arch/mm/as.h> 45 #include < arch/types.h>45 #include <typedefs.h> 46 46 #include <memstr.h> 47 47 #include <arch.h> -
kernel/genarch/src/mm/page_ht.c
r7c682dd1 rd99c1d2 43 43 #include <mm/as.h> 44 44 #include <arch/mm/asid.h> 45 #include < arch/types.h>45 #include <typedefs.h> 46 46 #include <arch/asm.h> 47 47 #include <synch/spinlock.h> -
kernel/genarch/src/mm/page_pt.c
r7c682dd1 rd99c1d2 42 42 #include <arch/mm/page.h> 43 43 #include <arch/mm/as.h> 44 #include < arch/types.h>44 #include <typedefs.h> 45 45 #include <arch/asm.h> 46 46 #include <memstr.h> -
kernel/genarch/src/multiboot/multiboot.c
r7c682dd1 rd99c1d2 34 34 35 35 #include <genarch/multiboot/multiboot.h> 36 #include <arch/types.h>37 36 #include <typedefs.h> 38 37 #include <config.h>
Note:
See TracChangeset
for help on using the changeset viewer.