Commit e5110d01 authored by Stefan Richter's avatar Stefan Richter

firewire: add parent-of-unit accessor

Retrieval of an fw_unit's parent is a common pattern in high-level code.
Wrap it up as device = fw_parent_device(unit).
Signed-off-by: default avatarStefan Richter <stefanr@s5r6.in-berlin.de>
parent e71d31da
...@@ -93,7 +93,7 @@ static int fw_unit_match(struct device *dev, struct device_driver *drv) ...@@ -93,7 +93,7 @@ static int fw_unit_match(struct device *dev, struct device_driver *drv)
if (!is_fw_unit(dev)) if (!is_fw_unit(dev))
return 0; return 0;
device = fw_device(unit->device.parent); device = fw_parent_device(unit);
id = container_of(drv, struct fw_driver, driver)->id_table; id = container_of(drv, struct fw_driver, driver)->id_table;
for (; id->match_flags != 0; id++) { for (; id->match_flags != 0; id++) {
...@@ -114,7 +114,7 @@ static int fw_unit_match(struct device *dev, struct device_driver *drv) ...@@ -114,7 +114,7 @@ static int fw_unit_match(struct device *dev, struct device_driver *drv)
static int get_modalias(struct fw_unit *unit, char *buffer, size_t buffer_size) static int get_modalias(struct fw_unit *unit, char *buffer, size_t buffer_size)
{ {
struct fw_device *device = fw_device(unit->device.parent); struct fw_device *device = fw_parent_device(unit);
struct fw_csr_iterator ci; struct fw_csr_iterator ci;
int key, value; int key, value;
......
...@@ -180,6 +180,11 @@ struct sbp2_target { ...@@ -180,6 +180,11 @@ struct sbp2_target {
int blocked; /* ditto */ int blocked; /* ditto */
}; };
static struct fw_device *target_device(struct sbp2_target *tgt)
{
return fw_parent_device(tgt->unit);
}
/* Impossible login_id, to detect logout attempt before successful login */ /* Impossible login_id, to detect logout attempt before successful login */
#define INVALID_LOGIN_ID 0x10000 #define INVALID_LOGIN_ID 0x10000
...@@ -488,7 +493,7 @@ static void complete_transaction(struct fw_card *card, int rcode, ...@@ -488,7 +493,7 @@ static void complete_transaction(struct fw_card *card, int rcode,
static void sbp2_send_orb(struct sbp2_orb *orb, struct sbp2_logical_unit *lu, static void sbp2_send_orb(struct sbp2_orb *orb, struct sbp2_logical_unit *lu,
int node_id, int generation, u64 offset) int node_id, int generation, u64 offset)
{ {
struct fw_device *device = fw_device(lu->tgt->unit->device.parent); struct fw_device *device = target_device(lu->tgt);
unsigned long flags; unsigned long flags;
orb->pointer.high = 0; orb->pointer.high = 0;
...@@ -510,7 +515,7 @@ static void sbp2_send_orb(struct sbp2_orb *orb, struct sbp2_logical_unit *lu, ...@@ -510,7 +515,7 @@ static void sbp2_send_orb(struct sbp2_orb *orb, struct sbp2_logical_unit *lu,
static int sbp2_cancel_orbs(struct sbp2_logical_unit *lu) static int sbp2_cancel_orbs(struct sbp2_logical_unit *lu)
{ {
struct fw_device *device = fw_device(lu->tgt->unit->device.parent); struct fw_device *device = target_device(lu->tgt);
struct sbp2_orb *orb, *next; struct sbp2_orb *orb, *next;
struct list_head list; struct list_head list;
unsigned long flags; unsigned long flags;
...@@ -548,7 +553,7 @@ static int sbp2_send_management_orb(struct sbp2_logical_unit *lu, int node_id, ...@@ -548,7 +553,7 @@ static int sbp2_send_management_orb(struct sbp2_logical_unit *lu, int node_id,
int generation, int function, int generation, int function,
int lun_or_login_id, void *response) int lun_or_login_id, void *response)
{ {
struct fw_device *device = fw_device(lu->tgt->unit->device.parent); struct fw_device *device = target_device(lu->tgt);
struct sbp2_management_orb *orb; struct sbp2_management_orb *orb;
unsigned int timeout; unsigned int timeout;
int retval = -ENOMEM; int retval = -ENOMEM;
...@@ -644,7 +649,7 @@ static int sbp2_send_management_orb(struct sbp2_logical_unit *lu, int node_id, ...@@ -644,7 +649,7 @@ static int sbp2_send_management_orb(struct sbp2_logical_unit *lu, int node_id,
static void sbp2_agent_reset(struct sbp2_logical_unit *lu) static void sbp2_agent_reset(struct sbp2_logical_unit *lu)
{ {
struct fw_device *device = fw_device(lu->tgt->unit->device.parent); struct fw_device *device = target_device(lu->tgt);
__be32 d = 0; __be32 d = 0;
fw_run_transaction(device->card, TCODE_WRITE_QUADLET_REQUEST, fw_run_transaction(device->card, TCODE_WRITE_QUADLET_REQUEST,
...@@ -661,7 +666,7 @@ static void complete_agent_reset_write_no_wait(struct fw_card *card, ...@@ -661,7 +666,7 @@ static void complete_agent_reset_write_no_wait(struct fw_card *card,
static void sbp2_agent_reset_no_wait(struct sbp2_logical_unit *lu) static void sbp2_agent_reset_no_wait(struct sbp2_logical_unit *lu)
{ {
struct fw_device *device = fw_device(lu->tgt->unit->device.parent); struct fw_device *device = target_device(lu->tgt);
struct fw_transaction *t; struct fw_transaction *t;
static __be32 d; static __be32 d;
...@@ -700,7 +705,7 @@ static inline void sbp2_allow_block(struct sbp2_logical_unit *lu) ...@@ -700,7 +705,7 @@ static inline void sbp2_allow_block(struct sbp2_logical_unit *lu)
static void sbp2_conditionally_block(struct sbp2_logical_unit *lu) static void sbp2_conditionally_block(struct sbp2_logical_unit *lu)
{ {
struct sbp2_target *tgt = lu->tgt; struct sbp2_target *tgt = lu->tgt;
struct fw_card *card = fw_device(tgt->unit->device.parent)->card; struct fw_card *card = target_device(tgt)->card;
struct Scsi_Host *shost = struct Scsi_Host *shost =
container_of((void *)tgt, struct Scsi_Host, hostdata[0]); container_of((void *)tgt, struct Scsi_Host, hostdata[0]);
unsigned long flags; unsigned long flags;
...@@ -724,7 +729,7 @@ static void sbp2_conditionally_block(struct sbp2_logical_unit *lu) ...@@ -724,7 +729,7 @@ static void sbp2_conditionally_block(struct sbp2_logical_unit *lu)
static void sbp2_conditionally_unblock(struct sbp2_logical_unit *lu) static void sbp2_conditionally_unblock(struct sbp2_logical_unit *lu)
{ {
struct sbp2_target *tgt = lu->tgt; struct sbp2_target *tgt = lu->tgt;
struct fw_card *card = fw_device(tgt->unit->device.parent)->card; struct fw_card *card = target_device(tgt)->card;
struct Scsi_Host *shost = struct Scsi_Host *shost =
container_of((void *)tgt, struct Scsi_Host, hostdata[0]); container_of((void *)tgt, struct Scsi_Host, hostdata[0]);
unsigned long flags; unsigned long flags;
...@@ -749,7 +754,7 @@ static void sbp2_conditionally_unblock(struct sbp2_logical_unit *lu) ...@@ -749,7 +754,7 @@ static void sbp2_conditionally_unblock(struct sbp2_logical_unit *lu)
*/ */
static void sbp2_unblock(struct sbp2_target *tgt) static void sbp2_unblock(struct sbp2_target *tgt)
{ {
struct fw_card *card = fw_device(tgt->unit->device.parent)->card; struct fw_card *card = target_device(tgt)->card;
struct Scsi_Host *shost = struct Scsi_Host *shost =
container_of((void *)tgt, struct Scsi_Host, hostdata[0]); container_of((void *)tgt, struct Scsi_Host, hostdata[0]);
unsigned long flags; unsigned long flags;
...@@ -779,7 +784,7 @@ static void sbp2_release_target(struct kref *kref) ...@@ -779,7 +784,7 @@ static void sbp2_release_target(struct kref *kref)
struct Scsi_Host *shost = struct Scsi_Host *shost =
container_of((void *)tgt, struct Scsi_Host, hostdata[0]); container_of((void *)tgt, struct Scsi_Host, hostdata[0]);
struct scsi_device *sdev; struct scsi_device *sdev;
struct fw_device *device = fw_device(tgt->unit->device.parent); struct fw_device *device = target_device(tgt);
/* prevent deadlocks */ /* prevent deadlocks */
sbp2_unblock(tgt); sbp2_unblock(tgt);
...@@ -852,7 +857,7 @@ static void sbp2_queue_work(struct sbp2_logical_unit *lu, unsigned long delay) ...@@ -852,7 +857,7 @@ static void sbp2_queue_work(struct sbp2_logical_unit *lu, unsigned long delay)
*/ */
static void sbp2_set_busy_timeout(struct sbp2_logical_unit *lu) static void sbp2_set_busy_timeout(struct sbp2_logical_unit *lu)
{ {
struct fw_device *device = fw_device(lu->tgt->unit->device.parent); struct fw_device *device = target_device(lu->tgt);
__be32 d = cpu_to_be32(SBP2_CYCLE_LIMIT | SBP2_RETRY_LIMIT); __be32 d = cpu_to_be32(SBP2_CYCLE_LIMIT | SBP2_RETRY_LIMIT);
fw_run_transaction(device->card, TCODE_WRITE_QUADLET_REQUEST, fw_run_transaction(device->card, TCODE_WRITE_QUADLET_REQUEST,
...@@ -868,7 +873,7 @@ static void sbp2_login(struct work_struct *work) ...@@ -868,7 +873,7 @@ static void sbp2_login(struct work_struct *work)
struct sbp2_logical_unit *lu = struct sbp2_logical_unit *lu =
container_of(work, struct sbp2_logical_unit, work.work); container_of(work, struct sbp2_logical_unit, work.work);
struct sbp2_target *tgt = lu->tgt; struct sbp2_target *tgt = lu->tgt;
struct fw_device *device = fw_device(tgt->unit->device.parent); struct fw_device *device = target_device(tgt);
struct Scsi_Host *shost; struct Scsi_Host *shost;
struct scsi_device *sdev; struct scsi_device *sdev;
struct sbp2_login_response response; struct sbp2_login_response response;
...@@ -1116,7 +1121,7 @@ static struct scsi_host_template scsi_driver_template; ...@@ -1116,7 +1121,7 @@ static struct scsi_host_template scsi_driver_template;
static int sbp2_probe(struct device *dev) static int sbp2_probe(struct device *dev)
{ {
struct fw_unit *unit = fw_unit(dev); struct fw_unit *unit = fw_unit(dev);
struct fw_device *device = fw_device(unit->device.parent); struct fw_device *device = fw_parent_device(unit);
struct sbp2_target *tgt; struct sbp2_target *tgt;
struct sbp2_logical_unit *lu; struct sbp2_logical_unit *lu;
struct Scsi_Host *shost; struct Scsi_Host *shost;
...@@ -1197,7 +1202,7 @@ static void sbp2_reconnect(struct work_struct *work) ...@@ -1197,7 +1202,7 @@ static void sbp2_reconnect(struct work_struct *work)
struct sbp2_logical_unit *lu = struct sbp2_logical_unit *lu =
container_of(work, struct sbp2_logical_unit, work.work); container_of(work, struct sbp2_logical_unit, work.work);
struct sbp2_target *tgt = lu->tgt; struct sbp2_target *tgt = lu->tgt;
struct fw_device *device = fw_device(tgt->unit->device.parent); struct fw_device *device = target_device(tgt);
int generation, node_id, local_node_id; int generation, node_id, local_node_id;
if (fw_device_is_shutdown(device)) if (fw_device_is_shutdown(device))
...@@ -1249,7 +1254,7 @@ static void sbp2_update(struct fw_unit *unit) ...@@ -1249,7 +1254,7 @@ static void sbp2_update(struct fw_unit *unit)
struct sbp2_target *tgt = unit->device.driver_data; struct sbp2_target *tgt = unit->device.driver_data;
struct sbp2_logical_unit *lu; struct sbp2_logical_unit *lu;
fw_device_enable_phys_dma(fw_device(unit->device.parent)); fw_device_enable_phys_dma(fw_parent_device(unit));
/* /*
* Fw-core serializes sbp2_update() against sbp2_remove(). * Fw-core serializes sbp2_update() against sbp2_remove().
...@@ -1342,7 +1347,7 @@ static void complete_command_orb(struct sbp2_orb *base_orb, ...@@ -1342,7 +1347,7 @@ static void complete_command_orb(struct sbp2_orb *base_orb,
{ {
struct sbp2_command_orb *orb = struct sbp2_command_orb *orb =
container_of(base_orb, struct sbp2_command_orb, base); container_of(base_orb, struct sbp2_command_orb, base);
struct fw_device *device = fw_device(orb->lu->tgt->unit->device.parent); struct fw_device *device = target_device(orb->lu->tgt);
int result; int result;
if (status != NULL) { if (status != NULL) {
...@@ -1449,7 +1454,7 @@ static int sbp2_map_scatterlist(struct sbp2_command_orb *orb, ...@@ -1449,7 +1454,7 @@ static int sbp2_map_scatterlist(struct sbp2_command_orb *orb,
static int sbp2_scsi_queuecommand(struct scsi_cmnd *cmd, scsi_done_fn_t done) static int sbp2_scsi_queuecommand(struct scsi_cmnd *cmd, scsi_done_fn_t done)
{ {
struct sbp2_logical_unit *lu = cmd->device->hostdata; struct sbp2_logical_unit *lu = cmd->device->hostdata;
struct fw_device *device = fw_device(lu->tgt->unit->device.parent); struct fw_device *device = target_device(lu->tgt);
struct sbp2_command_orb *orb; struct sbp2_command_orb *orb;
int generation, retval = SCSI_MLQUEUE_HOST_BUSY; int generation, retval = SCSI_MLQUEUE_HOST_BUSY;
......
...@@ -248,6 +248,11 @@ static inline void fw_unit_put(struct fw_unit *unit) ...@@ -248,6 +248,11 @@ static inline void fw_unit_put(struct fw_unit *unit)
put_device(&unit->device); put_device(&unit->device);
} }
static inline struct fw_device *fw_parent_device(struct fw_unit *unit)
{
return fw_device(unit->device.parent);
}
struct ieee1394_device_id; struct ieee1394_device_id;
struct fw_driver { struct fw_driver {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment