Changeset a35b458 in mainline for kernel/genarch/include
- Timestamp:
- 2018-03-02T20:10:49Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f1380b7
- Parents:
- 3061bc1
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:38:31)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:10:49)
- Location:
- kernel/genarch/include/genarch
- Files:
-
- 6 edited
-
fb/fb.h (modified) (2 diffs)
-
kbrd/kbrd.h (modified) (1 diff)
-
ofw/ebus.h (modified) (1 diff)
-
ofw/ofw_tree.h (modified) (1 diff)
-
ofw/pci.h (modified) (2 diffs)
-
srln/srln.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/include/genarch/fb/fb.h
r3061bc1 ra35b458 46 46 /** Physical address of the framebuffer device. */ 47 47 uintptr_t addr; 48 48 49 49 /** 50 50 * Address where the first (top left) pixel is mapped, … … 52 52 */ 53 53 unsigned int offset; 54 54 55 55 /** Screen width in pixels. */ 56 56 unsigned int x; 57 57 58 58 /** Screen height in pixels. */ 59 59 unsigned int y; 60 60 61 61 /** Bytes per one scanline. */ 62 62 unsigned int scan; 63 63 64 64 /** Color model. */ 65 65 visual_t visual; -
kernel/genarch/include/genarch/kbrd/kbrd.h
r3061bc1 ra35b458 43 43 typedef struct { 44 44 thread_t *thread; 45 45 46 46 indev_t *sink; 47 47 indev_t raw; 48 48 49 49 SPINLOCK_DECLARE(keylock); /**< keylock protects keyflags and lockflags. */ 50 50 volatile unsigned int keyflags; /**< Tracking of multiple keypresses. */ -
kernel/genarch/include/genarch/ofw/ebus.h
r3061bc1 ra35b458 45 45 uint32_t child_base; 46 46 uint32_t parent_space; 47 47 48 48 /* Group phys.mid and phys.lo together */ 49 49 uint64_t parent_base; -
kernel/genarch/include/genarch/ofw/ofw_tree.h
r3061bc1 ra35b458 49 49 struct ofw_tree_node *peer; 50 50 struct ofw_tree_node *child; 51 51 52 52 phandle node_handle; /**< Old OpenFirmware node handle. */ 53 53 54 54 char *da_name; /**< Disambigued name. */ 55 55 56 56 size_t properties; /**< Number of properties. */ 57 57 ofw_tree_property_t *property; 58 58 59 59 /** 60 60 * Pointer to a structure representing respective device. -
kernel/genarch/include/genarch/ofw/pci.h
r3061bc1 ra35b458 38 38 /* Needs to be masked to obtain pure space id */ 39 39 uint32_t space; 40 40 41 41 /* Group phys.mid and phys.lo together */ 42 42 uint64_t addr; … … 46 46 typedef struct { 47 47 uint32_t space; 48 48 49 49 /* Group phys.mid and phys.lo together */ 50 50 uint64_t child_base; -
kernel/genarch/include/genarch/srln/srln.h
r3061bc1 ra35b458 42 42 typedef struct { 43 43 thread_t *thread; 44 44 45 45 indev_t *sink; 46 46 indev_t raw;
Note:
See TracChangeset
for help on using the changeset viewer.
