port_config.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760
  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 (1000)
  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 *sci_port_configuration_agent_find_port(
  108. struct isci_host *ihost,
  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. sci_phy_get_sas_address(iphy, &phy_sas_address);
  122. sci_phy_get_attached_sas_address(iphy, &phy_attached_device_address);
  123. for (i = 0; i < ihost->logical_port_entries; i++) {
  124. struct isci_port *iport = &ihost->ports[i];
  125. sci_port_get_sas_address(iport, &port_sas_address);
  126. sci_port_get_attached_sas_address(iport, &port_attached_device_address);
  127. if (sci_sas_address_compare(port_sas_address, phy_sas_address) == 0 &&
  128. sci_sas_address_compare(port_attached_device_address, phy_attached_device_address) == 0)
  129. return iport;
  130. }
  131. return NULL;
  132. }
  133. /**
  134. *
  135. * @controller: This is the controller object that contains the port agent
  136. * @port_agent: This is the port configruation agent for the controller.
  137. *
  138. * This routine will validate the port configuration is correct for the SCU
  139. * hardware. The SCU hardware allows for port configurations as follows. LP0
  140. * -> (PE0), (PE0, PE1), (PE0, PE1, PE2, PE3) LP1 -> (PE1) LP2 -> (PE2), (PE2,
  141. * PE3) LP3 -> (PE3) enum sci_status SCI_SUCCESS the port configuration is valid for
  142. * this port configuration agent. SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION
  143. * the port configuration is not valid for this port configuration agent.
  144. */
  145. static enum sci_status sci_port_configuration_agent_validate_ports(
  146. struct isci_host *ihost,
  147. struct sci_port_configuration_agent *port_agent)
  148. {
  149. struct sci_sas_address first_address;
  150. struct sci_sas_address second_address;
  151. /*
  152. * Sanity check the max ranges for all the phys the max index
  153. * is always equal to the port range index */
  154. if (port_agent->phy_valid_port_range[0].max_index != 0 ||
  155. port_agent->phy_valid_port_range[1].max_index != 1 ||
  156. port_agent->phy_valid_port_range[2].max_index != 2 ||
  157. port_agent->phy_valid_port_range[3].max_index != 3)
  158. return SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION;
  159. /*
  160. * This is a request to configure a single x4 port or at least attempt
  161. * to make all the phys into a single port */
  162. if (port_agent->phy_valid_port_range[0].min_index == 0 &&
  163. port_agent->phy_valid_port_range[1].min_index == 0 &&
  164. port_agent->phy_valid_port_range[2].min_index == 0 &&
  165. port_agent->phy_valid_port_range[3].min_index == 0)
  166. return SCI_SUCCESS;
  167. /*
  168. * This is a degenerate case where phy 1 and phy 2 are assigned
  169. * to the same port this is explicitly disallowed by the hardware
  170. * unless they are part of the same x4 port and this condition was
  171. * already checked above. */
  172. if (port_agent->phy_valid_port_range[2].min_index == 1) {
  173. return SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION;
  174. }
  175. /*
  176. * PE0 and PE3 can never have the same SAS Address unless they
  177. * are part of the same x4 wide port and we have already checked
  178. * for this condition. */
  179. sci_phy_get_sas_address(&ihost->phys[0], &first_address);
  180. sci_phy_get_sas_address(&ihost->phys[3], &second_address);
  181. if (sci_sas_address_compare(first_address, second_address) == 0) {
  182. return SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION;
  183. }
  184. /*
  185. * PE0 and PE1 are configured into a 2x1 ports make sure that the
  186. * SAS Address for PE0 and PE2 are different since they can not be
  187. * part of the same port. */
  188. if (port_agent->phy_valid_port_range[0].min_index == 0 &&
  189. port_agent->phy_valid_port_range[1].min_index == 1) {
  190. sci_phy_get_sas_address(&ihost->phys[0], &first_address);
  191. sci_phy_get_sas_address(&ihost->phys[2], &second_address);
  192. if (sci_sas_address_compare(first_address, second_address) == 0) {
  193. return SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION;
  194. }
  195. }
  196. /*
  197. * PE2 and PE3 are configured into a 2x1 ports make sure that the
  198. * SAS Address for PE1 and PE3 are different since they can not be
  199. * part of the same port. */
  200. if (port_agent->phy_valid_port_range[2].min_index == 2 &&
  201. port_agent->phy_valid_port_range[3].min_index == 3) {
  202. sci_phy_get_sas_address(&ihost->phys[1], &first_address);
  203. sci_phy_get_sas_address(&ihost->phys[3], &second_address);
  204. if (sci_sas_address_compare(first_address, second_address) == 0) {
  205. return SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION;
  206. }
  207. }
  208. return SCI_SUCCESS;
  209. }
  210. /*
  211. * ******************************************************************************
  212. * Manual port configuration agent routines
  213. * ****************************************************************************** */
  214. /* verify all of the phys in the same port are using the same SAS address */
  215. static enum sci_status
  216. sci_mpc_agent_validate_phy_configuration(struct isci_host *ihost,
  217. struct sci_port_configuration_agent *port_agent)
  218. {
  219. u32 phy_mask;
  220. u32 assigned_phy_mask;
  221. struct sci_sas_address sas_address;
  222. struct sci_sas_address phy_assigned_address;
  223. u8 port_index;
  224. u8 phy_index;
  225. assigned_phy_mask = 0;
  226. sas_address.high = 0;
  227. sas_address.low = 0;
  228. for (port_index = 0; port_index < SCI_MAX_PORTS; port_index++) {
  229. phy_mask = ihost->oem_parameters.ports[port_index].phy_mask;
  230. if (!phy_mask)
  231. continue;
  232. /*
  233. * Make sure that one or more of the phys were not already assinged to
  234. * a different port. */
  235. if ((phy_mask & ~assigned_phy_mask) == 0) {
  236. return SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION;
  237. }
  238. /* Find the starting phy index for this round through the loop */
  239. for (phy_index = 0; phy_index < SCI_MAX_PHYS; phy_index++) {
  240. if ((phy_mask & (1 << phy_index)) == 0)
  241. continue;
  242. sci_phy_get_sas_address(&ihost->phys[phy_index],
  243. &sas_address);
  244. /*
  245. * The phy_index can be used as the starting point for the
  246. * port range since the hardware starts all logical ports
  247. * the same as the PE index. */
  248. port_agent->phy_valid_port_range[phy_index].min_index = port_index;
  249. port_agent->phy_valid_port_range[phy_index].max_index = phy_index;
  250. if (phy_index != port_index) {
  251. return SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION;
  252. }
  253. break;
  254. }
  255. /*
  256. * See how many additional phys are being added to this logical port.
  257. * Note: We have not moved the current phy_index so we will actually
  258. * compare the startting phy with itself.
  259. * This is expected and required to add the phy to the port. */
  260. for (; phy_index < SCI_MAX_PHYS; phy_index++) {
  261. if ((phy_mask & (1 << phy_index)) == 0)
  262. continue;
  263. sci_phy_get_sas_address(&ihost->phys[phy_index],
  264. &phy_assigned_address);
  265. if (sci_sas_address_compare(sas_address, phy_assigned_address) != 0) {
  266. /*
  267. * The phy mask specified that this phy is part of the same port
  268. * as the starting phy and it is not so fail this configuration */
  269. return SCI_FAILURE_UNSUPPORTED_PORT_CONFIGURATION;
  270. }
  271. port_agent->phy_valid_port_range[phy_index].min_index = port_index;
  272. port_agent->phy_valid_port_range[phy_index].max_index = phy_index;
  273. sci_port_add_phy(&ihost->ports[port_index],
  274. &ihost->phys[phy_index]);
  275. assigned_phy_mask |= (1 << phy_index);
  276. }
  277. }
  278. return sci_port_configuration_agent_validate_ports(ihost, port_agent);
  279. }
  280. static void mpc_agent_timeout(struct timer_list *t)
  281. {
  282. u8 index;
  283. struct sci_timer *tmr = from_timer(tmr, t, timer);
  284. struct sci_port_configuration_agent *port_agent;
  285. struct isci_host *ihost;
  286. unsigned long flags;
  287. u16 configure_phy_mask;
  288. port_agent = container_of(tmr, typeof(*port_agent), timer);
  289. ihost = container_of(port_agent, typeof(*ihost), port_agent);
  290. spin_lock_irqsave(&ihost->scic_lock, flags);
  291. if (tmr->cancel)
  292. goto done;
  293. port_agent->timer_pending = false;
  294. /* Find the mask of phys that are reported read but as yet unconfigured into a port */
  295. configure_phy_mask = ~port_agent->phy_configured_mask & port_agent->phy_ready_mask;
  296. for (index = 0; index < SCI_MAX_PHYS; index++) {
  297. struct isci_phy *iphy = &ihost->phys[index];
  298. if (configure_phy_mask & (1 << index)) {
  299. port_agent->link_up_handler(ihost, port_agent,
  300. phy_get_non_dummy_port(iphy),
  301. iphy);
  302. }
  303. }
  304. done:
  305. spin_unlock_irqrestore(&ihost->scic_lock, flags);
  306. }
  307. static void sci_mpc_agent_link_up(struct isci_host *ihost,
  308. struct sci_port_configuration_agent *port_agent,
  309. struct isci_port *iport,
  310. struct isci_phy *iphy)
  311. {
  312. /* If the port is NULL then the phy was not assigned to a port.
  313. * This is because the phy was not given the same SAS Address as
  314. * the other PHYs in the port.
  315. */
  316. if (!iport)
  317. return;
  318. port_agent->phy_ready_mask |= (1 << iphy->phy_index);
  319. sci_port_link_up(iport, iphy);
  320. if ((iport->active_phy_mask & (1 << iphy->phy_index)))
  321. port_agent->phy_configured_mask |= (1 << iphy->phy_index);
  322. }
  323. /**
  324. *
  325. * @controller: This is the controller object that receives the link down
  326. * notification.
  327. * @port: This is the port object associated with the phy. If the is no
  328. * associated port this is an NULL. The port is an invalid
  329. * handle only if the phy was never port of this port. This happens when
  330. * the phy is not broadcasting the same SAS address as the other phys in the
  331. * assigned port.
  332. * @phy: This is the phy object which has gone link down.
  333. *
  334. * This function handles the manual port configuration link down notifications.
  335. * Since all ports and phys are associated at initialization time we just turn
  336. * around and notifiy the port object of the link down event. If this PHY is
  337. * not associated with a port there is no action taken. Is it possible to get a
  338. * link down notification from a phy that has no assocoated port?
  339. */
  340. static void sci_mpc_agent_link_down(
  341. struct isci_host *ihost,
  342. struct sci_port_configuration_agent *port_agent,
  343. struct isci_port *iport,
  344. struct isci_phy *iphy)
  345. {
  346. if (iport != NULL) {
  347. /*
  348. * If we can form a new port from the remainder of the phys
  349. * then we want to start the timer to allow the SCI User to
  350. * cleanup old devices and rediscover the port before
  351. * rebuilding the port with the phys that remain in the ready
  352. * state.
  353. */
  354. port_agent->phy_ready_mask &= ~(1 << iphy->phy_index);
  355. port_agent->phy_configured_mask &= ~(1 << iphy->phy_index);
  356. /*
  357. * Check to see if there are more phys waiting to be
  358. * configured into a port. If there are allow the SCI User
  359. * to tear down this port, if necessary, and then reconstruct
  360. * the port after the timeout.
  361. */
  362. if ((port_agent->phy_configured_mask == 0x0000) &&
  363. (port_agent->phy_ready_mask != 0x0000) &&
  364. !port_agent->timer_pending) {
  365. port_agent->timer_pending = true;
  366. sci_mod_timer(&port_agent->timer,
  367. SCIC_SDS_MPC_RECONFIGURATION_TIMEOUT);
  368. }
  369. sci_port_link_down(iport, iphy);
  370. }
  371. }
  372. /* verify phys are assigned a valid SAS address for automatic port
  373. * configuration mode.
  374. */
  375. static enum sci_status
  376. sci_apc_agent_validate_phy_configuration(struct isci_host *ihost,
  377. struct sci_port_configuration_agent *port_agent)
  378. {
  379. u8 phy_index;
  380. u8 port_index;
  381. struct sci_sas_address sas_address;
  382. struct sci_sas_address phy_assigned_address;
  383. phy_index = 0;
  384. while (phy_index < SCI_MAX_PHYS) {
  385. port_index = phy_index;
  386. /* Get the assigned SAS Address for the first PHY on the controller. */
  387. sci_phy_get_sas_address(&ihost->phys[phy_index],
  388. &sas_address);
  389. while (++phy_index < SCI_MAX_PHYS) {
  390. sci_phy_get_sas_address(&ihost->phys[phy_index],
  391. &phy_assigned_address);
  392. /* Verify each of the SAS address are all the same for every PHY */
  393. if (sci_sas_address_compare(sas_address, phy_assigned_address) == 0) {
  394. port_agent->phy_valid_port_range[phy_index].min_index = port_index;
  395. port_agent->phy_valid_port_range[phy_index].max_index = phy_index;
  396. } else {
  397. port_agent->phy_valid_port_range[phy_index].min_index = phy_index;
  398. port_agent->phy_valid_port_range[phy_index].max_index = phy_index;
  399. break;
  400. }
  401. }
  402. }
  403. return sci_port_configuration_agent_validate_ports(ihost, port_agent);
  404. }
  405. /*
  406. * This routine will restart the automatic port configuration timeout
  407. * timer for the next time period. This could be caused by either a link
  408. * down event or a link up event where we can not yet tell to which a phy
  409. * belongs.
  410. */
  411. static void sci_apc_agent_start_timer(struct sci_port_configuration_agent *port_agent,
  412. u32 timeout)
  413. {
  414. port_agent->timer_pending = true;
  415. sci_mod_timer(&port_agent->timer, timeout);
  416. }
  417. static void sci_apc_agent_configure_ports(struct isci_host *ihost,
  418. struct sci_port_configuration_agent *port_agent,
  419. struct isci_phy *iphy,
  420. bool start_timer)
  421. {
  422. u8 port_index;
  423. enum sci_status status;
  424. struct isci_port *iport;
  425. enum SCIC_SDS_APC_ACTIVITY apc_activity = SCIC_SDS_APC_SKIP_PHY;
  426. iport = sci_port_configuration_agent_find_port(ihost, iphy);
  427. if (iport) {
  428. if (sci_port_is_valid_phy_assignment(iport, iphy->phy_index))
  429. apc_activity = SCIC_SDS_APC_ADD_PHY;
  430. else
  431. apc_activity = SCIC_SDS_APC_SKIP_PHY;
  432. } else {
  433. /*
  434. * There is no matching Port for this PHY so lets search through the
  435. * Ports and see if we can add the PHY to its own port or maybe start
  436. * the timer and wait to see if a wider port can be made.
  437. *
  438. * Note the break when we reach the condition of the port id == phy id */
  439. for (port_index = port_agent->phy_valid_port_range[iphy->phy_index].min_index;
  440. port_index <= port_agent->phy_valid_port_range[iphy->phy_index].max_index;
  441. port_index++) {
  442. iport = &ihost->ports[port_index];
  443. /* First we must make sure that this PHY can be added to this Port. */
  444. if (sci_port_is_valid_phy_assignment(iport, iphy->phy_index)) {
  445. /*
  446. * Port contains a PHY with a greater PHY ID than the current
  447. * PHY that has gone link up. This phy can not be part of any
  448. * port so skip it and move on. */
  449. if (iport->active_phy_mask > (1 << iphy->phy_index)) {
  450. apc_activity = SCIC_SDS_APC_SKIP_PHY;
  451. break;
  452. }
  453. /*
  454. * We have reached the end of our Port list and have not found
  455. * any reason why we should not either add the PHY to the port
  456. * or wait for more phys to become active. */
  457. if (iport->physical_port_index == iphy->phy_index) {
  458. /*
  459. * The Port either has no active PHYs.
  460. * Consider that if the port had any active PHYs we would have
  461. * or active PHYs with
  462. * a lower PHY Id than this PHY. */
  463. if (apc_activity != SCIC_SDS_APC_START_TIMER) {
  464. apc_activity = SCIC_SDS_APC_ADD_PHY;
  465. }
  466. break;
  467. }
  468. /*
  469. * The current Port has no active PHYs and this PHY could be part
  470. * of this Port. Since we dont know as yet setup to start the
  471. * timer and see if there is a better configuration. */
  472. if (iport->active_phy_mask == 0) {
  473. apc_activity = SCIC_SDS_APC_START_TIMER;
  474. }
  475. } else if (iport->active_phy_mask != 0) {
  476. /*
  477. * The Port has an active phy and the current Phy can not
  478. * participate in this port so skip the PHY and see if
  479. * there is a better configuration. */
  480. apc_activity = SCIC_SDS_APC_SKIP_PHY;
  481. }
  482. }
  483. }
  484. /*
  485. * Check to see if the start timer operations should instead map to an
  486. * add phy operation. This is caused because we have been waiting to
  487. * add a phy to a port but could not becuase the automatic port
  488. * configuration engine had a choice of possible ports for the phy.
  489. * Since we have gone through a timeout we are going to restrict the
  490. * choice to the smallest possible port. */
  491. if (
  492. (start_timer == false)
  493. && (apc_activity == SCIC_SDS_APC_START_TIMER)
  494. ) {
  495. apc_activity = SCIC_SDS_APC_ADD_PHY;
  496. }
  497. switch (apc_activity) {
  498. case SCIC_SDS_APC_ADD_PHY:
  499. status = sci_port_add_phy(iport, iphy);
  500. if (status == SCI_SUCCESS) {
  501. port_agent->phy_configured_mask |= (1 << iphy->phy_index);
  502. }
  503. break;
  504. case SCIC_SDS_APC_START_TIMER:
  505. sci_apc_agent_start_timer(port_agent,
  506. SCIC_SDS_APC_WAIT_LINK_UP_NOTIFICATION);
  507. break;
  508. case SCIC_SDS_APC_SKIP_PHY:
  509. default:
  510. /* do nothing the PHY can not be made part of a port at this time. */
  511. break;
  512. }
  513. }
  514. /**
  515. * sci_apc_agent_link_up - handle apc link up events
  516. * @scic: This is the controller object that receives the link up
  517. * notification.
  518. * @sci_port: This is the port object associated with the phy. If the is no
  519. * associated port this is an NULL.
  520. * @sci_phy: This is the phy object which has gone link up.
  521. *
  522. * This method handles the automatic port configuration for link up
  523. * notifications. Is it possible to get a link down notification from a phy
  524. * that has no assocoated port?
  525. */
  526. static void sci_apc_agent_link_up(struct isci_host *ihost,
  527. struct sci_port_configuration_agent *port_agent,
  528. struct isci_port *iport,
  529. struct isci_phy *iphy)
  530. {
  531. u8 phy_index = iphy->phy_index;
  532. if (!iport) {
  533. /* the phy is not the part of this port */
  534. port_agent->phy_ready_mask |= 1 << phy_index;
  535. sci_apc_agent_start_timer(port_agent,
  536. SCIC_SDS_APC_WAIT_LINK_UP_NOTIFICATION);
  537. } else {
  538. /* the phy is already the part of the port */
  539. port_agent->phy_ready_mask |= 1 << phy_index;
  540. sci_port_link_up(iport, iphy);
  541. }
  542. }
  543. /**
  544. *
  545. * @controller: This is the controller object that receives the link down
  546. * notification.
  547. * @iport: This is the port object associated with the phy. If the is no
  548. * associated port this is an NULL.
  549. * @iphy: This is the phy object which has gone link down.
  550. *
  551. * This method handles the automatic port configuration link down
  552. * notifications. not associated with a port there is no action taken. Is it
  553. * possible to get a link down notification from a phy that has no assocoated
  554. * port?
  555. */
  556. static void sci_apc_agent_link_down(
  557. struct isci_host *ihost,
  558. struct sci_port_configuration_agent *port_agent,
  559. struct isci_port *iport,
  560. struct isci_phy *iphy)
  561. {
  562. port_agent->phy_ready_mask &= ~(1 << iphy->phy_index);
  563. if (!iport)
  564. return;
  565. if (port_agent->phy_configured_mask & (1 << iphy->phy_index)) {
  566. enum sci_status status;
  567. status = sci_port_remove_phy(iport, iphy);
  568. if (status == SCI_SUCCESS)
  569. port_agent->phy_configured_mask &= ~(1 << iphy->phy_index);
  570. }
  571. }
  572. /* configure the phys into ports when the timer fires */
  573. static void apc_agent_timeout(struct timer_list *t)
  574. {
  575. u32 index;
  576. struct sci_timer *tmr = from_timer(tmr, t, timer);
  577. struct sci_port_configuration_agent *port_agent;
  578. struct isci_host *ihost;
  579. unsigned long flags;
  580. u16 configure_phy_mask;
  581. port_agent = container_of(tmr, typeof(*port_agent), timer);
  582. ihost = container_of(port_agent, typeof(*ihost), port_agent);
  583. spin_lock_irqsave(&ihost->scic_lock, flags);
  584. if (tmr->cancel)
  585. goto done;
  586. port_agent->timer_pending = false;
  587. configure_phy_mask = ~port_agent->phy_configured_mask & port_agent->phy_ready_mask;
  588. if (!configure_phy_mask)
  589. goto done;
  590. for (index = 0; index < SCI_MAX_PHYS; index++) {
  591. if ((configure_phy_mask & (1 << index)) == 0)
  592. continue;
  593. sci_apc_agent_configure_ports(ihost, port_agent,
  594. &ihost->phys[index], false);
  595. }
  596. if (is_controller_start_complete(ihost))
  597. sci_controller_transition_to_ready(ihost, SCI_SUCCESS);
  598. done:
  599. spin_unlock_irqrestore(&ihost->scic_lock, flags);
  600. }
  601. /*
  602. * ******************************************************************************
  603. * Public port configuration agent routines
  604. * ****************************************************************************** */
  605. /**
  606. *
  607. *
  608. * This method will construct the port configuration agent for operation. This
  609. * call is universal for both manual port configuration and automatic port
  610. * configuration modes.
  611. */
  612. void sci_port_configuration_agent_construct(
  613. struct sci_port_configuration_agent *port_agent)
  614. {
  615. u32 index;
  616. port_agent->phy_configured_mask = 0x00;
  617. port_agent->phy_ready_mask = 0x00;
  618. port_agent->link_up_handler = NULL;
  619. port_agent->link_down_handler = NULL;
  620. port_agent->timer_pending = false;
  621. for (index = 0; index < SCI_MAX_PORTS; index++) {
  622. port_agent->phy_valid_port_range[index].min_index = 0;
  623. port_agent->phy_valid_port_range[index].max_index = 0;
  624. }
  625. }
  626. bool is_port_config_apc(struct isci_host *ihost)
  627. {
  628. return ihost->port_agent.link_up_handler == sci_apc_agent_link_up;
  629. }
  630. enum sci_status sci_port_configuration_agent_initialize(
  631. struct isci_host *ihost,
  632. struct sci_port_configuration_agent *port_agent)
  633. {
  634. enum sci_status status;
  635. enum sci_port_configuration_mode mode;
  636. mode = ihost->oem_parameters.controller.mode_type;
  637. if (mode == SCIC_PORT_MANUAL_CONFIGURATION_MODE) {
  638. status = sci_mpc_agent_validate_phy_configuration(
  639. ihost, port_agent);
  640. port_agent->link_up_handler = sci_mpc_agent_link_up;
  641. port_agent->link_down_handler = sci_mpc_agent_link_down;
  642. sci_init_timer(&port_agent->timer, mpc_agent_timeout);
  643. } else {
  644. status = sci_apc_agent_validate_phy_configuration(
  645. ihost, port_agent);
  646. port_agent->link_up_handler = sci_apc_agent_link_up;
  647. port_agent->link_down_handler = sci_apc_agent_link_down;
  648. sci_init_timer(&port_agent->timer, apc_agent_timeout);
  649. }
  650. return status;
  651. }