port_config.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778
  1. /*
  2. * This file is provided under a dual BSD/GPLv2 license. When using or
  3. * redistributing this file, you may do so under either license.
  4. *
  5. * GPL LICENSE SUMMARY
  6. *
  7. * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of version 2 of the GNU General Public License as
  11. * published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
  21. * The full GNU General Public License is included in this distribution
  22. * in the file called LICENSE.GPL.
  23. *
  24. * BSD LICENSE
  25. *
  26. * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
  27. * All rights reserved.
  28. *
  29. * Redistribution and use in source and binary forms, with or without
  30. * modification, are permitted provided that the following conditions
  31. * are met:
  32. *
  33. * * Redistributions of source code must retain the above copyright
  34. * notice, this list of conditions and the following disclaimer.
  35. * * Redistributions in binary form must reproduce the above copyright
  36. * notice, this list of conditions and the following disclaimer in
  37. * the documentation and/or other materials provided with the
  38. * distribution.
  39. * * Neither the name of Intel Corporation nor the names of its
  40. * contributors may be used to endorse or promote products derived
  41. * from this software without specific prior written permission.
  42. *
  43. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  44. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  45. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  46. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  47. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  48. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  49. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  50. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  51. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  52. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  53. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  54. */
  55. #include "host.h"
  56. #define SCIC_SDS_MPC_RECONFIGURATION_TIMEOUT (10)
  57. #define SCIC_SDS_APC_RECONFIGURATION_TIMEOUT (10)
  58. #define SCIC_SDS_APC_WAIT_LINK_UP_NOTIFICATION (100)
  59. enum SCIC_SDS_APC_ACTIVITY {
  60. SCIC_SDS_APC_SKIP_PHY,
  61. SCIC_SDS_APC_ADD_PHY,
  62. SCIC_SDS_APC_START_TIMER,
  63. SCIC_SDS_APC_ACTIVITY_MAX
  64. };
  65. /*
  66. * ******************************************************************************
  67. * General port configuration agent routines
  68. * ****************************************************************************** */
  69. /**
  70. *
  71. * @address_one: A SAS Address to be compared.
  72. * @address_two: A SAS Address to be compared.
  73. *
  74. * Compare the two SAS Address and if SAS Address One is greater than SAS
  75. * Address Two then return > 0 else if SAS Address One is less than SAS Address
  76. * Two return < 0 Otherwise they are the same return 0 A signed value of x > 0
  77. * > y where x is returned for Address One > Address Two y is returned for
  78. * Address One < Address Two 0 is returned ofr Address One = Address Two
  79. */
  80. static s32 sci_sas_address_compare(
  81. struct sci_sas_address address_one,
  82. struct sci_sas_address address_two)
  83. {
  84. if (address_one.high > address_two.high) {
  85. return 1;
  86. } else if (address_one.high < address_two.high) {
  87. return -1;
  88. } else if (address_one.low > address_two.low) {
  89. return 1;
  90. } else if (address_one.low < address_two.low) {
  91. return -1;
  92. }
  93. /* The two SAS Address must be identical */
  94. return 0;
  95. }
  96. /**
  97. *
  98. * @controller: The controller object used for the port search.
  99. * @phy: The phy object to match.
  100. *
  101. * This routine will find a matching port for the phy. This means that the
  102. * port and phy both have the same broadcast sas address and same received sas
  103. * address. The port address or the NULL if there is no matching
  104. * port. port address if the port can be found to match the phy.
  105. * NULL if there is no matching port for the phy.
  106. */
  107. static struct isci_port *scic_sds_port_configuration_agent_find_port(
  108. struct scic_sds_controller *scic,
  109. struct isci_phy *iphy)
  110. {
  111. u8 i;
  112. struct sci_sas_address port_sas_address;
  113. struct sci_sas_address port_attached_device_address;
  114. struct sci_sas_address phy_sas_address;
  115. struct sci_sas_address phy_attached_device_address;
  116. /*
  117. * Since this phy can be a member of a wide port check to see if one or
  118. * more phys match the sent and received SAS address as this phy in which
  119. * case it should participate in the same port.
  120. */
  121. scic_sds_phy_get_sas_address(iphy, &phy_sas_address);
  122. scic_sds_phy_get_attached_sas_address(iphy, &phy_attached_device_address);
  123. for (i = 0; i < scic->logical_port_entries; i++) {
  124. struct isci_host *ihost = scic_to_ihost(scic);
  125. struct isci_port *iport = &ihost->ports[i];
  126. scic_sds_port_get_sas_address(iport, &port_sas_address);
  127. scic_sds_port_get_attached_sas_address(iport, &port_attached_device_address);
  128. if (sci_sas_address_compare(port_sas_address, phy_sas_address) == 0 &&
  129. sci_sas_address_compare(port_attached_device_address, phy_attached_device_address) == 0)
  130. return iport;
  131. }
  132. return NULL;
  133. }
  134. /**
  135. *
  136. * @controller: This is the controller object that contains the port agent
  137. * @port_agent: This is the port configruation agent for the controller.
  138. *
  139. * This routine will validate the port configuration is correct for the SCU
  140. * hardware. The SCU hardware allows for port configurations as follows. LP0
  141. * -> (PE0), (PE0, PE1), (PE0, PE1, PE2, PE3) LP1 -> (PE1) LP2 -> (PE2), (PE2,
  142. * PE3) LP3 -> (PE3) enum sci_status SCI_SUCCESS the port configuration is valid for
  143. * this port configuration agent. SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION
  144. * the port configuration is not valid for this port configuration agent.
  145. */
  146. static enum sci_status scic_sds_port_configuration_agent_validate_ports(
  147. struct scic_sds_controller *controller,
  148. struct scic_sds_port_configuration_agent *port_agent)
  149. {
  150. struct isci_host *ihost = scic_to_ihost(controller);
  151. struct sci_sas_address first_address;
  152. struct sci_sas_address second_address;
  153. /*
  154. * Sanity check the max ranges for all the phys the max index
  155. * is always equal to the port range index */
  156. if (port_agent->phy_valid_port_range[0].max_index != 0 ||
  157. port_agent->phy_valid_port_range[1].max_index != 1 ||
  158. port_agent->phy_valid_port_range[2].max_index != 2 ||
  159. port_agent->phy_valid_port_range[3].max_index != 3)
  160. return SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION;
  161. /*
  162. * This is a request to configure a single x4 port or at least attempt
  163. * to make all the phys into a single port */
  164. if (port_agent->phy_valid_port_range[0].min_index == 0 &&
  165. port_agent->phy_valid_port_range[1].min_index == 0 &&
  166. port_agent->phy_valid_port_range[2].min_index == 0 &&
  167. port_agent->phy_valid_port_range[3].min_index == 0)
  168. return SCI_SUCCESS;
  169. /*
  170. * This is a degenerate case where phy 1 and phy 2 are assigned
  171. * to the same port this is explicitly disallowed by the hardware
  172. * unless they are part of the same x4 port and this condition was
  173. * already checked above. */
  174. if (port_agent->phy_valid_port_range[2].min_index == 1) {
  175. return SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION;
  176. }
  177. /*
  178. * PE0 and PE3 can never have the same SAS Address unless they
  179. * are part of the same x4 wide port and we have already checked
  180. * for this condition. */
  181. scic_sds_phy_get_sas_address(&ihost->phys[0], &first_address);
  182. scic_sds_phy_get_sas_address(&ihost->phys[3], &second_address);
  183. if (sci_sas_address_compare(first_address, second_address) == 0) {
  184. return SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION;
  185. }
  186. /*
  187. * PE0 and PE1 are configured into a 2x1 ports make sure that the
  188. * SAS Address for PE0 and PE2 are different since they can not be
  189. * part of the same port. */
  190. if (port_agent->phy_valid_port_range[0].min_index == 0 &&
  191. port_agent->phy_valid_port_range[1].min_index == 1) {
  192. scic_sds_phy_get_sas_address(&ihost->phys[0], &first_address);
  193. scic_sds_phy_get_sas_address(&ihost->phys[2], &second_address);
  194. if (sci_sas_address_compare(first_address, second_address) == 0) {
  195. return SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION;
  196. }
  197. }
  198. /*
  199. * PE2 and PE3 are configured into a 2x1 ports make sure that the
  200. * SAS Address for PE1 and PE3 are different since they can not be
  201. * part of the same port. */
  202. if (port_agent->phy_valid_port_range[2].min_index == 2 &&
  203. port_agent->phy_valid_port_range[3].min_index == 3) {
  204. scic_sds_phy_get_sas_address(&ihost->phys[1], &first_address);
  205. scic_sds_phy_get_sas_address(&ihost->phys[3], &second_address);
  206. if (sci_sas_address_compare(first_address, second_address) == 0) {
  207. return SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION;
  208. }
  209. }
  210. return SCI_SUCCESS;
  211. }
  212. /*
  213. * ******************************************************************************
  214. * Manual port configuration agent routines
  215. * ****************************************************************************** */
  216. /**
  217. *
  218. *
  219. * This routine will verify that all of the phys in the same port are using the
  220. * same SAS address.
  221. */
  222. static enum sci_status scic_sds_mpc_agent_validate_phy_configuration(
  223. struct scic_sds_controller *controller,
  224. struct scic_sds_port_configuration_agent *port_agent)
  225. {
  226. struct isci_host *ihost = scic_to_ihost(controller);
  227. u32 phy_mask;
  228. u32 assigned_phy_mask;
  229. struct sci_sas_address sas_address;
  230. struct sci_sas_address phy_assigned_address;
  231. u8 port_index;
  232. u8 phy_index;
  233. assigned_phy_mask = 0;
  234. sas_address.high = 0;
  235. sas_address.low = 0;
  236. for (port_index = 0; port_index < SCI_MAX_PORTS; port_index++) {
  237. phy_mask = controller->oem_parameters.sds1.ports[port_index].phy_mask;
  238. if (!phy_mask)
  239. continue;
  240. /*
  241. * Make sure that one or more of the phys were not already assinged to
  242. * a different port. */
  243. if ((phy_mask & ~assigned_phy_mask) == 0) {
  244. return SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION;
  245. }
  246. /* Find the starting phy index for this round through the loop */
  247. for (phy_index = 0; phy_index < SCI_MAX_PHYS; phy_index++) {
  248. if ((phy_mask & (1 << phy_index)) == 0)
  249. continue;
  250. scic_sds_phy_get_sas_address(&ihost->phys[phy_index],
  251. &sas_address);
  252. /*
  253. * The phy_index can be used as the starting point for the
  254. * port range since the hardware starts all logical ports
  255. * the same as the PE index. */
  256. port_agent->phy_valid_port_range[phy_index].min_index = port_index;
  257. port_agent->phy_valid_port_range[phy_index].max_index = phy_index;
  258. if (phy_index != port_index) {
  259. return SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION;
  260. }
  261. break;
  262. }
  263. /*
  264. * See how many additional phys are being added to this logical port.
  265. * Note: We have not moved the current phy_index so we will actually
  266. * compare the startting phy with itself.
  267. * This is expected and required to add the phy to the port. */
  268. while (phy_index < SCI_MAX_PHYS) {
  269. if ((phy_mask & (1 << phy_index)) == 0)
  270. continue;
  271. scic_sds_phy_get_sas_address(&ihost->phys[phy_index],
  272. &phy_assigned_address);
  273. if (sci_sas_address_compare(sas_address, phy_assigned_address) != 0) {
  274. /*
  275. * The phy mask specified that this phy is part of the same port
  276. * as the starting phy and it is not so fail this configuration */
  277. return SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION;
  278. }
  279. port_agent->phy_valid_port_range[phy_index].min_index = port_index;
  280. port_agent->phy_valid_port_range[phy_index].max_index = phy_index;
  281. scic_sds_port_add_phy(&ihost->ports[port_index],
  282. &ihost->phys[phy_index]);
  283. assigned_phy_mask |= (1 << phy_index);
  284. }
  285. phy_index++;
  286. }
  287. return scic_sds_port_configuration_agent_validate_ports(controller, port_agent);
  288. }
  289. static void mpc_agent_timeout(unsigned long data)
  290. {
  291. u8 index;
  292. struct sci_timer *tmr = (struct sci_timer *)data;
  293. struct scic_sds_port_configuration_agent *port_agent;
  294. struct scic_sds_controller *scic;
  295. struct isci_host *ihost;
  296. unsigned long flags;
  297. u16 configure_phy_mask;
  298. port_agent = container_of(tmr, typeof(*port_agent), timer);
  299. scic = container_of(port_agent, typeof(*scic), port_agent);
  300. ihost = scic_to_ihost(scic);
  301. spin_lock_irqsave(&ihost->scic_lock, flags);
  302. if (tmr->cancel)
  303. goto done;
  304. port_agent->timer_pending = false;
  305. /* Find the mask of phys that are reported read but as yet unconfigured into a port */
  306. configure_phy_mask = ~port_agent->phy_configured_mask & port_agent->phy_ready_mask;
  307. for (index = 0; index < SCI_MAX_PHYS; index++) {
  308. struct isci_phy *iphy = &ihost->phys[index];
  309. if (configure_phy_mask & (1 << index)) {
  310. port_agent->link_up_handler(scic, port_agent,
  311. phy_get_non_dummy_port(iphy),
  312. iphy);
  313. }
  314. }
  315. done:
  316. spin_unlock_irqrestore(&ihost->scic_lock, flags);
  317. }
  318. static void scic_sds_mpc_agent_link_up(struct scic_sds_controller *controller,
  319. struct scic_sds_port_configuration_agent *port_agent,
  320. struct isci_port *iport,
  321. struct isci_phy *iphy)
  322. {
  323. /* If the port is NULL then the phy was not assigned to a port.
  324. * This is because the phy was not given the same SAS Address as
  325. * the other PHYs in the port.
  326. */
  327. if (!iport)
  328. return;
  329. port_agent->phy_ready_mask |= (1 << scic_sds_phy_get_index(iphy));
  330. scic_sds_port_link_up(iport, iphy);
  331. if ((iport->active_phy_mask & (1 << scic_sds_phy_get_index(iphy))))
  332. port_agent->phy_configured_mask |= (1 << scic_sds_phy_get_index(iphy));
  333. }
  334. /**
  335. *
  336. * @controller: This is the controller object that receives the link down
  337. * notification.
  338. * @port: This is the port object associated with the phy. If the is no
  339. * associated port this is an NULL. The port is an invalid
  340. * handle only if the phy was never port of this port. This happens when
  341. * the phy is not broadcasting the same SAS address as the other phys in the
  342. * assigned port.
  343. * @phy: This is the phy object which has gone link down.
  344. *
  345. * This function handles the manual port configuration link down notifications.
  346. * Since all ports and phys are associated at initialization time we just turn
  347. * around and notifiy the port object of the link down event. If this PHY is
  348. * not associated with a port there is no action taken. Is it possible to get a
  349. * link down notification from a phy that has no assocoated port?
  350. */
  351. static void scic_sds_mpc_agent_link_down(
  352. struct scic_sds_controller *scic,
  353. struct scic_sds_port_configuration_agent *port_agent,
  354. struct isci_port *iport,
  355. struct isci_phy *iphy)
  356. {
  357. if (iport != NULL) {
  358. /*
  359. * If we can form a new port from the remainder of the phys
  360. * then we want to start the timer to allow the SCI User to
  361. * cleanup old devices and rediscover the port before
  362. * rebuilding the port with the phys that remain in the ready
  363. * state.
  364. */
  365. port_agent->phy_ready_mask &=
  366. ~(1 << scic_sds_phy_get_index(iphy));
  367. port_agent->phy_configured_mask &=
  368. ~(1 << scic_sds_phy_get_index(iphy));
  369. /*
  370. * Check to see if there are more phys waiting to be
  371. * configured into a port. If there are allow the SCI User
  372. * to tear down this port, if necessary, and then reconstruct
  373. * the port after the timeout.
  374. */
  375. if ((port_agent->phy_configured_mask == 0x0000) &&
  376. (port_agent->phy_ready_mask != 0x0000) &&
  377. !port_agent->timer_pending) {
  378. port_agent->timer_pending = true;
  379. sci_mod_timer(&port_agent->timer,
  380. SCIC_SDS_MPC_RECONFIGURATION_TIMEOUT);
  381. }
  382. scic_sds_port_link_down(iport, iphy);
  383. }
  384. }
  385. /*
  386. * ******************************************************************************
  387. * Automatic port configuration agent routines
  388. * ****************************************************************************** */
  389. /**
  390. *
  391. *
  392. * This routine will verify that the phys are assigned a valid SAS address for
  393. * automatic port configuration mode.
  394. */
  395. static enum sci_status scic_sds_apc_agent_validate_phy_configuration(
  396. struct scic_sds_controller *controller,
  397. struct scic_sds_port_configuration_agent *port_agent)
  398. {
  399. u8 phy_index;
  400. u8 port_index;
  401. struct sci_sas_address sas_address;
  402. struct sci_sas_address phy_assigned_address;
  403. struct isci_host *ihost = scic_to_ihost(controller);
  404. phy_index = 0;
  405. while (phy_index < SCI_MAX_PHYS) {
  406. port_index = phy_index;
  407. /* Get the assigned SAS Address for the first PHY on the controller. */
  408. scic_sds_phy_get_sas_address(&ihost->phys[phy_index],
  409. &sas_address);
  410. while (++phy_index < SCI_MAX_PHYS) {
  411. scic_sds_phy_get_sas_address(&ihost->phys[phy_index],
  412. &phy_assigned_address);
  413. /* Verify each of the SAS address are all the same for every PHY */
  414. if (sci_sas_address_compare(sas_address, phy_assigned_address) == 0) {
  415. port_agent->phy_valid_port_range[phy_index].min_index = port_index;
  416. port_agent->phy_valid_port_range[phy_index].max_index = phy_index;
  417. } else {
  418. port_agent->phy_valid_port_range[phy_index].min_index = phy_index;
  419. port_agent->phy_valid_port_range[phy_index].max_index = phy_index;
  420. break;
  421. }
  422. }
  423. }
  424. return scic_sds_port_configuration_agent_validate_ports(controller, port_agent);
  425. }
  426. static void scic_sds_apc_agent_configure_ports(struct scic_sds_controller *controller,
  427. struct scic_sds_port_configuration_agent *port_agent,
  428. struct isci_phy *iphy,
  429. bool start_timer)
  430. {
  431. u8 port_index;
  432. enum sci_status status;
  433. struct isci_port *iport;
  434. enum SCIC_SDS_APC_ACTIVITY apc_activity = SCIC_SDS_APC_SKIP_PHY;
  435. struct isci_host *ihost = scic_to_ihost(controller);
  436. iport = scic_sds_port_configuration_agent_find_port(controller, iphy);
  437. if (iport) {
  438. if (scic_sds_port_is_valid_phy_assignment(iport, iphy->phy_index))
  439. apc_activity = SCIC_SDS_APC_ADD_PHY;
  440. else
  441. apc_activity = SCIC_SDS_APC_SKIP_PHY;
  442. } else {
  443. /*
  444. * There is no matching Port for this PHY so lets search through the
  445. * Ports and see if we can add the PHY to its own port or maybe start
  446. * the timer and wait to see if a wider port can be made.
  447. *
  448. * Note the break when we reach the condition of the port id == phy id */
  449. for (port_index = port_agent->phy_valid_port_range[iphy->phy_index].min_index;
  450. port_index <= port_agent->phy_valid_port_range[iphy->phy_index].max_index;
  451. port_index++) {
  452. iport = &ihost->ports[port_index];
  453. /* First we must make sure that this PHY can be added to this Port. */
  454. if (scic_sds_port_is_valid_phy_assignment(iport, iphy->phy_index)) {
  455. /*
  456. * Port contains a PHY with a greater PHY ID than the current
  457. * PHY that has gone link up. This phy can not be part of any
  458. * port so skip it and move on. */
  459. if (iport->active_phy_mask > (1 << iphy->phy_index)) {
  460. apc_activity = SCIC_SDS_APC_SKIP_PHY;
  461. break;
  462. }
  463. /*
  464. * We have reached the end of our Port list and have not found
  465. * any reason why we should not either add the PHY to the port
  466. * or wait for more phys to become active. */
  467. if (iport->physical_port_index == iphy->phy_index) {
  468. /*
  469. * The Port either has no active PHYs.
  470. * Consider that if the port had any active PHYs we would have
  471. * or active PHYs with
  472. * a lower PHY Id than this PHY. */
  473. if (apc_activity != SCIC_SDS_APC_START_TIMER) {
  474. apc_activity = SCIC_SDS_APC_ADD_PHY;
  475. }
  476. break;
  477. }
  478. /*
  479. * The current Port has no active PHYs and this PHY could be part
  480. * of this Port. Since we dont know as yet setup to start the
  481. * timer and see if there is a better configuration. */
  482. if (iport->active_phy_mask == 0) {
  483. apc_activity = SCIC_SDS_APC_START_TIMER;
  484. }
  485. } else if (iport->active_phy_mask != 0) {
  486. /*
  487. * The Port has an active phy and the current Phy can not
  488. * participate in this port so skip the PHY and see if
  489. * there is a better configuration. */
  490. apc_activity = SCIC_SDS_APC_SKIP_PHY;
  491. }
  492. }
  493. }
  494. /*
  495. * Check to see if the start timer operations should instead map to an
  496. * add phy operation. This is caused because we have been waiting to
  497. * add a phy to a port but could not becuase the automatic port
  498. * configuration engine had a choice of possible ports for the phy.
  499. * Since we have gone through a timeout we are going to restrict the
  500. * choice to the smallest possible port. */
  501. if (
  502. (start_timer == false)
  503. && (apc_activity == SCIC_SDS_APC_START_TIMER)
  504. ) {
  505. apc_activity = SCIC_SDS_APC_ADD_PHY;
  506. }
  507. switch (apc_activity) {
  508. case SCIC_SDS_APC_ADD_PHY:
  509. status = scic_sds_port_add_phy(iport, iphy);
  510. if (status == SCI_SUCCESS) {
  511. port_agent->phy_configured_mask |= (1 << iphy->phy_index);
  512. }
  513. break;
  514. case SCIC_SDS_APC_START_TIMER:
  515. /*
  516. * This can occur for either a link down event, or a link
  517. * up event where we cannot yet tell the port to which a
  518. * phy belongs.
  519. */
  520. if (port_agent->timer_pending)
  521. sci_del_timer(&port_agent->timer);
  522. port_agent->timer_pending = true;
  523. sci_mod_timer(&port_agent->timer,
  524. SCIC_SDS_APC_WAIT_LINK_UP_NOTIFICATION);
  525. break;
  526. case SCIC_SDS_APC_SKIP_PHY:
  527. default:
  528. /* do nothing the PHY can not be made part of a port at this time. */
  529. break;
  530. }
  531. }
  532. /**
  533. * scic_sds_apc_agent_link_up - handle apc link up events
  534. * @scic: This is the controller object that receives the link up
  535. * notification.
  536. * @sci_port: This is the port object associated with the phy. If the is no
  537. * associated port this is an NULL.
  538. * @sci_phy: This is the phy object which has gone link up.
  539. *
  540. * This method handles the automatic port configuration for link up
  541. * notifications. Is it possible to get a link down notification from a phy
  542. * that has no assocoated port?
  543. */
  544. static void scic_sds_apc_agent_link_up(struct scic_sds_controller *scic,
  545. struct scic_sds_port_configuration_agent *port_agent,
  546. struct isci_port *iport,
  547. struct isci_phy *iphy)
  548. {
  549. u8 phy_index = iphy->phy_index;
  550. if (!iport) {
  551. /* the phy is not the part of this port */
  552. port_agent->phy_ready_mask |= 1 << phy_index;
  553. scic_sds_apc_agent_configure_ports(scic, port_agent, iphy, true);
  554. } else {
  555. /* the phy is already the part of the port */
  556. u32 port_state = iport->sm.current_state_id;
  557. /* if the PORT'S state is resetting then the link up is from
  558. * port hard reset in this case, we need to tell the port
  559. * that link up is recieved
  560. */
  561. BUG_ON(port_state != SCI_PORT_RESETTING);
  562. port_agent->phy_ready_mask |= 1 << phy_index;
  563. scic_sds_port_link_up(iport, iphy);
  564. }
  565. }
  566. /**
  567. *
  568. * @controller: This is the controller object that receives the link down
  569. * notification.
  570. * @iport: This is the port object associated with the phy. If the is no
  571. * associated port this is an NULL.
  572. * @iphy: This is the phy object which has gone link down.
  573. *
  574. * This method handles the automatic port configuration link down
  575. * notifications. not associated with a port there is no action taken. Is it
  576. * possible to get a link down notification from a phy that has no assocoated
  577. * port?
  578. */
  579. static void scic_sds_apc_agent_link_down(
  580. struct scic_sds_controller *controller,
  581. struct scic_sds_port_configuration_agent *port_agent,
  582. struct isci_port *iport,
  583. struct isci_phy *iphy)
  584. {
  585. port_agent->phy_ready_mask &= ~(1 << scic_sds_phy_get_index(iphy));
  586. if (!iport)
  587. return;
  588. if (port_agent->phy_configured_mask & (1 << iphy->phy_index)) {
  589. enum sci_status status;
  590. status = scic_sds_port_remove_phy(iport, iphy);
  591. if (status == SCI_SUCCESS)
  592. port_agent->phy_configured_mask &= ~(1 << iphy->phy_index);
  593. }
  594. }
  595. /* configure the phys into ports when the timer fires */
  596. static void apc_agent_timeout(unsigned long data)
  597. {
  598. u32 index;
  599. struct sci_timer *tmr = (struct sci_timer *)data;
  600. struct scic_sds_port_configuration_agent *port_agent;
  601. struct scic_sds_controller *scic;
  602. struct isci_host *ihost;
  603. unsigned long flags;
  604. u16 configure_phy_mask;
  605. port_agent = container_of(tmr, typeof(*port_agent), timer);
  606. scic = container_of(port_agent, typeof(*scic), port_agent);
  607. ihost = scic_to_ihost(scic);
  608. spin_lock_irqsave(&ihost->scic_lock, flags);
  609. if (tmr->cancel)
  610. goto done;
  611. port_agent->timer_pending = false;
  612. configure_phy_mask = ~port_agent->phy_configured_mask & port_agent->phy_ready_mask;
  613. if (!configure_phy_mask)
  614. return;
  615. for (index = 0; index < SCI_MAX_PHYS; index++) {
  616. if ((configure_phy_mask & (1 << index)) == 0)
  617. continue;
  618. scic_sds_apc_agent_configure_ports(scic, port_agent,
  619. &ihost->phys[index], false);
  620. }
  621. done:
  622. spin_unlock_irqrestore(&ihost->scic_lock, flags);
  623. }
  624. /*
  625. * ******************************************************************************
  626. * Public port configuration agent routines
  627. * ****************************************************************************** */
  628. /**
  629. *
  630. *
  631. * This method will construct the port configuration agent for operation. This
  632. * call is universal for both manual port configuration and automatic port
  633. * configuration modes.
  634. */
  635. void scic_sds_port_configuration_agent_construct(
  636. struct scic_sds_port_configuration_agent *port_agent)
  637. {
  638. u32 index;
  639. port_agent->phy_configured_mask = 0x00;
  640. port_agent->phy_ready_mask = 0x00;
  641. port_agent->link_up_handler = NULL;
  642. port_agent->link_down_handler = NULL;
  643. port_agent->timer_pending = false;
  644. for (index = 0; index < SCI_MAX_PORTS; index++) {
  645. port_agent->phy_valid_port_range[index].min_index = 0;
  646. port_agent->phy_valid_port_range[index].max_index = 0;
  647. }
  648. }
  649. enum sci_status scic_sds_port_configuration_agent_initialize(
  650. struct scic_sds_controller *scic,
  651. struct scic_sds_port_configuration_agent *port_agent)
  652. {
  653. enum sci_status status;
  654. enum scic_port_configuration_mode mode;
  655. mode = scic->oem_parameters.sds1.controller.mode_type;
  656. if (mode == SCIC_PORT_MANUAL_CONFIGURATION_MODE) {
  657. status = scic_sds_mpc_agent_validate_phy_configuration(
  658. scic, port_agent);
  659. port_agent->link_up_handler = scic_sds_mpc_agent_link_up;
  660. port_agent->link_down_handler = scic_sds_mpc_agent_link_down;
  661. sci_init_timer(&port_agent->timer, mpc_agent_timeout);
  662. } else {
  663. status = scic_sds_apc_agent_validate_phy_configuration(
  664. scic, port_agent);
  665. port_agent->link_up_handler = scic_sds_apc_agent_link_up;
  666. port_agent->link_down_handler = scic_sds_apc_agent_link_down;
  667. sci_init_timer(&port_agent->timer, apc_agent_timeout);
  668. }
  669. return status;
  670. }