2019-05-27 08:55:05 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2007-05-07 20:33:32 -04:00
|
|
|
/*
|
|
|
|
* Incremental bus scan, based on bus topology
|
2006-12-19 19:58:27 -05:00
|
|
|
*
|
|
|
|
* Copyright (C) 2004-2006 Kristian Hoegsberg <krh@bitplanet.net>
|
|
|
|
*/
|
|
|
|
|
2009-06-04 21:09:38 +02:00
|
|
|
#include <linux/bug.h>
|
2006-12-19 19:58:27 -05:00
|
|
|
#include <linux/errno.h>
|
firewire: reorganize header files
The three header files of firewire-core, i.e.
"drivers/firewire/fw-device.h",
"drivers/firewire/fw-topology.h",
"drivers/firewire/fw-transaction.h",
are replaced by
"drivers/firewire/core.h",
"include/linux/firewire.h".
The latter includes everything which a firewire high-level driver (like
firewire-sbp2) needs besides linux/firewire-constants.h, while core.h
contains the rest which is needed by firewire-core itself and by low-
level drivers (card drivers) like firewire-ohci.
High-level drivers can now also reside outside of drivers/firewire
without having to add drivers/firewire to the header file search path in
makefiles. At least the firedtv driver will be such a driver.
I also considered to spread the contents of core.h over several files,
one for each .c file where the respective implementation resides. But
it turned out that most core .c files will end up including most of the
core .h files. Also, the combined core.h isn't unreasonably big, and it
will lose more of its contents to linux/firewire.h anyway soon when more
firewire drivers are added. (IP-over-1394, firedtv, and there are plans
for one or two more.)
Furthermore, fw-ohci.h is renamed to ohci.h. The name of core.h and
ohci.h is chosen with regard to name changes of the .c files in a
follow-up change.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
2009-06-05 16:26:18 +02:00
|
|
|
#include <linux/firewire.h>
|
|
|
|
#include <linux/firewire-constants.h>
|
2009-06-04 21:09:38 +02:00
|
|
|
#include <linux/jiffies.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/list.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
|
2011-07-26 16:09:06 -07:00
|
|
|
#include <linux/atomic.h>
|
2009-10-08 00:42:53 +02:00
|
|
|
#include <asm/byteorder.h>
|
2009-06-04 21:09:38 +02:00
|
|
|
|
firewire: reorganize header files
The three header files of firewire-core, i.e.
"drivers/firewire/fw-device.h",
"drivers/firewire/fw-topology.h",
"drivers/firewire/fw-transaction.h",
are replaced by
"drivers/firewire/core.h",
"include/linux/firewire.h".
The latter includes everything which a firewire high-level driver (like
firewire-sbp2) needs besides linux/firewire-constants.h, while core.h
contains the rest which is needed by firewire-core itself and by low-
level drivers (card drivers) like firewire-ohci.
High-level drivers can now also reside outside of drivers/firewire
without having to add drivers/firewire to the header file search path in
makefiles. At least the firedtv driver will be such a driver.
I also considered to spread the contents of core.h over several files,
one for each .c file where the respective implementation resides. But
it turned out that most core .c files will end up including most of the
core .h files. Also, the combined core.h isn't unreasonably big, and it
will lose more of its contents to linux/firewire.h anyway soon when more
firewire drivers are added. (IP-over-1394, firedtv, and there are plans
for one or two more.)
Furthermore, fw-ohci.h is renamed to ohci.h. The name of core.h and
ohci.h is chosen with regard to name changes of the .c files in a
follow-up change.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
2009-06-05 16:26:18 +02:00
|
|
|
#include "core.h"
|
2024-06-06 08:51:49 +09:00
|
|
|
#include "phy-packet-definitions.h"
|
2024-05-01 16:32:38 +09:00
|
|
|
#include <trace/events/firewire.h>
|
2006-12-19 19:58:27 -05:00
|
|
|
|
2007-01-22 19:17:37 +01:00
|
|
|
static struct fw_node *fw_node_create(u32 sid, int port_count, int color)
|
2006-12-19 19:58:27 -05:00
|
|
|
{
|
|
|
|
struct fw_node *node;
|
|
|
|
|
2023-09-15 18:33:59 +09:00
|
|
|
node = kzalloc(struct_size(node, ports, port_count), GFP_ATOMIC);
|
2006-12-19 19:58:27 -05:00
|
|
|
if (node == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
node->color = color;
|
2024-06-06 08:51:52 +09:00
|
|
|
node->node_id = LOCAL_BUS | phy_packet_self_id_get_phy_id(sid);
|
|
|
|
node->link_on = phy_packet_self_id_zero_get_link_active(sid);
|
|
|
|
// NOTE: Only two bits, thus only for SCODE_100, SCODE_200, SCODE_400, and SCODE_BETA.
|
|
|
|
node->phy_speed = phy_packet_self_id_zero_get_scode(sid);
|
|
|
|
node->initiated_reset = phy_packet_self_id_zero_get_initiated_reset(sid);
|
2006-12-19 19:58:27 -05:00
|
|
|
node->port_count = port_count;
|
|
|
|
|
2024-08-01 11:26:29 +09:00
|
|
|
kref_init(&node->kref);
|
2006-12-19 19:58:27 -05:00
|
|
|
INIT_LIST_HEAD(&node->link);
|
|
|
|
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2007-05-07 20:33:32 -04:00
|
|
|
/*
|
|
|
|
* Compute the maximum hop count for this node and it's children. The
|
2007-01-26 00:37:50 -05:00
|
|
|
* maximum hop count is the maximum number of connections between any
|
|
|
|
* two nodes in the subtree rooted at this node. We need this for
|
|
|
|
* setting the gap count. As we build the tree bottom up in
|
|
|
|
* build_tree() below, this is fairly easy to do: for each node we
|
|
|
|
* maintain the max hop count and the max depth, ie the number of hops
|
|
|
|
* to the furthest leaf. Computing the max hop count breaks down into
|
|
|
|
* two cases: either the path goes through this node, in which case
|
|
|
|
* the hop count is the sum of the two biggest child depths plus 2.
|
|
|
|
* Or it could be the case that the max hop path is entirely
|
|
|
|
* containted in a child tree, in which case the max hop count is just
|
|
|
|
* the max hop count of this child.
|
|
|
|
*/
|
|
|
|
static void update_hop_count(struct fw_node *node)
|
|
|
|
{
|
|
|
|
int depths[2] = { -1, -1 };
|
|
|
|
int max_child_hops = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < node->port_count; i++) {
|
2007-06-17 23:39:58 +02:00
|
|
|
if (node->ports[i] == NULL)
|
2007-01-26 00:37:50 -05:00
|
|
|
continue;
|
|
|
|
|
2007-06-17 23:39:58 +02:00
|
|
|
if (node->ports[i]->max_hops > max_child_hops)
|
|
|
|
max_child_hops = node->ports[i]->max_hops;
|
2007-01-26 00:37:50 -05:00
|
|
|
|
2007-06-17 23:39:58 +02:00
|
|
|
if (node->ports[i]->max_depth > depths[0]) {
|
2007-01-26 00:37:50 -05:00
|
|
|
depths[1] = depths[0];
|
2007-06-17 23:39:58 +02:00
|
|
|
depths[0] = node->ports[i]->max_depth;
|
|
|
|
} else if (node->ports[i]->max_depth > depths[1])
|
|
|
|
depths[1] = node->ports[i]->max_depth;
|
2007-01-26 00:37:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
node->max_depth = depths[0] + 1;
|
|
|
|
node->max_hops = max(max_child_hops, depths[0] + depths[1] + 2);
|
|
|
|
}
|
|
|
|
|
2007-10-07 02:10:11 +02:00
|
|
|
static inline struct fw_node *fw_node(struct list_head *l)
|
|
|
|
{
|
|
|
|
return list_entry(l, struct fw_node, link);
|
|
|
|
}
|
2007-01-26 00:37:50 -05:00
|
|
|
|
2010-07-07 13:26:18 +02:00
|
|
|
/*
|
2006-12-19 19:58:27 -05:00
|
|
|
* This function builds the tree representation of the topology given
|
|
|
|
* by the self IDs from the latest bus reset. During the construction
|
|
|
|
* of the tree, the function checks that the self IDs are valid and
|
tree-wide: fix assorted typos all over the place
That is "success", "unknown", "through", "performance", "[re|un]mapping"
, "access", "default", "reasonable", "[con]currently", "temperature"
, "channel", "[un]used", "application", "example","hierarchy", "therefore"
, "[over|under]flow", "contiguous", "threshold", "enough" and others.
Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2009-11-14 13:09:05 -02:00
|
|
|
* internally consistent. On success this function returns the
|
2006-12-19 19:58:27 -05:00
|
|
|
* fw_node corresponding to the local card otherwise NULL.
|
|
|
|
*/
|
2024-06-06 08:51:55 +09:00
|
|
|
static struct fw_node *build_tree(struct fw_card *card, const u32 *sid, int self_id_count,
|
|
|
|
unsigned int generation)
|
2006-12-19 19:58:27 -05:00
|
|
|
{
|
2024-06-06 08:51:49 +09:00
|
|
|
struct self_id_sequence_enumerator enumerator = {
|
|
|
|
.cursor = sid,
|
|
|
|
.quadlet_count = self_id_count,
|
|
|
|
};
|
2007-03-27 09:42:39 -05:00
|
|
|
struct fw_node *node, *child, *local_node, *irm_node;
|
2024-06-06 08:51:47 +09:00
|
|
|
struct list_head stack;
|
|
|
|
int phy_id, stack_depth;
|
2007-06-18 19:44:12 +02:00
|
|
|
int gap_count;
|
|
|
|
bool beta_repeaters_present;
|
2006-12-19 19:58:27 -05:00
|
|
|
|
|
|
|
local_node = NULL;
|
|
|
|
node = NULL;
|
|
|
|
INIT_LIST_HEAD(&stack);
|
|
|
|
stack_depth = 0;
|
|
|
|
phy_id = 0;
|
2007-03-27 09:42:39 -05:00
|
|
|
irm_node = NULL;
|
2024-06-06 08:51:52 +09:00
|
|
|
gap_count = phy_packet_self_id_zero_get_gap_count(*sid);
|
2007-06-18 19:44:12 +02:00
|
|
|
beta_repeaters_present = false;
|
2006-12-19 19:58:27 -05:00
|
|
|
|
2024-06-06 08:51:49 +09:00
|
|
|
while (enumerator.quadlet_count > 0) {
|
|
|
|
unsigned int child_port_count = 0;
|
|
|
|
unsigned int total_port_count = 0;
|
|
|
|
unsigned int parent_count = 0;
|
|
|
|
unsigned int quadlet_count;
|
|
|
|
const u32 *self_id_sequence;
|
|
|
|
unsigned int port_capacity;
|
|
|
|
enum phy_packet_self_id_port_status port_status;
|
|
|
|
unsigned int port_index;
|
2024-06-06 08:51:47 +09:00
|
|
|
struct list_head *h;
|
|
|
|
int i;
|
2006-12-19 19:58:27 -05:00
|
|
|
|
2024-06-06 08:51:49 +09:00
|
|
|
self_id_sequence = self_id_sequence_enumerator_next(&enumerator, &quadlet_count);
|
|
|
|
if (IS_ERR(self_id_sequence)) {
|
|
|
|
if (PTR_ERR(self_id_sequence) != -ENODATA) {
|
|
|
|
fw_err(card, "inconsistent extended self IDs: %ld\n",
|
|
|
|
PTR_ERR(self_id_sequence));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
port_capacity = self_id_sequence_get_port_capacity(quadlet_count);
|
2024-06-14 09:42:51 +09:00
|
|
|
trace_self_id_sequence(card->index, self_id_sequence, quadlet_count, generation);
|
2024-06-06 08:51:55 +09:00
|
|
|
|
2024-06-06 08:51:49 +09:00
|
|
|
for (port_index = 0; port_index < port_capacity; ++port_index) {
|
|
|
|
port_status = self_id_sequence_get_port_status(self_id_sequence, quadlet_count,
|
|
|
|
port_index);
|
|
|
|
switch (port_status) {
|
|
|
|
case PHY_PACKET_SELF_ID_PORT_STATUS_CHILD:
|
|
|
|
++child_port_count;
|
|
|
|
fallthrough;
|
|
|
|
case PHY_PACKET_SELF_ID_PORT_STATUS_PARENT:
|
|
|
|
case PHY_PACKET_SELF_ID_PORT_STATUS_NCONN:
|
|
|
|
++total_port_count;
|
|
|
|
fallthrough;
|
|
|
|
case PHY_PACKET_SELF_ID_PORT_STATUS_NONE:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2006-12-19 19:58:27 -05:00
|
|
|
}
|
|
|
|
|
2024-06-06 08:51:52 +09:00
|
|
|
if (phy_id != phy_packet_self_id_get_phy_id(self_id_sequence[0])) {
|
firewire: core: prefix log messages with card name
Associate all log messages from firewire-core with the respective card
because some people have more than one card. E.g.
firewire_ohci 0000:04:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
firewire_ohci 0000:05:00.0: added OHCI v1.10 device as card 1, 8 IR + 8 IT contexts, quirks 0x0
firewire_core: created device fw0: GUID 0814438400000389, S800
firewire_core: phy config: new root=ffc1, gap_count=5
firewire_core: created device fw1: GUID 0814438400000388, S800
firewire_core: created device fw2: GUID 0001d202e06800d1, S800
turns into
firewire_ohci 0000:04:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
firewire_ohci 0000:05:00.0: added OHCI v1.10 device as card 1, 8 IR + 8 IT contexts, quirks 0x0
firewire_core 0000:04:00.0: created device fw0: GUID 0814438400000389, S800
firewire_core 0000:04:00.0: phy config: new root=ffc1, gap_count=5
firewire_core 0000:05:00.0: created device fw1: GUID 0814438400000388, S800
firewire_core 0000:04:00.0: created device fw2: GUID 0001d202e06800d1, S800
This increases the module size slightly; to keep this in check, turn the
former printk wrapper macros into functions. Their implementation is
largely copied from driver core's dev_printk counterparts.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
2012-02-18 22:03:14 +01:00
|
|
|
fw_err(card, "PHY ID mismatch in self ID: %d != %d\n",
|
2024-06-06 08:51:52 +09:00
|
|
|
phy_id, phy_packet_self_id_get_phy_id(self_id_sequence[0]));
|
2006-12-19 19:58:27 -05:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (child_port_count > stack_depth) {
|
firewire: core: prefix log messages with card name
Associate all log messages from firewire-core with the respective card
because some people have more than one card. E.g.
firewire_ohci 0000:04:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
firewire_ohci 0000:05:00.0: added OHCI v1.10 device as card 1, 8 IR + 8 IT contexts, quirks 0x0
firewire_core: created device fw0: GUID 0814438400000389, S800
firewire_core: phy config: new root=ffc1, gap_count=5
firewire_core: created device fw1: GUID 0814438400000388, S800
firewire_core: created device fw2: GUID 0001d202e06800d1, S800
turns into
firewire_ohci 0000:04:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
firewire_ohci 0000:05:00.0: added OHCI v1.10 device as card 1, 8 IR + 8 IT contexts, quirks 0x0
firewire_core 0000:04:00.0: created device fw0: GUID 0814438400000389, S800
firewire_core 0000:04:00.0: phy config: new root=ffc1, gap_count=5
firewire_core 0000:05:00.0: created device fw1: GUID 0814438400000388, S800
firewire_core 0000:04:00.0: created device fw2: GUID 0001d202e06800d1, S800
This increases the module size slightly; to keep this in check, turn the
former printk wrapper macros into functions. Their implementation is
largely copied from driver core's dev_printk counterparts.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
2012-02-18 22:03:14 +01:00
|
|
|
fw_err(card, "topology stack underflow\n");
|
2006-12-19 19:58:27 -05:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-05-07 20:33:32 -04:00
|
|
|
/*
|
|
|
|
* Seek back from the top of our stack to find the
|
|
|
|
* start of the child nodes for this node.
|
|
|
|
*/
|
2006-12-19 19:58:27 -05:00
|
|
|
for (i = 0, h = &stack; i < child_port_count; i++)
|
|
|
|
h = h->prev;
|
2007-10-07 02:21:29 +02:00
|
|
|
/*
|
|
|
|
* When the stack is empty, this yields an invalid value,
|
|
|
|
* but that pointer will never be dereferenced.
|
|
|
|
*/
|
2006-12-19 19:58:27 -05:00
|
|
|
child = fw_node(h);
|
|
|
|
|
2024-06-06 08:51:49 +09:00
|
|
|
node = fw_node_create(self_id_sequence[0], total_port_count, card->color);
|
2006-12-19 19:58:27 -05:00
|
|
|
if (node == NULL) {
|
firewire: core: prefix log messages with card name
Associate all log messages from firewire-core with the respective card
because some people have more than one card. E.g.
firewire_ohci 0000:04:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
firewire_ohci 0000:05:00.0: added OHCI v1.10 device as card 1, 8 IR + 8 IT contexts, quirks 0x0
firewire_core: created device fw0: GUID 0814438400000389, S800
firewire_core: phy config: new root=ffc1, gap_count=5
firewire_core: created device fw1: GUID 0814438400000388, S800
firewire_core: created device fw2: GUID 0001d202e06800d1, S800
turns into
firewire_ohci 0000:04:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
firewire_ohci 0000:05:00.0: added OHCI v1.10 device as card 1, 8 IR + 8 IT contexts, quirks 0x0
firewire_core 0000:04:00.0: created device fw0: GUID 0814438400000389, S800
firewire_core 0000:04:00.0: phy config: new root=ffc1, gap_count=5
firewire_core 0000:05:00.0: created device fw1: GUID 0814438400000388, S800
firewire_core 0000:04:00.0: created device fw2: GUID 0001d202e06800d1, S800
This increases the module size slightly; to keep this in check, turn the
former printk wrapper macros into functions. Their implementation is
largely copied from driver core's dev_printk counterparts.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
2012-02-18 22:03:14 +01:00
|
|
|
fw_err(card, "out of memory while building topology\n");
|
2006-12-19 19:58:27 -05:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (phy_id == (card->node_id & 0x3f))
|
|
|
|
local_node = node;
|
|
|
|
|
2024-06-06 08:51:52 +09:00
|
|
|
if (phy_packet_self_id_zero_get_contender(self_id_sequence[0]))
|
2007-03-27 09:42:39 -05:00
|
|
|
irm_node = node;
|
2006-12-19 19:58:27 -05:00
|
|
|
|
2024-06-06 08:51:49 +09:00
|
|
|
for (port_index = 0; port_index < total_port_count; ++port_index) {
|
|
|
|
port_status = self_id_sequence_get_port_status(self_id_sequence, quadlet_count,
|
|
|
|
port_index);
|
|
|
|
switch (port_status) {
|
|
|
|
case PHY_PACKET_SELF_ID_PORT_STATUS_PARENT:
|
|
|
|
// Who's your daddy? We dont know the parent node at this time, so
|
|
|
|
// we temporarily abuse node->color for remembering the entry in
|
|
|
|
// the node->ports array where the parent node should be. Later,
|
|
|
|
// when we handle the parent node, we fix up the reference.
|
|
|
|
++parent_count;
|
2006-12-19 19:58:27 -05:00
|
|
|
node->color = i;
|
|
|
|
break;
|
|
|
|
|
2024-06-06 08:51:49 +09:00
|
|
|
case PHY_PACKET_SELF_ID_PORT_STATUS_CHILD:
|
|
|
|
node->ports[port_index] = child;
|
|
|
|
// Fix up parent reference for this child node.
|
2007-06-17 23:39:58 +02:00
|
|
|
child->ports[child->color] = node;
|
2006-12-19 19:58:27 -05:00
|
|
|
child->color = card->color;
|
|
|
|
child = fw_node(child->link.next);
|
|
|
|
break;
|
2024-06-06 08:51:49 +09:00
|
|
|
case PHY_PACKET_SELF_ID_PORT_STATUS_NCONN:
|
|
|
|
case PHY_PACKET_SELF_ID_PORT_STATUS_NONE:
|
|
|
|
default:
|
|
|
|
break;
|
2006-12-19 19:58:27 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-06 08:51:49 +09:00
|
|
|
// Check that the node reports exactly one parent port, except for the root, which
|
|
|
|
// of course should have no parents.
|
|
|
|
if ((enumerator.quadlet_count == 0 && parent_count != 0) ||
|
|
|
|
(enumerator.quadlet_count > 0 && parent_count != 1)) {
|
firewire: core: prefix log messages with card name
Associate all log messages from firewire-core with the respective card
because some people have more than one card. E.g.
firewire_ohci 0000:04:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
firewire_ohci 0000:05:00.0: added OHCI v1.10 device as card 1, 8 IR + 8 IT contexts, quirks 0x0
firewire_core: created device fw0: GUID 0814438400000389, S800
firewire_core: phy config: new root=ffc1, gap_count=5
firewire_core: created device fw1: GUID 0814438400000388, S800
firewire_core: created device fw2: GUID 0001d202e06800d1, S800
turns into
firewire_ohci 0000:04:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
firewire_ohci 0000:05:00.0: added OHCI v1.10 device as card 1, 8 IR + 8 IT contexts, quirks 0x0
firewire_core 0000:04:00.0: created device fw0: GUID 0814438400000389, S800
firewire_core 0000:04:00.0: phy config: new root=ffc1, gap_count=5
firewire_core 0000:05:00.0: created device fw1: GUID 0814438400000388, S800
firewire_core 0000:04:00.0: created device fw2: GUID 0001d202e06800d1, S800
This increases the module size slightly; to keep this in check, turn the
former printk wrapper macros into functions. Their implementation is
largely copied from driver core's dev_printk counterparts.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
2012-02-18 22:03:14 +01:00
|
|
|
fw_err(card, "parent port inconsistency for node %d: "
|
|
|
|
"parent_count=%d\n", phy_id, parent_count);
|
2006-12-19 19:58:27 -05:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Pop the child nodes off the stack and push the new node. */
|
|
|
|
__list_del(h->prev, &stack);
|
|
|
|
list_add_tail(&node->link, &stack);
|
|
|
|
stack_depth += 1 - child_port_count;
|
|
|
|
|
2024-06-06 08:51:49 +09:00
|
|
|
if (node->phy_speed == SCODE_BETA && parent_count + child_port_count > 1)
|
2007-06-18 19:44:12 +02:00
|
|
|
beta_repeaters_present = true;
|
|
|
|
|
2024-06-06 08:51:49 +09:00
|
|
|
// If PHYs report different gap counts, set an invalid count which will force a gap
|
|
|
|
// count reconfiguration and a reset.
|
2024-06-06 08:51:52 +09:00
|
|
|
if (phy_packet_self_id_zero_get_gap_count(self_id_sequence[0]) != gap_count)
|
2008-03-24 20:57:12 +01:00
|
|
|
gap_count = 0;
|
2007-01-26 00:37:50 -05:00
|
|
|
|
|
|
|
update_hop_count(node);
|
|
|
|
|
2006-12-19 19:58:27 -05:00
|
|
|
phy_id++;
|
|
|
|
}
|
|
|
|
|
|
|
|
card->root_node = node;
|
2007-03-27 09:42:39 -05:00
|
|
|
card->irm_node = irm_node;
|
2007-01-26 00:37:50 -05:00
|
|
|
card->gap_count = gap_count;
|
2007-06-18 19:44:12 +02:00
|
|
|
card->beta_repeaters_present = beta_repeaters_present;
|
2006-12-19 19:58:27 -05:00
|
|
|
|
|
|
|
return local_node;
|
|
|
|
}
|
|
|
|
|
2007-05-07 20:33:34 -04:00
|
|
|
typedef void (*fw_node_callback_t)(struct fw_card * card,
|
|
|
|
struct fw_node * node,
|
|
|
|
struct fw_node * parent);
|
2006-12-19 19:58:27 -05:00
|
|
|
|
2008-12-14 21:47:04 +01:00
|
|
|
static void for_each_fw_node(struct fw_card *card, struct fw_node *root,
|
|
|
|
fw_node_callback_t callback)
|
2006-12-19 19:58:27 -05:00
|
|
|
{
|
|
|
|
struct list_head list;
|
|
|
|
struct fw_node *node, *next, *child, *parent;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
INIT_LIST_HEAD(&list);
|
|
|
|
|
|
|
|
fw_node_get(root);
|
|
|
|
list_add_tail(&root->link, &list);
|
|
|
|
parent = NULL;
|
|
|
|
list_for_each_entry(node, &list, link) {
|
|
|
|
node->color = card->color;
|
|
|
|
|
|
|
|
for (i = 0; i < node->port_count; i++) {
|
2007-06-17 23:39:58 +02:00
|
|
|
child = node->ports[i];
|
2006-12-19 19:58:27 -05:00
|
|
|
if (!child)
|
|
|
|
continue;
|
|
|
|
if (child->color == card->color)
|
|
|
|
parent = child;
|
|
|
|
else {
|
|
|
|
fw_node_get(child);
|
|
|
|
list_add_tail(&child->link, &list);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
callback(card, node, parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
list_for_each_entry_safe(node, next, &list, link)
|
|
|
|
fw_node_put(node);
|
|
|
|
}
|
|
|
|
|
2008-12-14 21:47:04 +01:00
|
|
|
static void report_lost_node(struct fw_card *card,
|
|
|
|
struct fw_node *node, struct fw_node *parent)
|
2006-12-19 19:58:27 -05:00
|
|
|
{
|
|
|
|
fw_node_event(card, node, FW_NODE_DESTROYED);
|
|
|
|
fw_node_put(node);
|
2008-11-29 18:56:47 +01:00
|
|
|
|
|
|
|
/* Topology has changed - reset bus manager retry counter */
|
|
|
|
card->bm_retries = 0;
|
2006-12-19 19:58:27 -05:00
|
|
|
}
|
|
|
|
|
2008-12-14 21:47:04 +01:00
|
|
|
static void report_found_node(struct fw_card *card,
|
|
|
|
struct fw_node *node, struct fw_node *parent)
|
2006-12-19 19:58:27 -05:00
|
|
|
{
|
|
|
|
int b_path = (node->phy_speed == SCODE_BETA);
|
|
|
|
|
|
|
|
if (parent != NULL) {
|
2007-01-27 16:59:15 +01:00
|
|
|
/* min() macro doesn't work here with gcc 3.4 */
|
|
|
|
node->max_speed = parent->max_speed < node->phy_speed ?
|
|
|
|
parent->max_speed : node->phy_speed;
|
2006-12-19 19:58:27 -05:00
|
|
|
node->b_path = parent->b_path && b_path;
|
|
|
|
} else {
|
|
|
|
node->max_speed = node->phy_speed;
|
|
|
|
node->b_path = b_path;
|
|
|
|
}
|
|
|
|
|
|
|
|
fw_node_event(card, node, FW_NODE_CREATED);
|
2008-11-29 18:56:47 +01:00
|
|
|
|
|
|
|
/* Topology has changed - reset bus manager retry counter */
|
|
|
|
card->bm_retries = 0;
|
2006-12-19 19:58:27 -05:00
|
|
|
}
|
|
|
|
|
2022-04-09 13:12:43 +09:00
|
|
|
/* Must be called with card->lock held */
|
2006-12-19 19:58:27 -05:00
|
|
|
void fw_destroy_nodes(struct fw_card *card)
|
|
|
|
{
|
|
|
|
card->color++;
|
|
|
|
if (card->local_node != NULL)
|
|
|
|
for_each_fw_node(card, card->local_node, report_lost_node);
|
2008-02-24 18:57:23 +01:00
|
|
|
card->local_node = NULL;
|
2006-12-19 19:58:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void move_tree(struct fw_node *node0, struct fw_node *node1, int port)
|
|
|
|
{
|
|
|
|
struct fw_node *tree;
|
|
|
|
int i;
|
|
|
|
|
2007-06-17 23:39:58 +02:00
|
|
|
tree = node1->ports[port];
|
|
|
|
node0->ports[port] = tree;
|
2006-12-19 19:58:27 -05:00
|
|
|
for (i = 0; i < tree->port_count; i++) {
|
2007-06-17 23:39:58 +02:00
|
|
|
if (tree->ports[i] == node1) {
|
|
|
|
tree->ports[i] = node0;
|
2006-12-19 19:58:27 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-07 13:26:18 +02:00
|
|
|
/*
|
|
|
|
* Compare the old topology tree for card with the new one specified by root.
|
|
|
|
* Queue the nodes and mark them as either found, lost or updated.
|
|
|
|
* Update the nodes in the card topology tree as we go.
|
2006-12-19 19:58:27 -05:00
|
|
|
*/
|
2008-12-14 21:47:04 +01:00
|
|
|
static void update_tree(struct fw_card *card, struct fw_node *root)
|
2006-12-19 19:58:27 -05:00
|
|
|
{
|
|
|
|
struct list_head list0, list1;
|
2008-10-16 18:00:15 -04:00
|
|
|
struct fw_node *node0, *node1, *next1;
|
2006-12-19 19:58:27 -05:00
|
|
|
int i, event;
|
|
|
|
|
|
|
|
INIT_LIST_HEAD(&list0);
|
|
|
|
list_add_tail(&card->local_node->link, &list0);
|
|
|
|
INIT_LIST_HEAD(&list1);
|
|
|
|
list_add_tail(&root->link, &list1);
|
|
|
|
|
|
|
|
node0 = fw_node(list0.next);
|
|
|
|
node1 = fw_node(list1.next);
|
|
|
|
|
|
|
|
while (&node0->link != &list0) {
|
2008-03-08 22:38:16 +01:00
|
|
|
WARN_ON(node0->port_count != node1->port_count);
|
2006-12-19 19:58:27 -05:00
|
|
|
|
|
|
|
if (node0->link_on && !node1->link_on)
|
|
|
|
event = FW_NODE_LINK_OFF;
|
|
|
|
else if (!node0->link_on && node1->link_on)
|
|
|
|
event = FW_NODE_LINK_ON;
|
2008-03-24 20:54:28 +01:00
|
|
|
else if (node1->initiated_reset && node1->link_on)
|
|
|
|
event = FW_NODE_INITIATED_RESET;
|
2006-12-19 19:58:27 -05:00
|
|
|
else
|
|
|
|
event = FW_NODE_UPDATED;
|
|
|
|
|
|
|
|
node0->node_id = node1->node_id;
|
|
|
|
node0->color = card->color;
|
|
|
|
node0->link_on = node1->link_on;
|
|
|
|
node0->initiated_reset = node1->initiated_reset;
|
2007-01-26 00:37:50 -05:00
|
|
|
node0->max_hops = node1->max_hops;
|
2006-12-19 19:58:27 -05:00
|
|
|
node1->color = card->color;
|
|
|
|
fw_node_event(card, node0, event);
|
|
|
|
|
|
|
|
if (card->root_node == node1)
|
|
|
|
card->root_node = node0;
|
|
|
|
if (card->irm_node == node1)
|
|
|
|
card->irm_node = node0;
|
|
|
|
|
|
|
|
for (i = 0; i < node0->port_count; i++) {
|
2007-06-17 23:39:58 +02:00
|
|
|
if (node0->ports[i] && node1->ports[i]) {
|
2007-05-07 20:33:32 -04:00
|
|
|
/*
|
|
|
|
* This port didn't change, queue the
|
2006-12-19 19:58:27 -05:00
|
|
|
* connected node for further
|
2007-05-07 20:33:32 -04:00
|
|
|
* investigation.
|
|
|
|
*/
|
2007-06-17 23:39:58 +02:00
|
|
|
if (node0->ports[i]->color == card->color)
|
2006-12-19 19:58:27 -05:00
|
|
|
continue;
|
2007-06-17 23:39:58 +02:00
|
|
|
list_add_tail(&node0->ports[i]->link, &list0);
|
|
|
|
list_add_tail(&node1->ports[i]->link, &list1);
|
|
|
|
} else if (node0->ports[i]) {
|
2007-05-07 20:33:32 -04:00
|
|
|
/*
|
|
|
|
* The nodes connected here were
|
2006-12-19 19:58:27 -05:00
|
|
|
* unplugged; unref the lost nodes and
|
|
|
|
* queue FW_NODE_LOST callbacks for
|
2007-05-07 20:33:32 -04:00
|
|
|
* them.
|
|
|
|
*/
|
2006-12-19 19:58:27 -05:00
|
|
|
|
2007-06-17 23:39:58 +02:00
|
|
|
for_each_fw_node(card, node0->ports[i],
|
2006-12-19 19:58:27 -05:00
|
|
|
report_lost_node);
|
2007-06-17 23:39:58 +02:00
|
|
|
node0->ports[i] = NULL;
|
|
|
|
} else if (node1->ports[i]) {
|
2007-05-07 20:33:32 -04:00
|
|
|
/*
|
|
|
|
* One or more node were connected to
|
2006-12-19 19:58:27 -05:00
|
|
|
* this port. Move the new nodes into
|
|
|
|
* the tree and queue FW_NODE_CREATED
|
2007-05-07 20:33:32 -04:00
|
|
|
* callbacks for them.
|
|
|
|
*/
|
2006-12-19 19:58:27 -05:00
|
|
|
move_tree(node0, node1, i);
|
2007-06-17 23:39:58 +02:00
|
|
|
for_each_fw_node(card, node0->ports[i],
|
2006-12-19 19:58:27 -05:00
|
|
|
report_found_node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
node0 = fw_node(node0->link.next);
|
2008-10-16 18:00:15 -04:00
|
|
|
next1 = fw_node(node1->link.next);
|
|
|
|
fw_node_put(node1);
|
|
|
|
node1 = next1;
|
2006-12-19 19:58:27 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-14 21:47:04 +01:00
|
|
|
static void update_topology_map(struct fw_card *card,
|
|
|
|
u32 *self_ids, int self_id_count)
|
2007-03-07 12:12:55 -05:00
|
|
|
{
|
2009-10-08 00:42:53 +02:00
|
|
|
int node_count = (card->root_node->node_id & 0x3f) + 1;
|
|
|
|
__be32 *map = card->topology_map;
|
|
|
|
|
|
|
|
*map++ = cpu_to_be32((self_id_count + 2) << 16);
|
|
|
|
*map++ = cpu_to_be32(be32_to_cpu(card->topology_map[1]) + 1);
|
|
|
|
*map++ = cpu_to_be32((node_count << 16) | self_id_count);
|
|
|
|
|
|
|
|
while (self_id_count--)
|
|
|
|
*map++ = cpu_to_be32p(self_ids++);
|
2007-03-07 12:12:55 -05:00
|
|
|
|
2007-05-07 20:33:31 -04:00
|
|
|
fw_compute_block_crc(card->topology_map);
|
2007-03-07 12:12:55 -05:00
|
|
|
}
|
|
|
|
|
2008-12-14 21:47:04 +01:00
|
|
|
void fw_core_handle_bus_reset(struct fw_card *card, int node_id, int generation,
|
2010-06-12 20:34:50 +02:00
|
|
|
int self_id_count, u32 *self_ids, bool bm_abdicate)
|
2006-12-19 19:58:27 -05:00
|
|
|
{
|
|
|
|
struct fw_node *local_node;
|
|
|
|
|
2024-06-13 22:14:40 +09:00
|
|
|
trace_bus_reset_handle(card->index, generation, node_id, bm_abdicate, self_ids, self_id_count);
|
2024-05-01 16:32:38 +09:00
|
|
|
|
2024-08-05 17:54:05 +09:00
|
|
|
guard(spinlock_irqsave)(&card->lock);
|
2022-04-09 13:12:43 +09:00
|
|
|
|
2008-03-19 22:02:40 +01:00
|
|
|
/*
|
|
|
|
* If the selfID buffer is not the immediate successor of the
|
|
|
|
* previously processed one, we cannot reliably compare the
|
|
|
|
* old and new topologies.
|
|
|
|
*/
|
2008-03-24 20:56:40 +01:00
|
|
|
if (!is_next_generation(generation, card->generation) &&
|
2008-03-19 22:02:40 +01:00
|
|
|
card->local_node != NULL) {
|
|
|
|
fw_destroy_nodes(card);
|
|
|
|
card->bm_retries = 0;
|
|
|
|
}
|
|
|
|
|
2010-06-12 20:30:21 +02:00
|
|
|
card->broadcast_channel_allocated = card->broadcast_channel_auto_allocated;
|
2006-12-19 19:58:27 -05:00
|
|
|
card->node_id = node_id;
|
2008-01-25 18:57:41 +01:00
|
|
|
/*
|
|
|
|
* Update node_id before generation to prevent anybody from using
|
|
|
|
* a stale node_id together with a current generation.
|
|
|
|
*/
|
|
|
|
smp_wmb();
|
2006-12-19 19:58:27 -05:00
|
|
|
card->generation = generation;
|
2011-01-22 15:05:03 +01:00
|
|
|
card->reset_jiffies = get_jiffies_64();
|
2010-06-21 23:24:35 +02:00
|
|
|
card->bm_node_id = 0xffff;
|
2010-06-12 20:34:50 +02:00
|
|
|
card->bm_abdicate = bm_abdicate;
|
2008-11-29 17:44:57 +01:00
|
|
|
fw_schedule_bm_work(card, 0);
|
2006-12-19 19:58:27 -05:00
|
|
|
|
2024-06-06 08:51:55 +09:00
|
|
|
local_node = build_tree(card, self_ids, self_id_count, generation);
|
2007-03-07 12:12:55 -05:00
|
|
|
|
|
|
|
update_topology_map(card, self_ids, self_id_count);
|
2006-12-19 19:58:27 -05:00
|
|
|
|
|
|
|
card->color++;
|
|
|
|
|
|
|
|
if (local_node == NULL) {
|
firewire: core: prefix log messages with card name
Associate all log messages from firewire-core with the respective card
because some people have more than one card. E.g.
firewire_ohci 0000:04:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
firewire_ohci 0000:05:00.0: added OHCI v1.10 device as card 1, 8 IR + 8 IT contexts, quirks 0x0
firewire_core: created device fw0: GUID 0814438400000389, S800
firewire_core: phy config: new root=ffc1, gap_count=5
firewire_core: created device fw1: GUID 0814438400000388, S800
firewire_core: created device fw2: GUID 0001d202e06800d1, S800
turns into
firewire_ohci 0000:04:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
firewire_ohci 0000:05:00.0: added OHCI v1.10 device as card 1, 8 IR + 8 IT contexts, quirks 0x0
firewire_core 0000:04:00.0: created device fw0: GUID 0814438400000389, S800
firewire_core 0000:04:00.0: phy config: new root=ffc1, gap_count=5
firewire_core 0000:05:00.0: created device fw1: GUID 0814438400000388, S800
firewire_core 0000:04:00.0: created device fw2: GUID 0001d202e06800d1, S800
This increases the module size slightly; to keep this in check, turn the
former printk wrapper macros into functions. Their implementation is
largely copied from driver core's dev_printk counterparts.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
2012-02-18 22:03:14 +01:00
|
|
|
fw_err(card, "topology build failed\n");
|
2006-12-19 19:58:27 -05:00
|
|
|
/* FIXME: We need to issue a bus reset in this case. */
|
|
|
|
} else if (card->local_node == NULL) {
|
|
|
|
card->local_node = local_node;
|
|
|
|
for_each_fw_node(card, local_node, report_found_node);
|
|
|
|
} else {
|
2007-01-26 00:37:50 -05:00
|
|
|
update_tree(card, local_node);
|
2006-12-19 19:58:27 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(fw_core_handle_bus_reset);
|