2013-06-12 23:50:14 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 by Amaury Pouly
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2014-12-14 10:53:55 +00:00
|
|
|
#ifndef __SOC_DESC_V1__
|
|
|
|
#define __SOC_DESC_V1__
|
2013-06-12 23:50:14 +00:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <vector>
|
2014-02-09 01:07:33 +00:00
|
|
|
#include <list>
|
2013-06-12 23:50:14 +00:00
|
|
|
#include <string>
|
2014-04-07 09:28:04 +00:00
|
|
|
#include <map>
|
2013-06-12 23:50:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* These data structures represent the SoC register in a convenient way.
|
|
|
|
* The basic structure is the following:
|
|
|
|
* - each SoC has several devices
|
|
|
|
* - each device has a generic name, a list of {name,address} and several registers
|
|
|
|
* - each register has a generic name, a list of {name,address}, flags,
|
|
|
|
* several fields
|
|
|
|
* - each field has a name, a first and last bit position, can apply either
|
|
|
|
* to all addresses of a register or be specific to one only and has several values
|
|
|
|
* - each field value has a name and a value
|
|
|
|
*
|
|
|
|
* All addresses, values and names are relative to the parents. For example a field
|
|
|
|
* value BV_LCDIF_CTRL_WORD_LENGTH_18_BIT is represented has:
|
|
|
|
* - device LCDIF, register CTRL, field WORD_LENGTH, value 16_BIT
|
|
|
|
* The address of CTRL is related to the address of LCDIF, the value of 16_BIT
|
|
|
|
* ignores the position of the WORD_LENGTH field in the register.
|
|
|
|
*/
|
|
|
|
|
2014-12-14 10:53:55 +00:00
|
|
|
namespace soc_desc_v1
|
|
|
|
{
|
2014-05-01 22:32:41 +00:00
|
|
|
|
2014-12-14 10:53:55 +00:00
|
|
|
const size_t MAJOR_VERSION = 1;
|
|
|
|
const size_t MINOR_VERSION = 4;
|
|
|
|
const size_t REVISION_VERSION = 1;
|
2014-05-01 22:32:41 +00:00
|
|
|
|
2013-06-12 23:50:14 +00:00
|
|
|
/**
|
|
|
|
* Typedef for SoC types: word, address and flags */
|
|
|
|
typedef uint32_t soc_addr_t;
|
|
|
|
typedef uint32_t soc_word_t;
|
|
|
|
typedef uint32_t soc_reg_flags_t;
|
|
|
|
|
2014-04-07 09:28:04 +00:00
|
|
|
/** SoC error gravity level */
|
|
|
|
enum soc_error_level_t
|
|
|
|
{
|
|
|
|
SOC_ERROR_WARNING,
|
|
|
|
SOC_ERROR_FATAL,
|
|
|
|
};
|
|
|
|
|
|
|
|
/** SoC description error */
|
|
|
|
struct soc_error_t
|
|
|
|
{
|
|
|
|
soc_error_level_t level; /// level (warning, fatal, ...)
|
|
|
|
std::string location; /// human description of the location
|
|
|
|
std::string message; /// message
|
|
|
|
};
|
|
|
|
|
2013-06-12 23:50:14 +00:00
|
|
|
/** SoC register generic formula */
|
|
|
|
enum soc_reg_formula_type_t
|
|
|
|
{
|
|
|
|
REG_FORMULA_NONE, /// register has no generic formula
|
|
|
|
REG_FORMULA_STRING, /// register has a generic formula represented by a string
|
|
|
|
};
|
|
|
|
|
|
|
|
/** <soc_reg_t>.<flags> values */
|
|
|
|
const soc_reg_flags_t REG_HAS_SCT = 1 << 0; /// register SCT variants
|
|
|
|
|
|
|
|
/** SoC register field named value */
|
|
|
|
struct soc_reg_field_value_t
|
|
|
|
{
|
2014-04-04 13:33:39 +00:00
|
|
|
std::string name; /// name of the value
|
|
|
|
soc_word_t value; /// numeric value
|
|
|
|
std::string desc; /// human description
|
2014-04-07 09:28:04 +00:00
|
|
|
|
|
|
|
std::vector< soc_error_t > errors(bool recursive);
|
2013-06-12 23:50:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/** SoC register field */
|
|
|
|
struct soc_reg_field_t
|
|
|
|
{
|
2014-04-04 13:33:39 +00:00
|
|
|
std::string name; /// name of the field
|
|
|
|
std::string desc; /// human description
|
|
|
|
unsigned first_bit, last_bit; /// bit range of the field
|
2013-06-12 23:50:14 +00:00
|
|
|
|
2014-05-11 17:50:28 +00:00
|
|
|
soc_reg_field_t():first_bit(0), last_bit(31) {}
|
|
|
|
|
2014-10-22 15:51:09 +00:00
|
|
|
/** Return field bitmask in register */
|
2013-06-12 23:50:14 +00:00
|
|
|
soc_word_t bitmask() const
|
|
|
|
{
|
|
|
|
// WARNING beware of the case where first_bit=0 and last_bit=31
|
|
|
|
if(first_bit == 0 && last_bit == 31)
|
|
|
|
return 0xffffffff;
|
|
|
|
else
|
|
|
|
return ((1 << (last_bit - first_bit + 1)) - 1) << first_bit;
|
|
|
|
}
|
|
|
|
|
2014-10-22 15:51:09 +00:00
|
|
|
/** Extract field value from register value */
|
|
|
|
soc_word_t extract(soc_word_t reg_val) const
|
|
|
|
{
|
|
|
|
return (reg_val & bitmask()) >> first_bit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Replace the field value in a register value */
|
|
|
|
soc_word_t replace(soc_word_t reg_val, soc_word_t field_val) const
|
|
|
|
{
|
|
|
|
return (reg_val & ~bitmask()) | ((field_val << first_bit) & bitmask());
|
|
|
|
}
|
|
|
|
|
2013-06-12 23:50:14 +00:00
|
|
|
bool is_reserved() const
|
|
|
|
{
|
|
|
|
return name.substr(0, 4) == "RSVD" || name.substr(0, 5) == "RSRVD";
|
|
|
|
}
|
|
|
|
|
2014-10-22 15:51:09 +00:00
|
|
|
/** Return field value index, or -1 if none */
|
|
|
|
int find_value(soc_word_t v) const
|
|
|
|
{
|
|
|
|
for(size_t i = 0; i < value.size(); i++)
|
|
|
|
if(value[i].value == v)
|
|
|
|
return i;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-06-12 23:50:14 +00:00
|
|
|
std::vector< soc_reg_field_value_t > value;
|
2014-04-07 09:28:04 +00:00
|
|
|
|
|
|
|
std::vector< soc_error_t > errors(bool recursive);
|
2013-06-12 23:50:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/** SoC register address */
|
|
|
|
struct soc_reg_addr_t
|
|
|
|
{
|
|
|
|
std::string name; /// actual register name
|
2014-04-04 13:33:39 +00:00
|
|
|
soc_addr_t addr; /// actual register address (relative to device)
|
2014-04-07 09:28:04 +00:00
|
|
|
|
|
|
|
std::vector< soc_error_t > errors(bool recursive);
|
2013-06-12 23:50:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/** SoC register formula */
|
|
|
|
struct soc_reg_formula_t
|
|
|
|
{
|
|
|
|
enum soc_reg_formula_type_t type;
|
|
|
|
std::string string; /// for STRING
|
2014-04-07 09:28:04 +00:00
|
|
|
|
|
|
|
std::vector< soc_error_t > errors(bool recursive);
|
2013-06-12 23:50:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/** SoC register */
|
|
|
|
struct soc_reg_t
|
|
|
|
{
|
|
|
|
std::string name; /// generic name (for multi registers) or actual name
|
2014-04-04 13:33:39 +00:00
|
|
|
std::string desc; /// human description
|
|
|
|
std::vector< soc_reg_addr_t > addr; /// instances of the registers
|
|
|
|
soc_reg_formula_t formula; /// formula for the instance addresses
|
2013-06-12 23:50:14 +00:00
|
|
|
soc_reg_flags_t flags; /// ORed value
|
|
|
|
|
|
|
|
std::vector< soc_reg_field_t > field;
|
2014-04-07 09:28:04 +00:00
|
|
|
|
|
|
|
std::vector< soc_error_t > errors(bool recursive);
|
2013-06-12 23:50:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/** Soc device address */
|
|
|
|
struct soc_dev_addr_t
|
|
|
|
{
|
|
|
|
std::string name; /// actual device name
|
|
|
|
soc_addr_t addr;
|
2014-04-07 09:28:04 +00:00
|
|
|
|
|
|
|
std::vector< soc_error_t > errors(bool recursive);
|
2013-06-12 23:50:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/** SoC device */
|
|
|
|
struct soc_dev_t
|
|
|
|
{
|
|
|
|
std::string name; /// generic name (of multi devices) or actual name
|
2014-04-04 13:33:39 +00:00
|
|
|
std::string long_name; /// human friendly name
|
|
|
|
std::string desc; /// human description
|
2013-06-12 23:50:14 +00:00
|
|
|
std::string version; /// description version
|
|
|
|
std::vector< soc_dev_addr_t > addr;
|
|
|
|
|
|
|
|
std::vector< soc_reg_t > reg;
|
2014-04-07 09:28:04 +00:00
|
|
|
|
|
|
|
std::vector< soc_error_t > errors(bool recursive);
|
2013-06-12 23:50:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/** SoC */
|
|
|
|
struct soc_t
|
|
|
|
{
|
|
|
|
std::string name; /// codename (rockbox)
|
|
|
|
std::string desc; /// SoC name
|
|
|
|
|
|
|
|
std::vector< soc_dev_t > dev;
|
2014-04-07 09:28:04 +00:00
|
|
|
|
|
|
|
std::vector< soc_error_t > errors(bool recursive);
|
2013-06-12 23:50:14 +00:00
|
|
|
};
|
|
|
|
|
2014-04-07 09:28:04 +00:00
|
|
|
/** Parse a SoC description from a XML file, append it to <soc>. */
|
2014-12-14 10:53:55 +00:00
|
|
|
bool parse_xml(const std::string& filename, soc_t& soc);
|
2014-04-07 09:28:04 +00:00
|
|
|
/** Write a SoC description to a XML file, overwriting it. A file can contain
|
|
|
|
* multiple Soc descriptions */
|
2014-12-14 10:53:55 +00:00
|
|
|
bool produce_xml(const std::string& filename, const soc_t& soc);
|
2016-02-06 15:01:24 +00:00
|
|
|
/** Normalise a soc description by reordering elements so that:
|
2014-04-07 09:28:04 +00:00
|
|
|
* - devices are sorted by first name
|
|
|
|
* - registers are sorted by first address
|
|
|
|
* - fields are sorted by last bit
|
|
|
|
* - values are sorted by value */
|
2014-12-14 10:53:55 +00:00
|
|
|
void normalize(soc_t& soc);
|
|
|
|
/** Formula parser: try to parse and evaluate a formula with some variables */
|
|
|
|
bool evaluate_formula(const std::string& formula,
|
|
|
|
const std::map< std::string, soc_word_t>& var, soc_word_t& result,
|
|
|
|
std::string& error);
|
|
|
|
|
|
|
|
} // soc_desc_v1
|
2013-06-12 23:50:14 +00:00
|
|
|
|
2014-12-14 10:53:55 +00:00
|
|
|
#endif /* __SOC_DESC_V1__ */
|