1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
|
/*
* Copyright (C) 2005-2008 by Pieter Palmers
* Copyright (C) 2005-2008 by Daniel Wagner
* Copyright (C) 2008 by Jonathan Woithe
*
* This file is part of FFADO
* FFADO = Free FireWire (pro-)audio drivers for Linux
*
* FFADO is based upon FreeBoB
*
* 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) version 3 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "config.h"
#include <libraw1394/raw1394.h>
#include "libutil/ByteSwap.h"
#include "debugmodule/debugmodule.h"
#include "ffadodevice.h" // Needed for ffado_smartptr
#include "libieee1394/configrom.h"
#include "libieee1394/ieee1394service.h"
#include "libutil/Time.h"
#include <argp.h>
#include <cstdlib>
#include <iostream>
#include <cstring>
#include <memory>
using namespace std;
DECLARE_GLOBAL_DEBUG_MODULE;
#define MAX_ARGS 1000
#define SCAN_BASE_ADDR 0xfffff0000000ULL
// If changing these be sure to update the option help text
#define DEFAULT_SCAN_START_REG 0x0b00
#define DEFAULT_SCAN_LENGTH 0x0200
////////////////////////////////////////////////
// arg parsing
////////////////////////////////////////////////
const char *argp_program_version = "scan-devreg 0.1";
const char *argp_program_bug_address = "<ffado-devel@lists.sf.net>";
static char doc[] = "scan-devreg -- scan device registers for changes.";
static char args_doc[] = "NODE_ID";
static struct argp_option options[] = {
{"verbose", 'v', "LEVEL", 0, "Set verbose level" },
{"port", 'p', "PORT", 0, "Set port" },
{"node", 'n', "NODE", 0, "Set node" },
{"start", 's', "REG", 0, "Register to start scan at (default: 0x0b00)" },
{"length", 'l', "LENGTH", 0, "Number of bytes of register space to scan (default: 0x0200)" },
{"dump", 'd', NULL, 0, "Dump initial register values to stdout" },
{ 0 }
};
struct arguments
{
arguments()
: nargs ( 0 )
, verbose( 0 )
, test( false )
, port( -1 )
, node ( -1 )
, scan_start ( DEFAULT_SCAN_START_REG )
, scan_length ( DEFAULT_SCAN_LENGTH )
, dump ( 0 )
{
args[0] = 0;
}
char* args[MAX_ARGS];
int nargs;
signed int verbose;
bool test;
signed int port;
signed int node;
signed int scan_start;
signed int scan_length;
signed int dump;
} arguments;
// Parse a single option.
static error_t
parse_opt( int key, char* arg, struct argp_state* state )
{
// Get the input argument from `argp_parse', which we
// know is a pointer to our arguments structure.
struct arguments* arguments = ( struct arguments* ) state->input;
char* tail;
switch (key) {
case 'v':
errno = 0;
arguments->verbose = strtol(arg, &tail, 0);
if (errno) {
perror("argument parsing failed:");
return errno;
}
break;
case 't':
arguments->test = true;
break;
case 's':
errno = 0;
arguments->scan_start = strtol(arg, &tail, 0);
if (errno) {
perror("argument parsing failed:");
return errno;
}
if (arguments->scan_start < 0) {
fprintf(stderr, "Start of scan must be >= 0\n");
return -1;
}
break;
case 'l':
errno = 0;
arguments->scan_length = strtol(arg, &tail, 0);
if (errno) {
perror("argument parsing failed:");
return errno;
}
if (arguments->scan_length < 0) {
fprintf(stderr, "Scan length must be >= 0\n");
return -1;
}
break;
case 'd':
arguments->dump = 1;
break;
case 'p':
errno = 0;
arguments->port = strtol(arg, &tail, 0);
if (errno) {
perror("argument parsing failed:");
return errno;
}
break;
case 'n':
errno = 0;
arguments->node = strtol(arg, &tail, 0);
if (errno) {
perror("argument parsing failed:");
return errno;
}
break;
case ARGP_KEY_ARG:
if (state->arg_num >= MAX_ARGS) {
// Too many arguments.
argp_usage (state);
}
arguments->args[state->arg_num] = arg;
arguments->nargs++;
break;
case ARGP_KEY_END:
break;
default:
return ARGP_ERR_UNKNOWN;
}
return 0;
}
static struct argp argp = { options, parse_opt, args_doc, doc };
///////////////////////////
// main
//////////////////////////
int
main(int argc, char **argv)
{
signed int loop = 0;
char chr[100];
signed int node_id = -1;
signed int port = -1;
signed int n_ports = -1;
signed int p1, p2, n1, n2;
signed int initial_dump;
// arg parsing
if ( argp_parse ( &argp, argc, argv, 0, 0, &arguments ) ) {
fprintf( stderr, "Could not parse command line\n" );
exit(-1);
}
errno = 0;
setDebugLevel(arguments.verbose);
// Do a really basic scan to find an audio device on the bus
n_ports = Ieee1394Service::detectNbPorts();
if (arguments.port < 0) {
p1 = 0;
p2 = n_ports;
} else {
// Scan a specific port if given on the command line
p1 = p2 = arguments.port;
p2++;
}
printf("Scanning %d FireWire adapters (ports)\n", n_ports);
for (signed int i=p1; i<p2; i++) {
Ieee1394Service *tmp1394 = new Ieee1394Service();
if ( !tmp1394 ) {
debugFatal("Could not create Ieee1349Service for port %d\n", i);
return false;
}
tmp1394->setVerboseLevel(getDebugLevel());
if ( !tmp1394->initialize(i) ) {
delete tmp1394;
continue;
}
if (arguments.node < 0) {
n1 = 0;
n2 = tmp1394->getNodeCount();
} else {
// Scan a specific node if given on the command line
n1 = n2 = arguments.node;
n2++;
}
for (fb_nodeid_t node = n1; node < n2; node++) {
ffado_smartptr<ConfigRom> configRom =
ffado_smartptr<ConfigRom>( new ConfigRom(*tmp1394, node));
if (!configRom->initialize()) {
continue;
}
// Assume anything with suitable vendor IDs is an audio device.
// Stop at the first audio device found. Currently we detect
// only MOTU devices but this can be expanded on an as-needs
// basis.
if (configRom->getNodeVendorId() == 0x1f2) {
node_id = node;
port = i;
break;
}
}
delete tmp1394;
}
if (node_id == -1) {
printf("Could not find a target audio device on the FireWire bus\n");
return false;
}
printf("Targetting device at port %d, node %d\n", port, node_id);
Ieee1394Service *m_1394Service = new Ieee1394Service();
if ( !m_1394Service ) {
debugFatal( "Could not create Ieee1349Service object\n" );
return false;
}
m_1394Service->setVerboseLevel(getDebugLevel());
if ( !m_1394Service->initialize(port) ) {
// This initialise call should never fail since it worked during the
// scan. We live in a strange world though, so trap the error
// anyway.
debugFatal("Could not initialise ieee1394 on MOTU port\n");
delete m_1394Service;
return false;
}
quadlet_t old_vals[arguments.scan_length/4+1], quadlet;
char present[arguments.scan_length/(4*32)+1];
memset(old_vals, 0x00, sizeof(old_vals));
// Assume all registers are present until proven otherwise
memset(present, 0xff, sizeof(present));
printf("Scanning from %012llX to %012llX (len: %d)\n",
SCAN_BASE_ADDR + arguments.scan_start,
SCAN_BASE_ADDR + arguments.scan_start + arguments.scan_length,
arguments.scan_length);
printf("Scanning initial register values, please wait\n");
chr[0] = 0;
initial_dump = arguments.dump;
while(chr[0]!='q') {
for (signed int reg=arguments.scan_start;
reg < arguments.scan_start + arguments.scan_length; reg+=4) {
unsigned int reg_index = (reg - arguments.scan_start)/4;
unsigned int pres_index = (reg - arguments.scan_start)/(4*32);
unsigned int pres_bit = ((reg - arguments.scan_start)/4) & 0x1f;
if (!(present[pres_index] & (1<<pres_bit))) {
continue;
}
if (m_1394Service->read(0xffc0 | node_id, SCAN_BASE_ADDR+reg, 1, &quadlet) <= 0) {
// Flag the register as not being present so we don't keep trying to read it
present[pres_index] &= ~(1<<pres_bit);
// printf("Register %012llX: failed\n", SCAN_BASE_ADDR+reg);
continue;
} else {
quadlet = CondSwapFromBus32(quadlet);
}
if (initial_dump) {
printf("0x%04x is %08X\n", reg, quadlet);
}
if (old_vals[reg_index] != quadlet) {
if (loop != 0) {
printf("0x%04x changed from %08X to %08X\n", reg, old_vals[reg_index], quadlet);
}
old_vals[reg_index] = quadlet;
}
}
initial_dump = 0;
printf("Press <Enter> to scan, \"q<Enter>\" to exit\n");
fgets(chr, sizeof(chr), stdin);
loop++;
}
delete m_1394Service;
return 0;
}
|