Changeset 371bd7d in mainline for kernel/arch/sparc64/include/drivers
- Timestamp:
- 2010-03-27T09:22:17Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 36a75a2
- Parents:
- cd82bb1 (diff), eaf22d4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- kernel/arch/sparc64/include/drivers
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/include/drivers/fhc.h
rcd82bb1 r371bd7d 36 36 #define KERN_sparc64_FHC_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <genarch/ofw/ofw_tree.h> 40 40 -
kernel/arch/sparc64/include/drivers/kbd.h
rcd82bb1 r371bd7d 36 36 #define KERN_sparc64_KBD_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <genarch/ofw/ofw_tree.h> 40 40 -
kernel/arch/sparc64/include/drivers/pci.h
rcd82bb1 r371bd7d 36 36 #define KERN_sparc64_PCI_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <genarch/ofw/ofw_tree.h> 40 40 #include <arch/arch.h> -
kernel/arch/sparc64/include/drivers/scr.h
rcd82bb1 r371bd7d 36 36 #define KERN_sparc64_SCR_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <genarch/ofw/ofw_tree.h> 40 40 -
kernel/arch/sparc64/include/drivers/sgcn.h
rcd82bb1 r371bd7d 36 36 #define KERN_sparc64_SGCN_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <console/chardev.h> 40 40 #include <proc/thread.h> -
kernel/arch/sparc64/include/drivers/tick.h
rcd82bb1 r371bd7d 36 36 #define KERN_sparc64_TICK_H_ 37 37 38 #include <arch/asm.h> 38 39 #include <arch/interrupt.h> 40 41 /* mask of the "counter" field of the Tick register */ 42 #define TICK_COUNTER_MASK (~(1l << 63)) 39 43 40 44 extern void tick_init(void); 41 45 extern void tick_interrupt(int n, istate_t *istate); 46 47 /** 48 * Reads the Tick register counter. 49 */ 50 static inline uint64_t tick_counter_read(void) 51 { 52 return TICK_COUNTER_MASK & tick_read(); 53 } 42 54 43 55 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
