2016-08-19 12:13:24 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2016 Intel Corporation
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
|
* Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-03-20 11:13:07 -07:00
|
|
|
#ifndef GEN_DECODER_H
|
|
|
|
|
#define GEN_DECODER_H
|
2016-08-19 12:13:24 -07:00
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
2016-10-04 16:19:43 +01:00
|
|
|
#include "common/gen_device_info.h"
|
2017-09-23 21:32:10 +01:00
|
|
|
#include "util/hash_table.h"
|
2016-10-04 16:19:43 +01:00
|
|
|
|
2017-09-27 20:57:28 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-08-19 12:13:24 -07:00
|
|
|
struct gen_spec;
|
|
|
|
|
struct gen_group;
|
|
|
|
|
struct gen_field;
|
2017-09-30 14:43:06 +01:00
|
|
|
union gen_field_value;
|
2016-08-19 12:13:24 -07:00
|
|
|
|
|
|
|
|
static inline uint32_t gen_make_gen(uint32_t major, uint32_t minor)
|
|
|
|
|
{
|
|
|
|
|
return (major << 8) | minor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct gen_group *gen_spec_find_struct(struct gen_spec *spec, const char *name);
|
2016-10-04 16:19:43 +01:00
|
|
|
struct gen_spec *gen_spec_load(const struct gen_device_info *devinfo);
|
2016-10-05 23:52:51 +01:00
|
|
|
struct gen_spec *gen_spec_load_from_path(const struct gen_device_info *devinfo,
|
|
|
|
|
const char *path);
|
2017-09-23 21:32:10 +01:00
|
|
|
void gen_spec_destroy(struct gen_spec *spec);
|
2016-08-19 12:13:24 -07:00
|
|
|
uint32_t gen_spec_get_gen(struct gen_spec *spec);
|
|
|
|
|
struct gen_group *gen_spec_find_instruction(struct gen_spec *spec, const uint32_t *p);
|
2016-09-09 11:22:59 +01:00
|
|
|
struct gen_group *gen_spec_find_register(struct gen_spec *spec, uint32_t offset);
|
2017-03-01 14:39:58 +00:00
|
|
|
struct gen_group *gen_spec_find_register_by_name(struct gen_spec *spec, const char *name);
|
2017-09-30 14:41:20 +01:00
|
|
|
struct gen_enum *gen_spec_find_enum(struct gen_spec *spec, const char *name);
|
|
|
|
|
|
2016-08-19 12:13:24 -07:00
|
|
|
int gen_group_get_length(struct gen_group *group, const uint32_t *p);
|
|
|
|
|
const char *gen_group_get_name(struct gen_group *group);
|
|
|
|
|
uint32_t gen_group_get_opcode(struct gen_group *group);
|
2017-09-30 14:43:06 +01:00
|
|
|
struct gen_field *gen_group_find_field(struct gen_group *group, const char *name);
|
2016-11-28 22:40:23 -08:00
|
|
|
struct gen_enum *gen_spec_find_enum(struct gen_spec *spec, const char *name);
|
2017-09-30 14:43:06 +01:00
|
|
|
|
2017-09-28 02:36:30 +01:00
|
|
|
bool gen_field_is_header(struct gen_field *field);
|
2016-08-19 12:13:24 -07:00
|
|
|
|
|
|
|
|
struct gen_field_iterator {
|
|
|
|
|
struct gen_group *group;
|
2017-05-30 20:06:48 +01:00
|
|
|
char name[128];
|
2016-08-19 12:13:24 -07:00
|
|
|
char value[128];
|
2017-12-13 08:23:50 -08:00
|
|
|
uint64_t raw_value;
|
2017-03-19 21:22:20 -07:00
|
|
|
struct gen_group *struct_desc;
|
2016-09-08 16:15:18 -07:00
|
|
|
const uint32_t *p;
|
2017-12-12 17:36:47 -08:00
|
|
|
int p_bit; /**< bit offset into p */
|
2017-08-03 14:50:35 +01:00
|
|
|
const uint32_t *p_end;
|
2017-12-12 16:51:54 -08:00
|
|
|
int bit; /**< current field starts at this bit offset into p */
|
2017-05-30 20:06:48 +01:00
|
|
|
|
|
|
|
|
int group_iter;
|
|
|
|
|
|
2017-04-02 15:54:14 +01:00
|
|
|
struct gen_field *field;
|
2016-10-14 17:04:50 +01:00
|
|
|
bool print_colors;
|
2016-08-19 12:13:24 -07:00
|
|
|
};
|
|
|
|
|
|
2017-09-22 18:00:25 +01:00
|
|
|
struct gen_spec {
|
|
|
|
|
uint32_t gen;
|
|
|
|
|
|
2017-09-23 21:32:10 +01:00
|
|
|
struct hash_table *commands;
|
|
|
|
|
struct hash_table *structs;
|
|
|
|
|
struct hash_table *registers_by_name;
|
|
|
|
|
struct hash_table *registers_by_offset;
|
|
|
|
|
struct hash_table *enums;
|
2017-09-30 14:43:06 +01:00
|
|
|
|
|
|
|
|
struct hash_table *access_cache;
|
2017-09-22 18:00:25 +01:00
|
|
|
};
|
|
|
|
|
|
2016-08-19 12:13:25 -07:00
|
|
|
struct gen_group {
|
2017-03-19 21:24:24 -07:00
|
|
|
struct gen_spec *spec;
|
2016-08-19 12:13:25 -07:00
|
|
|
char *name;
|
2017-05-30 20:06:48 +01:00
|
|
|
|
2017-08-02 19:31:08 +01:00
|
|
|
struct gen_field *fields; /* linked list of fields */
|
2017-05-30 20:06:48 +01:00
|
|
|
|
2017-09-26 00:54:49 +01:00
|
|
|
uint32_t dw_length;
|
2016-08-19 12:13:25 -07:00
|
|
|
uint32_t group_offset, group_count;
|
2017-04-18 09:41:40 -07:00
|
|
|
uint32_t group_size;
|
2017-05-30 20:06:48 +01:00
|
|
|
bool variable;
|
|
|
|
|
|
|
|
|
|
struct gen_group *parent;
|
|
|
|
|
struct gen_group *next;
|
2016-08-19 12:13:25 -07:00
|
|
|
|
|
|
|
|
uint32_t opcode_mask;
|
|
|
|
|
uint32_t opcode;
|
2016-09-09 11:22:59 +01:00
|
|
|
|
|
|
|
|
/* Register specific */
|
|
|
|
|
uint32_t register_offset;
|
2016-08-19 12:13:25 -07:00
|
|
|
};
|
|
|
|
|
|
2016-11-28 22:40:23 -08:00
|
|
|
struct gen_value {
|
|
|
|
|
char *name;
|
|
|
|
|
uint64_t value;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct gen_enum {
|
|
|
|
|
char *name;
|
|
|
|
|
int nvalues;
|
|
|
|
|
struct gen_value **values;
|
|
|
|
|
};
|
|
|
|
|
|
2016-08-19 12:13:25 -07:00
|
|
|
struct gen_type {
|
|
|
|
|
enum {
|
|
|
|
|
GEN_TYPE_UNKNOWN,
|
|
|
|
|
GEN_TYPE_INT,
|
|
|
|
|
GEN_TYPE_UINT,
|
|
|
|
|
GEN_TYPE_BOOL,
|
|
|
|
|
GEN_TYPE_FLOAT,
|
|
|
|
|
GEN_TYPE_ADDRESS,
|
|
|
|
|
GEN_TYPE_OFFSET,
|
|
|
|
|
GEN_TYPE_STRUCT,
|
|
|
|
|
GEN_TYPE_UFIXED,
|
|
|
|
|
GEN_TYPE_SFIXED,
|
2016-11-28 22:40:23 -08:00
|
|
|
GEN_TYPE_MBO,
|
|
|
|
|
GEN_TYPE_ENUM
|
2016-08-19 12:13:25 -07:00
|
|
|
} kind;
|
|
|
|
|
|
|
|
|
|
/* Struct definition for GEN_TYPE_STRUCT */
|
2016-11-28 22:40:23 -08:00
|
|
|
union {
|
|
|
|
|
struct gen_group *gen_struct;
|
|
|
|
|
struct gen_enum *gen_enum;
|
|
|
|
|
struct {
|
|
|
|
|
/* Integer and fractional sizes for GEN_TYPE_UFIXED and GEN_TYPE_SFIXED */
|
|
|
|
|
int i, f;
|
|
|
|
|
};
|
|
|
|
|
};
|
2016-08-19 12:13:25 -07:00
|
|
|
};
|
|
|
|
|
|
2017-09-30 14:43:06 +01:00
|
|
|
union gen_field_value {
|
|
|
|
|
bool b32;
|
|
|
|
|
float f32;
|
|
|
|
|
uint64_t u64;
|
|
|
|
|
int64_t i64;
|
|
|
|
|
};
|
|
|
|
|
|
2016-08-19 12:13:25 -07:00
|
|
|
struct gen_field {
|
2017-09-28 02:36:30 +01:00
|
|
|
struct gen_group *parent;
|
2017-08-02 19:31:08 +01:00
|
|
|
struct gen_field *next;
|
|
|
|
|
|
2016-08-19 12:13:25 -07:00
|
|
|
char *name;
|
|
|
|
|
int start, end;
|
|
|
|
|
struct gen_type type;
|
|
|
|
|
bool has_default;
|
|
|
|
|
uint32_t default_value;
|
2016-10-15 00:16:25 +01:00
|
|
|
|
2016-11-28 22:40:23 -08:00
|
|
|
struct gen_enum inline_enum;
|
2016-08-19 12:13:25 -07:00
|
|
|
};
|
|
|
|
|
|
2016-08-19 12:13:24 -07:00
|
|
|
void gen_field_iterator_init(struct gen_field_iterator *iter,
|
2016-10-14 17:04:50 +01:00
|
|
|
struct gen_group *group,
|
2017-12-12 17:36:47 -08:00
|
|
|
const uint32_t *p, int p_bit,
|
2016-10-14 17:04:50 +01:00
|
|
|
bool print_colors);
|
2016-08-19 12:13:24 -07:00
|
|
|
|
|
|
|
|
bool gen_field_iterator_next(struct gen_field_iterator *iter);
|
2016-10-11 18:26:26 +01:00
|
|
|
|
2017-03-19 22:11:52 -07:00
|
|
|
void gen_print_group(FILE *out,
|
|
|
|
|
struct gen_group *group,
|
2017-12-12 17:36:47 -08:00
|
|
|
uint64_t offset, const uint32_t *p, int p_bit,
|
2017-04-02 01:07:37 +01:00
|
|
|
bool color);
|
2017-03-19 22:11:52 -07:00
|
|
|
|
2017-09-27 20:57:28 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
2017-03-20 11:13:07 -07:00
|
|
|
#endif /* GEN_DECODER_H */
|