Linux Audio

Check our new training course

Loading...
v6.8
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Serial Attached SCSI (SAS) Phy class
  4 *
  5 * Copyright (C) 2005 Adaptec, Inc.  All rights reserved.
  6 * Copyright (C) 2005 Luben Tuikov <luben_tuikov@adaptec.com>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  7 */
  8
  9#include "sas_internal.h"
 10#include <scsi/scsi_host.h>
 11#include <scsi/scsi_transport.h>
 12#include <scsi/scsi_transport_sas.h>
 13#include "scsi_sas_internal.h"
 14
 15/* ---------- Phy events ---------- */
 16
 17static void sas_phye_loss_of_signal(struct work_struct *work)
 18{
 19	struct asd_sas_event *ev = to_asd_sas_event(work);
 20	struct asd_sas_phy *phy = ev->phy;
 21
 
 22	phy->error = 0;
 23	sas_deform_port(phy, 1);
 24}
 25
 26static void sas_phye_oob_done(struct work_struct *work)
 27{
 28	struct asd_sas_event *ev = to_asd_sas_event(work);
 29	struct asd_sas_phy *phy = ev->phy;
 30
 
 31	phy->error = 0;
 32}
 33
 34static void sas_phye_oob_error(struct work_struct *work)
 35{
 36	struct asd_sas_event *ev = to_asd_sas_event(work);
 37	struct asd_sas_phy *phy = ev->phy;
 38	struct sas_ha_struct *sas_ha = phy->ha;
 39	struct asd_sas_port *port = phy->port;
 40	struct sas_internal *i =
 41		to_sas_internal(sas_ha->shost->transportt);
 
 
 42
 43	sas_deform_port(phy, 1);
 44
 45	if (!port && phy->enabled && i->dft->lldd_control_phy) {
 46		phy->error++;
 47		switch (phy->error) {
 48		case 1:
 49		case 2:
 50			i->dft->lldd_control_phy(phy, PHY_FUNC_HARD_RESET,
 51						 NULL);
 52			break;
 53		case 3:
 54		default:
 55			phy->error = 0;
 56			phy->enabled = 0;
 57			i->dft->lldd_control_phy(phy, PHY_FUNC_DISABLE, NULL);
 58			break;
 59		}
 60	}
 61}
 62
 63static void sas_phye_spinup_hold(struct work_struct *work)
 64{
 65	struct asd_sas_event *ev = to_asd_sas_event(work);
 66	struct asd_sas_phy *phy = ev->phy;
 67	struct sas_ha_struct *sas_ha = phy->ha;
 68	struct sas_internal *i =
 69		to_sas_internal(sas_ha->shost->transportt);
 70
 71	phy->error = 0;
 72	i->dft->lldd_control_phy(phy, PHY_FUNC_RELEASE_SPINUP_HOLD, NULL);
 73}
 74
 75static void sas_phye_resume_timeout(struct work_struct *work)
 76{
 77	struct asd_sas_event *ev = to_asd_sas_event(work);
 78	struct asd_sas_phy *phy = ev->phy;
 79
 80	/* phew, lldd got the phy back in the nick of time */
 81	if (!phy->suspended) {
 82		dev_info(&phy->phy->dev, "resume timeout cancelled\n");
 83		return;
 84	}
 85
 86	phy->error = 0;
 87	phy->suspended = 0;
 88	sas_deform_port(phy, 1);
 89}
 90
 91
 92static void sas_phye_shutdown(struct work_struct *work)
 93{
 94	struct asd_sas_event *ev = to_asd_sas_event(work);
 95	struct asd_sas_phy *phy = ev->phy;
 96	struct sas_ha_struct *sas_ha = phy->ha;
 97	struct sas_internal *i =
 98		to_sas_internal(sas_ha->shost->transportt);
 99
100	if (phy->enabled) {
101		int ret;
102
103		phy->error = 0;
104		phy->enabled = 0;
105		ret = i->dft->lldd_control_phy(phy, PHY_FUNC_DISABLE, NULL);
106		if (ret)
107			pr_notice("lldd disable phy%d returned %d\n", phy->id,
108				  ret);
109	} else
110		pr_notice("phy%d is not enabled, cannot shutdown\n", phy->id);
111	phy->in_shutdown = 0;
112}
113
114/* ---------- Phy class registration ---------- */
115
116int sas_register_phys(struct sas_ha_struct *sas_ha)
117{
118	int i;
119
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120	/* Now register the phys. */
121	for (i = 0; i < sas_ha->num_phys; i++) {
 
122		struct asd_sas_phy *phy = sas_ha->sas_phy[i];
123
124		phy->error = 0;
125		atomic_set(&phy->event_nr, 0);
126		INIT_LIST_HEAD(&phy->port_phy_el);
 
 
 
 
 
 
 
 
 
127
128		phy->port = NULL;
129		phy->ha = sas_ha;
130		spin_lock_init(&phy->frame_rcvd_lock);
131		spin_lock_init(&phy->sas_prim_lock);
132		phy->frame_rcvd_size = 0;
133
134		phy->phy = sas_phy_alloc(&sas_ha->shost->shost_gendev, i);
135		if (!phy->phy)
136			return -ENOMEM;
137
138		phy->phy->identify.initiator_port_protocols =
139			phy->iproto;
140		phy->phy->identify.target_port_protocols = phy->tproto;
141		phy->phy->identify.sas_address = SAS_ADDR(sas_ha->sas_addr);
142		phy->phy->identify.phy_identifier = i;
143		phy->phy->minimum_linkrate_hw = SAS_LINK_RATE_UNKNOWN;
144		phy->phy->maximum_linkrate_hw = SAS_LINK_RATE_UNKNOWN;
145		phy->phy->minimum_linkrate = SAS_LINK_RATE_UNKNOWN;
146		phy->phy->maximum_linkrate = SAS_LINK_RATE_UNKNOWN;
147		phy->phy->negotiated_linkrate = SAS_LINK_RATE_UNKNOWN;
148
149		sas_phy_add(phy->phy);
150	}
151
152	return 0;
153}
154
155const work_func_t sas_phy_event_fns[PHY_NUM_EVENTS] = {
156	[PHYE_LOSS_OF_SIGNAL] = sas_phye_loss_of_signal,
157	[PHYE_OOB_DONE] = sas_phye_oob_done,
158	[PHYE_OOB_ERROR] = sas_phye_oob_error,
159	[PHYE_SPINUP_HOLD] = sas_phye_spinup_hold,
160	[PHYE_RESUME_TIMEOUT] = sas_phye_resume_timeout,
161	[PHYE_SHUTDOWN] = sas_phye_shutdown,
162};
v3.5.6
 
  1/*
  2 * Serial Attached SCSI (SAS) Phy class
  3 *
  4 * Copyright (C) 2005 Adaptec, Inc.  All rights reserved.
  5 * Copyright (C) 2005 Luben Tuikov <luben_tuikov@adaptec.com>
  6 *
  7 * This file is licensed under GPLv2.
  8 *
  9 * This program is free software; you can redistribute it and/or
 10 * modify it under the terms of the GNU General Public License as
 11 * published by the Free Software Foundation; either version 2 of the
 12 * License, or (at your option) any later version.
 13 *
 14 * This program is distributed in the hope that it will be useful, but
 15 * WITHOUT ANY WARRANTY; without even the implied warranty of
 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 17 * General Public License for more details.
 18 *
 19 * You should have received a copy of the GNU General Public License
 20 * along with this program; if not, write to the Free Software
 21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 22 *
 23 */
 24
 25#include "sas_internal.h"
 26#include <scsi/scsi_host.h>
 27#include <scsi/scsi_transport.h>
 28#include <scsi/scsi_transport_sas.h>
 29#include "../scsi_sas_internal.h"
 30
 31/* ---------- Phy events ---------- */
 32
 33static void sas_phye_loss_of_signal(struct work_struct *work)
 34{
 35	struct asd_sas_event *ev = to_asd_sas_event(work);
 36	struct asd_sas_phy *phy = ev->phy;
 37
 38	clear_bit(PHYE_LOSS_OF_SIGNAL, &phy->phy_events_pending);
 39	phy->error = 0;
 40	sas_deform_port(phy, 1);
 41}
 42
 43static void sas_phye_oob_done(struct work_struct *work)
 44{
 45	struct asd_sas_event *ev = to_asd_sas_event(work);
 46	struct asd_sas_phy *phy = ev->phy;
 47
 48	clear_bit(PHYE_OOB_DONE, &phy->phy_events_pending);
 49	phy->error = 0;
 50}
 51
 52static void sas_phye_oob_error(struct work_struct *work)
 53{
 54	struct asd_sas_event *ev = to_asd_sas_event(work);
 55	struct asd_sas_phy *phy = ev->phy;
 56	struct sas_ha_struct *sas_ha = phy->ha;
 57	struct asd_sas_port *port = phy->port;
 58	struct sas_internal *i =
 59		to_sas_internal(sas_ha->core.shost->transportt);
 60
 61	clear_bit(PHYE_OOB_ERROR, &phy->phy_events_pending);
 62
 63	sas_deform_port(phy, 1);
 64
 65	if (!port && phy->enabled && i->dft->lldd_control_phy) {
 66		phy->error++;
 67		switch (phy->error) {
 68		case 1:
 69		case 2:
 70			i->dft->lldd_control_phy(phy, PHY_FUNC_HARD_RESET,
 71						 NULL);
 72			break;
 73		case 3:
 74		default:
 75			phy->error = 0;
 76			phy->enabled = 0;
 77			i->dft->lldd_control_phy(phy, PHY_FUNC_DISABLE, NULL);
 78			break;
 79		}
 80	}
 81}
 82
 83static void sas_phye_spinup_hold(struct work_struct *work)
 84{
 85	struct asd_sas_event *ev = to_asd_sas_event(work);
 86	struct asd_sas_phy *phy = ev->phy;
 87	struct sas_ha_struct *sas_ha = phy->ha;
 88	struct sas_internal *i =
 89		to_sas_internal(sas_ha->core.shost->transportt);
 90
 91	clear_bit(PHYE_SPINUP_HOLD, &phy->phy_events_pending);
 
 
 
 
 
 
 
 
 
 
 
 
 
 92
 93	phy->error = 0;
 94	i->dft->lldd_control_phy(phy, PHY_FUNC_RELEASE_SPINUP_HOLD, NULL);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 95}
 96
 97/* ---------- Phy class registration ---------- */
 98
 99int sas_register_phys(struct sas_ha_struct *sas_ha)
100{
101	int i;
102
103	static const work_func_t sas_phy_event_fns[PHY_NUM_EVENTS] = {
104		[PHYE_LOSS_OF_SIGNAL] = sas_phye_loss_of_signal,
105		[PHYE_OOB_DONE] = sas_phye_oob_done,
106		[PHYE_OOB_ERROR] = sas_phye_oob_error,
107		[PHYE_SPINUP_HOLD] = sas_phye_spinup_hold,
108	};
109
110	static const work_func_t sas_port_event_fns[PORT_NUM_EVENTS] = {
111		[PORTE_BYTES_DMAED] = sas_porte_bytes_dmaed,
112		[PORTE_BROADCAST_RCVD] = sas_porte_broadcast_rcvd,
113		[PORTE_LINK_RESET_ERR] = sas_porte_link_reset_err,
114		[PORTE_TIMER_EVENT] = sas_porte_timer_event,
115		[PORTE_HARD_RESET] = sas_porte_hard_reset,
116	};
117
118	/* Now register the phys. */
119	for (i = 0; i < sas_ha->num_phys; i++) {
120		int k;
121		struct asd_sas_phy *phy = sas_ha->sas_phy[i];
122
123		phy->error = 0;
 
124		INIT_LIST_HEAD(&phy->port_phy_el);
125		for (k = 0; k < PORT_NUM_EVENTS; k++) {
126			INIT_SAS_WORK(&phy->port_events[k].work, sas_port_event_fns[k]);
127			phy->port_events[k].phy = phy;
128		}
129
130		for (k = 0; k < PHY_NUM_EVENTS; k++) {
131			INIT_SAS_WORK(&phy->phy_events[k].work, sas_phy_event_fns[k]);
132			phy->phy_events[k].phy = phy;
133		}
134
135		phy->port = NULL;
136		phy->ha = sas_ha;
137		spin_lock_init(&phy->frame_rcvd_lock);
138		spin_lock_init(&phy->sas_prim_lock);
139		phy->frame_rcvd_size = 0;
140
141		phy->phy = sas_phy_alloc(&sas_ha->core.shost->shost_gendev, i);
142		if (!phy->phy)
143			return -ENOMEM;
144
145		phy->phy->identify.initiator_port_protocols =
146			phy->iproto;
147		phy->phy->identify.target_port_protocols = phy->tproto;
148		phy->phy->identify.sas_address = SAS_ADDR(sas_ha->sas_addr);
149		phy->phy->identify.phy_identifier = i;
150		phy->phy->minimum_linkrate_hw = SAS_LINK_RATE_UNKNOWN;
151		phy->phy->maximum_linkrate_hw = SAS_LINK_RATE_UNKNOWN;
152		phy->phy->minimum_linkrate = SAS_LINK_RATE_UNKNOWN;
153		phy->phy->maximum_linkrate = SAS_LINK_RATE_UNKNOWN;
154		phy->phy->negotiated_linkrate = SAS_LINK_RATE_UNKNOWN;
155
156		sas_phy_add(phy->phy);
157	}
158
159	return 0;
160}