From 7143ea681c377fe5901bd79801366a26ae0d394a Mon Sep 17 00:00:00 2001 From: Amaury Pouly Date: Wed, 12 Jun 2013 19:49:26 +0200 Subject: imxtools: move regtools to its own directory The register tools are in no way stmp specific. The XML description of the registers is powerful enough to describe the STMP register which should be more than enough to describe virtually all other SoCs. The generators follow the STMP coding convention but others could be used as well. Change-Id: If1a9f56e4a3594161688de34adbea698e5aaecd8 --- utils/imxtools/regtools/tester.cpp | 126 ------------------------------------- 1 file changed, 126 deletions(-) delete mode 100644 utils/imxtools/regtools/tester.cpp (limited to 'utils/imxtools/regtools/tester.cpp') diff --git a/utils/imxtools/regtools/tester.cpp b/utils/imxtools/regtools/tester.cpp deleted file mode 100644 index a46d310f2a..0000000000 --- a/utils/imxtools/regtools/tester.cpp +++ /dev/null @@ -1,126 +0,0 @@ -/*************************************************************************** - * __________ __ ___. - * Open \______ \ ____ ____ | | _\_ |__ _______ ___ - * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / - * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < - * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ - * \/ \/ \/ \/ \/ - * $Id$ - * - * Copyright (C) 2002 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. - * - ****************************************************************************/ -#include "desc_parser.hpp" -#include -#include - -void print_value_desc(const soc_reg_field_value_t& value) -{ - printf(" VALUE %s (%#x)\n", value.name.c_str(), value.value); -} - -void print_field_desc(const soc_reg_field_t& field) -{ - printf(" FIELD %s (%d:%d)\n", field.name.c_str(), field.last_bit, - field.first_bit); - for(size_t i = 0; i < field.values.size(); i++) - print_value_desc(field.values[i]); -} - -std::string compute_sct(soc_reg_flags_t f) -{ - if(f & REG_HAS_SCT) return "SCT"; - else return ""; -} - -void print_reg_desc(const soc_reg_t& reg, bool in_multi) -{ - if(in_multi) - { - printf(" REG %s (%#x)\n", reg.name.c_str(), reg.addr); - } - else - { - std::string sct = compute_sct(reg.flags); - printf(" REG %s %s(%#x)\n", reg.name.c_str(), sct.c_str(), reg.addr); - for(size_t i = 0; i < reg.fields.size(); i++) - print_field_desc(reg.fields[i]); - } -} - -void print_multireg_desc(const soc_multireg_t& mreg) -{ - std::string sct = compute_sct(mreg.flags); - printf(" MULTIREG %s %s(%#x * %d, +%#x)\n", mreg.name.c_str(), sct.c_str(), - mreg.base, mreg.count, mreg.offset); - for(size_t i = 0; i < mreg.regs.size(); i++) - print_reg_desc(mreg.regs[i], true); - for(size_t i = 0; i < mreg.fields.size(); i++) - print_field_desc(mreg.fields[i]); -} - - -void print_dev_desc(const soc_dev_t& dev, bool in_multi) -{ - if(in_multi) - { - printf(" DEV %s (%#x)\n", dev.name.c_str(), dev.addr); - } - else - { - printf(" DEV %s (%#x, %s, %s)\n", dev.name.c_str(), dev.addr, - dev.long_name.c_str(), dev.desc.c_str()); - for(size_t i = 0; i < dev.multiregs.size(); i++) - print_multireg_desc(dev.multiregs[i]); - for(size_t i = 0; i < dev.regs.size(); i++) - print_reg_desc(dev.regs[i], false); - } -} - -void print_multidev_desc(const soc_multidev_t& dev) -{ - printf(" MULTIDEV %s (%s, %s)\n", dev.name.c_str(), dev.long_name.c_str(), - dev.desc.c_str()); - for(size_t i = 0; i < dev.devs.size(); i++) - print_dev_desc(dev.devs[i], true); - for(size_t i = 0; i < dev.multiregs.size(); i++) - print_multireg_desc(dev.multiregs[i]); - for(size_t i = 0; i < dev.regs.size(); i++) - print_reg_desc(dev.regs[i], false); -} - -void print_soc_desc(const soc_t& soc) -{ - printf("SOC %s (%s)\n", soc.name.c_str(), soc.desc.c_str()); - for(size_t i = 0; i < soc.devs.size(); i++) - print_dev_desc(soc.devs[i], false); - for(size_t i = 0; i < soc.multidevs.size(); i++) - print_multidev_desc(soc.multidevs[i]); -} - -void usage() -{ - printf("usage: tester \n"); - exit(1); -} - -int main(int argc, char **argv) -{ - if(argc != 2) - usage(); - std::vector< soc_t > socs; - bool ret = parse_soc_desc(argv[1], socs); - printf("parse result: %d\n", ret); - if(ret) - for(size_t i = 0; i < socs.size(); i++) - print_soc_desc(socs[i]); - return 0; -} \ No newline at end of file -- cgit v1.2.3