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
|
/* plugreport.c v0.2
* A program to read all MPR/PCR registers from all devices and report them.
* Copyright 2002-2004 Dan Dennedy
*
* 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 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 Library General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* standard system includes */
#include <unistd.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <netinet/in.h>
/* linux1394 includes */
#include <libraw1394/raw1394.h>
#include <libraw1394/csr.h>
#include "../src/iec61883.h"
/************ DECLARE PRIVATE INTERFACE BITS OF LIBIEC61883!! **************/
/* standard CSR offsets for plugs */
#define CSR_O_MPR 0x900
#define CSR_O_PCR_0 0x904
#define CSR_O_PCR_1 0x908
#define CSR_O_PCR_2 0x90C
#define CSR_O_PCR_3 0x910
#define CSR_I_MPR 0x980
#define CSR_I_PCR_0 0x984
#define CSR_I_PCR_1 0x988
#define CSR_I_PCR_2 0x98C
#define CSR_I_PCR_3 0x990
#if ( __BYTE_ORDER == __BIG_ENDIAN )
struct iec61883_oMPR {
unsigned int data_rate:2;
unsigned int bcast_channel:6;
unsigned int non_persist_ext:8;
unsigned int persist_ext:8;
unsigned int reserved:3;
unsigned int n_plugs:5;
};
struct iec61883_iMPR {
unsigned int data_rate:2;
unsigned int reserved:6;
unsigned int non_persist_ext:8;
unsigned int persist_ext:8;
unsigned int reserved2:3;
unsigned int n_plugs:5;
};
struct iec61883_oPCR {
unsigned int online:1;
unsigned int bcast_connection:1;
unsigned int n_p2p_connections:6;
unsigned int reserved:2;
unsigned int channel:6;
unsigned int data_rate:2;
unsigned int overhead_id:4;
unsigned int payload:10;
};
struct iec61883_iPCR {
unsigned int online:1;
unsigned int bcast_connection:1;
unsigned int n_p2p_connections:6;
unsigned int reserved:2;
unsigned int channel:6;
unsigned int reserved2:16;
};
#else
struct iec61883_oMPR {
unsigned int n_plugs:5;
unsigned int reserved:3;
unsigned int persist_ext:8;
unsigned int non_persist_ext:8;
unsigned int bcast_channel:6;
unsigned int data_rate:2;
};
struct iec61883_iMPR {
unsigned int n_plugs:5;
unsigned int reserved2:3;
unsigned int persist_ext:8;
unsigned int non_persist_ext:8;
unsigned int reserved:6;
unsigned int data_rate:2;
};
struct iec61883_oPCR {
unsigned int payload:10;
unsigned int overhead_id:4;
unsigned int data_rate:2;
unsigned int channel:6;
unsigned int reserved:2;
unsigned int n_p2p_connections:6;
unsigned int bcast_connection:1;
unsigned int online:1;
};
struct iec61883_iPCR {
unsigned int reserved2:16;
unsigned int channel:6;
unsigned int reserved:2;
unsigned int n_p2p_connections:6;
unsigned int bcast_connection:1;
unsigned int online:1;
};
#endif
/**
* iec61883_plug_get - Read a node's plug register.
* @h: A raw1394 handle.
* @n: The node id of the node to read
* @a: The CSR offset address (relative to base) of the register to read.
* @value: A pointer to a quadlet where the plug register's value will be stored.
*
* This function handles bus to host endian conversion. It returns 0 for
* suceess or -1 for error (errno available).
**/
extern int
iec61883_plug_get(raw1394handle_t h, nodeid_t n, nodeaddr_t a, quadlet_t *value);
/**
* iec61883_plug_set - Write a node's plug register.
* @h: A raw1394 handle.
* @n: The node id of the node to read
* @a: The CSR offset address (relative to CSR base) of the register to write.
* @value: A quadlet containing the new register value.
*
* This uses a compare/swap lock operation to safely write the
* new register value, as required by IEC 61883-1.
* This function handles host to bus endian conversion. It returns 0 for success
* or -1 for error (errno available).
**/
extern int
iec61883_plug_set(raw1394handle_t h, nodeid_t n, nodeaddr_t a, quadlet_t value);
/**
* High level plug access macros
*/
#define iec61883_get_oMPR(h,n,v) iec61883_plug_get((h), (n), CSR_O_MPR, (quadlet_t *)(v))
#define iec61883_set_oMPR(h,n,v) iec61883_plug_set((h), (n), CSR_O_MPR, *((quadlet_t *)&(v)))
#define iec61883_get_oPCR0(h,n,v) iec61883_plug_get((h), (n), CSR_O_PCR_0, (quadlet_t *)(v))
#define iec61883_set_oPCR0(h,n,v) iec61883_plug_set((h), (n), CSR_O_PCR_0, *((quadlet_t *)&(v)))
#define iec61883_get_oPCRX(h,n,v,x) iec61883_plug_get((h), (n), CSR_O_PCR_0+(4*(x)), (quadlet_t *)(v))
#define iec61883_set_oPCRX(h,n,v,x) iec61883_plug_set((h), (n), CSR_O_PCR_0+(4*(x)), *((quadlet_t *)&(v)))
#define iec61883_get_iMPR(h,n,v) iec61883_plug_get((h), (n), CSR_I_MPR, (quadlet_t *)(v))
#define iec61883_set_iMPR(h,n,v) iec61883_plug_set((h), (n), CSR_I_MPR, *((quadlet_t *)&(v)))
#define iec61883_get_iPCR0(h,n,v) iec61883_plug_get((h), (n), CSR_I_PCR_0, (quadlet_t *)(v))
#define iec61883_set_iPCR0(h,n,v) iec61883_plug_set((h), (n), CSR_I_PCR_0, *((quadlet_t *)&(v)))
#define iec61883_get_iPCRX(h,n,v,x) iec61883_plug_get((h), (n), CSR_I_PCR_0+(4*(x)), (quadlet_t *)(v))
#define iec61883_set_iPCRX(h,n,v,x) iec61883_plug_set((h), (n), CSR_I_PCR_0+(4*(x)), *((quadlet_t *)&(v)))
/************ END PRIVATE INTERFACE **************/
#define FAIL(s) {fprintf(stderr, "libiec61883 error: %s\n", s);}
#define PLUGREPORT_GUID_HI 0x0C
#define PLUGREPORT_GUID_LO 0x10
static octlet_t get_guid(raw1394handle_t handle, nodeid_t node)
{
quadlet_t quadlet;
octlet_t offset;
octlet_t guid = 0;
offset = CSR_REGISTER_BASE + CSR_CONFIG_ROM + PLUGREPORT_GUID_HI;
raw1394_read(handle, node, offset, sizeof(quadlet_t), &quadlet);
quadlet = htonl(quadlet);
guid = quadlet;
guid <<= 32;
offset = CSR_REGISTER_BASE + CSR_CONFIG_ROM + PLUGREPORT_GUID_LO;
raw1394_read(handle, node, offset, sizeof(quadlet_t), &quadlet);
quadlet = htonl(quadlet);
guid += quadlet;
return guid;
}
int main(int argc, const char** argv)
{
raw1394handle_t handle;
int device;
struct iec61883_oMPR o_mpr;
struct iec61883_oPCR o_pcr;
struct iec61883_iMPR i_mpr;
struct iec61883_iPCR i_pcr;
int numcards, port, i;
struct raw1394_portinfo pinf[16];
if (!(handle = raw1394_new_handle())) {
perror("raw1394 - couldn't get handle");
printf("This error usually means that the raw1394 driver is not loaded or that /dev/raw1394 does not exist.\n");
exit( -1);
}
if ((numcards = raw1394_get_port_info(handle, pinf, 16)) < 0) {
perror("raw1394 - couldn't get card info");
exit( -1);
}
for (port = 0; port < numcards; port++)
{
if (raw1394_set_port(handle, port) < 0) {
perror("raw1394 - couldn't set port");
exit( -1);
}
printf( "Host Adapter %d\n==============\n", port);
for (device = 0; device < raw1394_get_nodecount(handle); device++ )
{
octlet_t guid = get_guid(handle, 0xffc0 | device);
printf( "\nNode %d GUID 0x%08x%08x\n------------------------------\n",
device, (quadlet_t) (guid>>32), (quadlet_t) (guid & 0xffffffff));
if (iec61883_get_oMPR(handle, 0xffc0 | device, &o_mpr) < 0)
FAIL("error reading oMPR")
else
{
printf( "oMPR n_plugs=%d, data_rate=%d, bcast_channel=%d\n", o_mpr.n_plugs, o_mpr.data_rate, o_mpr.bcast_channel);
for (i = 0; i < o_mpr.n_plugs; i++)
{
if (iec61883_get_oPCRX( handle, 0xffc0 | device, &o_pcr, i) < 0)
FAIL("error reading oPCR")
else
{
printf( "oPCR[%d] online=%d, bcast_connection=%d, n_p2p_connections=%d\n", i,
o_pcr.online, o_pcr.bcast_connection, o_pcr.n_p2p_connections);
printf( "\tchannel=%d, data_rate=%d, overhead_id=%d, payload=%d\n",
o_pcr.channel, o_pcr.data_rate, o_pcr.overhead_id, o_pcr.payload);
}
}
}
if (iec61883_get_iMPR(handle, 0xffc0 | device, &i_mpr) < 0)
FAIL("error reading iMPR")
else
{
printf( "iMPR n_plugs=%d, data_rate=%d\n", i_mpr.n_plugs, i_mpr.data_rate);
for (i = 0; i < i_mpr.n_plugs; i++)
{
if (iec61883_get_iPCRX( handle, 0xffc0 | device, &i_pcr, i) < 0)
FAIL("error reading iPCR")
else
{
printf( "iPCR[%d] online=%d, bcast_connection=%d, n_p2p_connections=%d\n", i,
i_pcr.online, i_pcr.bcast_connection, i_pcr.n_p2p_connections);
printf( "\tchannel=%d\n",
i_pcr.channel);
}
}
}
}
printf("\n");
raw1394_destroy_handle(handle);
if (!(handle = raw1394_new_handle())) {
perror("raw1394 - couldn't get handle");
printf("This error usually means that the raw1394 driver is not loaded or that /dev/raw1394 does not exist.\n");
exit( -1);
}
if ((numcards = raw1394_get_port_info(handle, pinf, 16)) < 0) {
perror("raw1394 - couldn't get card info");
exit( -1);
}
}
return 0;
}
|