[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [RFC PATCH 06/19] xen/arm: its: Add helper functions to decode ITS Command
From: Vijaya Kumar K <Vijaya.Kumar@xxxxxxxxxxxxxxxxxx> Add helper functions to decode ITS command This will be useful for Virtual ITS driver Signed-off-by: Vijaya Kumar K <Vijaya.Kumar@xxxxxxxxxxxxxxxxxx> --- xen/include/asm-arm/gic-its.h | 45 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/xen/include/asm-arm/gic-its.h b/xen/include/asm-arm/gic-its.h index 099ed9c..ff13c91 100644 --- a/xen/include/asm-arm/gic-its.h +++ b/xen/include/asm-arm/gic-its.h @@ -29,6 +29,51 @@ struct its_cmd_block { u64 raw_cmd[4]; }; +static inline uint8_t its_decode_cmd(struct its_cmd_block *cmd) +{ + return cmd->raw_cmd[0] & 0xff; +} + +static inline uint32_t its_decode_devid(struct domain *d, struct its_cmd_block *cmd) +{ + return (cmd->raw_cmd[0] >> 32); +} + +static inline uint32_t its_decode_event_id(struct its_cmd_block *cmd) +{ + return (uint32_t)cmd->raw_cmd[1]; +} + +static inline uint32_t its_decode_phys_id(struct its_cmd_block *cmd) +{ + return cmd->raw_cmd[1] >> 32; +} + +static inline uint8_t its_decode_size(struct its_cmd_block *cmd) +{ + return (u8)(cmd->raw_cmd[1] & 0xff); +} + +static inline uint64_t its_decode_itt(struct its_cmd_block *cmd) +{ + return (cmd->raw_cmd[2] & 0xffffffffff00ULL); +} + +static inline int its_decode_valid(struct its_cmd_block *cmd) +{ + return cmd->raw_cmd[2] >> 63; +} + +static inline uint64_t its_decode_target(struct its_cmd_block *cmd) +{ + return (cmd->raw_cmd[2] & 0xffffffff0000ULL); +} + +static inline u16 its_decode_collection(struct its_cmd_block *cmd) +{ + return (u16)(cmd->raw_cmd[2] & 0xffffULL); +} + static inline void its_encode_cmd(struct its_cmd_block *cmd, u8 cmd_nr) { cmd->raw_cmd[0] &= ~0xffULL; -- 1.7.9.5 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |