Changeset 8e7c9fe in mainline for uspace/srv/hw/irc/icp-ic/icp-ic_hw.h
- Timestamp:
- 2014-09-12T03:45:25Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c53b58e
- Parents:
- 3eb0c85 (diff), 105d8d6 (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. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hw/irc/icp-ic/icp-ic_hw.h
r3eb0c85 r8e7c9fe 1 1 /* 2 * Copyright (c) 201 1Jiri Svoboda2 * Copyright (c) 2014 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libcmips6429 /** @addtogroup pl050 30 30 * @{ 31 31 */ 32 /** @file 32 /** @file ARM PrimeCell PS2 Keyboard/Mouse Interface (PL050) registers 33 33 */ 34 34 35 #ifndef LIBC_mips64_ELF_LINUX_H_36 #define LBIC_mips64_ELF_LINUX_H_35 #ifndef ICP_IC_HW_H 36 #define ICP_IC_HW_H 37 37 38 #include < libarch/istate.h>38 #include <ddi.h> 39 39 #include <sys/types.h> 40 40 41 41 typedef struct { 42 /* TODO */ 43 uint64_t pad[16]; 44 } elf_regs_t; 45 46 static inline void istate_to_elf_regs(istate_t *istate, elf_regs_t *elf_regs) 47 { 48 /* TODO */ 49 (void) istate; (void) elf_regs; 50 } 42 ioport32_t irq_status; 43 ioport32_t irq_rawstat; 44 ioport32_t irq_enableset; 45 ioport32_t irq_enableclr; 46 ioport32_t int_softset; 47 ioport32_t int_softclr; 48 ioport32_t fiq_status; 49 ioport32_t fiq_rawstat; 50 ioport32_t fiq_enableset; 51 ioport32_t fiq_enableclr; 52 } icpic_regs_t; 51 53 52 54 #endif
Note:
See TracChangeset
for help on using the changeset viewer.