Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2011 Freescale Semiconductor, Inc. |
Andy Fleming | b21f87a3 | 2014-07-25 17:39:08 -0500 | [diff] [blame] | 4 | * Andy Fleming <afleming@gmail.com> |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 5 | * |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 6 | * This file pretty much stolen from Linux's mii.h/ethtool.h/phy.h |
| 7 | */ |
| 8 | |
| 9 | #ifndef _PHY_H |
| 10 | #define _PHY_H |
| 11 | |
Grygorii Strashko | eef0b8a | 2018-07-05 12:02:48 -0500 | [diff] [blame] | 12 | #include <dm.h> |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 13 | #include <linux/list.h> |
| 14 | #include <linux/mii.h> |
| 15 | #include <linux/ethtool.h> |
| 16 | #include <linux/mdio.h> |
Joe Hershberger | f070b1a | 2018-07-17 15:02:30 -0500 | [diff] [blame] | 17 | #include <phy_interface.h> |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 18 | |
Hannes Schmelzer | db40c1a | 2017-03-23 15:11:43 +0100 | [diff] [blame] | 19 | #define PHY_FIXED_ID 0xa5a55a5a |
| 20 | |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 21 | #define PHY_MAX_ADDR 32 |
| 22 | |
Shaohui Xie | ddcd1f3 | 2016-01-28 15:55:46 +0800 | [diff] [blame] | 23 | #define PHY_FLAG_BROKEN_RESET (1 << 0) /* soft reset not supported */ |
| 24 | |
Florian Fainelli | 4dae610 | 2016-01-13 16:59:33 +0300 | [diff] [blame] | 25 | #define PHY_DEFAULT_FEATURES (SUPPORTED_Autoneg | \ |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 26 | SUPPORTED_TP | \ |
| 27 | SUPPORTED_MII) |
| 28 | |
Florian Fainelli | 4dae610 | 2016-01-13 16:59:33 +0300 | [diff] [blame] | 29 | #define PHY_10BT_FEATURES (SUPPORTED_10baseT_Half | \ |
| 30 | SUPPORTED_10baseT_Full) |
| 31 | |
| 32 | #define PHY_100BT_FEATURES (SUPPORTED_100baseT_Half | \ |
| 33 | SUPPORTED_100baseT_Full) |
| 34 | |
| 35 | #define PHY_1000BT_FEATURES (SUPPORTED_1000baseT_Half | \ |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 36 | SUPPORTED_1000baseT_Full) |
| 37 | |
Florian Fainelli | 4dae610 | 2016-01-13 16:59:33 +0300 | [diff] [blame] | 38 | #define PHY_BASIC_FEATURES (PHY_10BT_FEATURES | \ |
| 39 | PHY_100BT_FEATURES | \ |
| 40 | PHY_DEFAULT_FEATURES) |
| 41 | |
| 42 | #define PHY_GBIT_FEATURES (PHY_BASIC_FEATURES | \ |
| 43 | PHY_1000BT_FEATURES) |
| 44 | |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 45 | #define PHY_10G_FEATURES (PHY_GBIT_FEATURES | \ |
| 46 | SUPPORTED_10000baseT_Full) |
| 47 | |
Stefan Roese | 4fb3f0c | 2014-10-22 12:13:15 +0200 | [diff] [blame] | 48 | #ifndef PHY_ANEG_TIMEOUT |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 49 | #define PHY_ANEG_TIMEOUT 4000 |
Stefan Roese | 4fb3f0c | 2014-10-22 12:13:15 +0200 | [diff] [blame] | 50 | #endif |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 51 | |
| 52 | |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 53 | struct phy_device; |
| 54 | |
| 55 | #define MDIO_NAME_LEN 32 |
| 56 | |
| 57 | struct mii_dev { |
| 58 | struct list_head link; |
| 59 | char name[MDIO_NAME_LEN]; |
| 60 | void *priv; |
| 61 | int (*read)(struct mii_dev *bus, int addr, int devad, int reg); |
| 62 | int (*write)(struct mii_dev *bus, int addr, int devad, int reg, |
| 63 | u16 val); |
| 64 | int (*reset)(struct mii_dev *bus); |
| 65 | struct phy_device *phymap[PHY_MAX_ADDR]; |
| 66 | u32 phy_mask; |
| 67 | }; |
| 68 | |
| 69 | /* struct phy_driver: a structure which defines PHY behavior |
| 70 | * |
| 71 | * uid will contain a number which represents the PHY. During |
| 72 | * startup, the driver will poll the PHY to find out what its |
| 73 | * UID--as defined by registers 2 and 3--is. The 32-bit result |
| 74 | * gotten from the PHY will be masked to |
| 75 | * discard any bits which may change based on revision numbers |
| 76 | * unimportant to functionality |
| 77 | * |
| 78 | */ |
| 79 | struct phy_driver { |
| 80 | char *name; |
| 81 | unsigned int uid; |
| 82 | unsigned int mask; |
| 83 | unsigned int mmds; |
| 84 | |
| 85 | u32 features; |
| 86 | |
| 87 | /* Called to do any driver startup necessities */ |
| 88 | /* Will be called during phy_connect */ |
| 89 | int (*probe)(struct phy_device *phydev); |
| 90 | |
| 91 | /* Called to configure the PHY, and modify the controller |
| 92 | * based on the results. Should be called after phy_connect */ |
| 93 | int (*config)(struct phy_device *phydev); |
| 94 | |
| 95 | /* Called when starting up the controller */ |
| 96 | int (*startup)(struct phy_device *phydev); |
| 97 | |
| 98 | /* Called when bringing down the controller */ |
| 99 | int (*shutdown)(struct phy_device *phydev); |
| 100 | |
Stefano Babic | b71841b | 2013-09-02 15:42:30 +0200 | [diff] [blame] | 101 | int (*readext)(struct phy_device *phydev, int addr, int devad, int reg); |
| 102 | int (*writeext)(struct phy_device *phydev, int addr, int devad, int reg, |
| 103 | u16 val); |
Carlo Caione | 4f6746d | 2019-02-08 17:25:06 +0000 | [diff] [blame^] | 104 | |
| 105 | /* Phy specific driver override for reading a MMD register */ |
| 106 | int (*read_mmd)(struct phy_device *phydev, int devad, int reg); |
| 107 | |
| 108 | /* Phy specific driver override for writing a MMD register */ |
| 109 | int (*write_mmd)(struct phy_device *phydev, int devad, int reg, |
| 110 | u16 val); |
| 111 | |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 112 | struct list_head list; |
| 113 | }; |
| 114 | |
| 115 | struct phy_device { |
| 116 | /* Information about the PHY type */ |
| 117 | /* And management functions */ |
| 118 | struct mii_dev *bus; |
| 119 | struct phy_driver *drv; |
| 120 | void *priv; |
| 121 | |
Simon Glass | c74c8e6 | 2015-04-05 16:07:39 -0600 | [diff] [blame] | 122 | #ifdef CONFIG_DM_ETH |
| 123 | struct udevice *dev; |
Grygorii Strashko | eef0b8a | 2018-07-05 12:02:48 -0500 | [diff] [blame] | 124 | ofnode node; |
Simon Glass | c74c8e6 | 2015-04-05 16:07:39 -0600 | [diff] [blame] | 125 | #else |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 126 | struct eth_device *dev; |
Simon Glass | c74c8e6 | 2015-04-05 16:07:39 -0600 | [diff] [blame] | 127 | #endif |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 128 | |
| 129 | /* forced speed & duplex (no autoneg) |
| 130 | * partner speed & duplex & pause (autoneg) |
| 131 | */ |
| 132 | int speed; |
| 133 | int duplex; |
| 134 | |
| 135 | /* The most recently read link state */ |
| 136 | int link; |
| 137 | int port; |
| 138 | phy_interface_t interface; |
| 139 | |
| 140 | u32 advertising; |
| 141 | u32 supported; |
| 142 | u32 mmds; |
| 143 | |
| 144 | int autoneg; |
| 145 | int addr; |
| 146 | int pause; |
| 147 | int asym_pause; |
| 148 | u32 phy_id; |
Pankaj Bansal | b3eabd8 | 2018-11-16 06:26:18 +0000 | [diff] [blame] | 149 | bool is_c45; |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 150 | u32 flags; |
| 151 | }; |
| 152 | |
Shaohui Xie | f55a776 | 2013-11-14 19:00:31 +0800 | [diff] [blame] | 153 | struct fixed_link { |
| 154 | int phy_id; |
| 155 | int duplex; |
| 156 | int link_speed; |
| 157 | int pause; |
| 158 | int asym_pause; |
| 159 | }; |
| 160 | |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 161 | static inline int phy_read(struct phy_device *phydev, int devad, int regnum) |
| 162 | { |
| 163 | struct mii_dev *bus = phydev->bus; |
| 164 | |
| 165 | return bus->read(bus, phydev->addr, devad, regnum); |
| 166 | } |
| 167 | |
| 168 | static inline int phy_write(struct phy_device *phydev, int devad, int regnum, |
| 169 | u16 val) |
| 170 | { |
| 171 | struct mii_dev *bus = phydev->bus; |
| 172 | |
| 173 | return bus->write(bus, phydev->addr, devad, regnum, val); |
| 174 | } |
| 175 | |
Carlo Caione | 4f6746d | 2019-02-08 17:25:06 +0000 | [diff] [blame^] | 176 | static inline void phy_mmd_start_indirect(struct phy_device *phydev, int devad, |
| 177 | int regnum) |
| 178 | { |
| 179 | /* Write the desired MMD Devad */ |
| 180 | phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_CTRL, devad); |
| 181 | |
| 182 | /* Write the desired MMD register address */ |
| 183 | phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA, regnum); |
| 184 | |
| 185 | /* Select the Function : DATA with no post increment */ |
| 186 | phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_CTRL, |
| 187 | (devad | MII_MMD_CTRL_NOINCR)); |
| 188 | } |
| 189 | |
| 190 | static inline int phy_read_mmd(struct phy_device *phydev, int devad, |
| 191 | int regnum) |
| 192 | { |
| 193 | struct phy_driver *drv = phydev->drv; |
| 194 | |
| 195 | if (regnum > (u16)~0 || devad > 32) |
| 196 | return -EINVAL; |
| 197 | |
| 198 | /* driver-specific access */ |
| 199 | if (drv->read_mmd) |
| 200 | return drv->read_mmd(phydev, devad, regnum); |
| 201 | |
| 202 | /* direct C45 / C22 access */ |
| 203 | if ((drv->features & PHY_10G_FEATURES) == PHY_10G_FEATURES || |
| 204 | devad == MDIO_DEVAD_NONE || !devad) |
| 205 | return phy_read(phydev, devad, regnum); |
| 206 | |
| 207 | /* indirect C22 access */ |
| 208 | phy_mmd_start_indirect(phydev, devad, regnum); |
| 209 | |
| 210 | /* Read the content of the MMD's selected register */ |
| 211 | return phy_read(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA); |
| 212 | } |
| 213 | |
| 214 | static inline int phy_write_mmd(struct phy_device *phydev, int devad, |
| 215 | int regnum, u16 val) |
| 216 | { |
| 217 | struct phy_driver *drv = phydev->drv; |
| 218 | |
| 219 | if (regnum > (u16)~0 || devad > 32) |
| 220 | return -EINVAL; |
| 221 | |
| 222 | /* driver-specific access */ |
| 223 | if (drv->write_mmd) |
| 224 | return drv->write_mmd(phydev, devad, regnum, val); |
| 225 | |
| 226 | /* direct C45 / C22 access */ |
| 227 | if ((drv->features & PHY_10G_FEATURES) == PHY_10G_FEATURES || |
| 228 | devad == MDIO_DEVAD_NONE || !devad) |
| 229 | return phy_write(phydev, devad, regnum, val); |
| 230 | |
| 231 | /* indirect C22 access */ |
| 232 | phy_mmd_start_indirect(phydev, devad, regnum); |
| 233 | |
| 234 | /* Write the data into MMD's selected register */ |
| 235 | return phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA, val); |
| 236 | } |
| 237 | |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 238 | #ifdef CONFIG_PHYLIB_10G |
| 239 | extern struct phy_driver gen10g_driver; |
| 240 | |
| 241 | /* For now, XGMII is the only 10G interface */ |
| 242 | static inline int is_10g_interface(phy_interface_t interface) |
| 243 | { |
| 244 | return interface == PHY_INTERFACE_MODE_XGMII; |
| 245 | } |
| 246 | |
| 247 | #endif |
| 248 | |
| 249 | int phy_init(void); |
| 250 | int phy_reset(struct phy_device *phydev); |
Troy Kisky | 1adb406 | 2012-10-22 16:40:43 +0000 | [diff] [blame] | 251 | struct phy_device *phy_find_by_mask(struct mii_dev *bus, unsigned phy_mask, |
| 252 | phy_interface_t interface); |
Simon Glass | c74c8e6 | 2015-04-05 16:07:39 -0600 | [diff] [blame] | 253 | #ifdef CONFIG_DM_ETH |
| 254 | void phy_connect_dev(struct phy_device *phydev, struct udevice *dev); |
| 255 | struct phy_device *phy_connect(struct mii_dev *bus, int addr, |
| 256 | struct udevice *dev, |
| 257 | phy_interface_t interface); |
Grygorii Strashko | eef0b8a | 2018-07-05 12:02:48 -0500 | [diff] [blame] | 258 | static inline ofnode phy_get_ofnode(struct phy_device *phydev) |
| 259 | { |
| 260 | if (ofnode_valid(phydev->node)) |
| 261 | return phydev->node; |
| 262 | else |
| 263 | return dev_ofnode(phydev->dev); |
| 264 | } |
Simon Glass | c74c8e6 | 2015-04-05 16:07:39 -0600 | [diff] [blame] | 265 | #else |
Troy Kisky | 1adb406 | 2012-10-22 16:40:43 +0000 | [diff] [blame] | 266 | void phy_connect_dev(struct phy_device *phydev, struct eth_device *dev); |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 267 | struct phy_device *phy_connect(struct mii_dev *bus, int addr, |
| 268 | struct eth_device *dev, |
| 269 | phy_interface_t interface); |
Grygorii Strashko | eef0b8a | 2018-07-05 12:02:48 -0500 | [diff] [blame] | 270 | static inline ofnode phy_get_ofnode(struct phy_device *phydev) |
| 271 | { |
| 272 | return ofnode_null(); |
| 273 | } |
Simon Glass | c74c8e6 | 2015-04-05 16:07:39 -0600 | [diff] [blame] | 274 | #endif |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 275 | int phy_startup(struct phy_device *phydev); |
| 276 | int phy_config(struct phy_device *phydev); |
| 277 | int phy_shutdown(struct phy_device *phydev); |
| 278 | int phy_register(struct phy_driver *drv); |
Alexey Brodkin | b18acb0 | 2016-01-13 16:59:34 +0300 | [diff] [blame] | 279 | int phy_set_supported(struct phy_device *phydev, u32 max_speed); |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 280 | int genphy_config_aneg(struct phy_device *phydev); |
Troy Kisky | 8682aba | 2012-02-07 14:08:48 +0000 | [diff] [blame] | 281 | int genphy_restart_aneg(struct phy_device *phydev); |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 282 | int genphy_update_link(struct phy_device *phydev); |
Yegor Yefremov | e2043f5 | 2012-11-28 11:15:17 +0100 | [diff] [blame] | 283 | int genphy_parse_link(struct phy_device *phydev); |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 284 | int genphy_config(struct phy_device *phydev); |
| 285 | int genphy_startup(struct phy_device *phydev); |
| 286 | int genphy_shutdown(struct phy_device *phydev); |
| 287 | int gen10g_config(struct phy_device *phydev); |
| 288 | int gen10g_startup(struct phy_device *phydev); |
| 289 | int gen10g_shutdown(struct phy_device *phydev); |
| 290 | int gen10g_discover_mmds(struct phy_device *phydev); |
| 291 | |
Florian Fainelli | 137963d | 2017-12-09 14:59:54 -0800 | [diff] [blame] | 292 | int phy_b53_init(void); |
Kevin Smith | 24ae396 | 2016-03-31 19:33:12 +0000 | [diff] [blame] | 293 | int phy_mv88e61xx_init(void); |
Shaohui Xie | f7c38cf | 2014-12-30 18:32:04 +0800 | [diff] [blame] | 294 | int phy_aquantia_init(void); |
Andy Fleming | 9082eea | 2011-04-07 21:56:05 -0500 | [diff] [blame] | 295 | int phy_atheros_init(void); |
| 296 | int phy_broadcom_init(void); |
Shengzhou Liu | 9b18e51 | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 297 | int phy_cortina_init(void); |
Andy Fleming | 9082eea | 2011-04-07 21:56:05 -0500 | [diff] [blame] | 298 | int phy_davicom_init(void); |
Matt Porter | f485c8a | 2013-03-20 05:38:13 +0000 | [diff] [blame] | 299 | int phy_et1011c_init(void); |
Andy Fleming | 9082eea | 2011-04-07 21:56:05 -0500 | [diff] [blame] | 300 | int phy_lxt_init(void); |
| 301 | int phy_marvell_init(void); |
Alexandru Gagniuc | d397f7c | 2017-07-07 11:36:57 -0700 | [diff] [blame] | 302 | int phy_micrel_ksz8xxx_init(void); |
| 303 | int phy_micrel_ksz90x1_init(void); |
Neil Armstrong | 8995a96 | 2017-10-18 10:02:10 +0200 | [diff] [blame] | 304 | int phy_meson_gxl_init(void); |
Andy Fleming | 9082eea | 2011-04-07 21:56:05 -0500 | [diff] [blame] | 305 | int phy_natsemi_init(void); |
| 306 | int phy_realtek_init(void); |
Vladimir Zapolskiy | b6abf55 | 2011-12-29 15:18:37 +0000 | [diff] [blame] | 307 | int phy_smsc_init(void); |
Andy Fleming | 9082eea | 2011-04-07 21:56:05 -0500 | [diff] [blame] | 308 | int phy_teranetics_init(void); |
Edgar E. Iglesias | 721aed7 | 2015-09-25 23:46:08 -0700 | [diff] [blame] | 309 | int phy_ti_init(void); |
Andy Fleming | 9082eea | 2011-04-07 21:56:05 -0500 | [diff] [blame] | 310 | int phy_vitesse_init(void); |
Siva Durga Prasad Paladugu | ed6fad3 | 2016-02-05 13:22:10 +0530 | [diff] [blame] | 311 | int phy_xilinx_init(void); |
John Haechten | a5fd13a | 2016-12-09 22:15:17 +0000 | [diff] [blame] | 312 | int phy_mscc_init(void); |
Hannes Schmelzer | db40c1a | 2017-03-23 15:11:43 +0100 | [diff] [blame] | 313 | int phy_fixed_init(void); |
Timur Tabi | a836626 | 2011-10-18 18:44:34 -0500 | [diff] [blame] | 314 | |
Fabio Estevam | 2fb6396 | 2014-02-15 14:52:00 -0200 | [diff] [blame] | 315 | int board_phy_config(struct phy_device *phydev); |
Shengzhou Liu | 5707d5f | 2015-04-07 18:46:32 +0800 | [diff] [blame] | 316 | int get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id); |
Fabio Estevam | 2fb6396 | 2014-02-15 14:52:00 -0200 | [diff] [blame] | 317 | |
Simon Glass | c74c8e6 | 2015-04-05 16:07:39 -0600 | [diff] [blame] | 318 | /** |
| 319 | * phy_get_interface_by_name() - Look up a PHY interface name |
| 320 | * |
| 321 | * @str: PHY interface name, e.g. "mii" |
| 322 | * @return PHY_INTERFACE_MODE_... value, or -1 if not found |
| 323 | */ |
| 324 | int phy_get_interface_by_name(const char *str); |
| 325 | |
Dan Murphy | 3ab72fe | 2016-05-02 15:46:00 -0500 | [diff] [blame] | 326 | /** |
| 327 | * phy_interface_is_rgmii - Convenience function for testing if a PHY interface |
| 328 | * is RGMII (all variants) |
| 329 | * @phydev: the phy_device struct |
| 330 | */ |
| 331 | static inline bool phy_interface_is_rgmii(struct phy_device *phydev) |
| 332 | { |
| 333 | return phydev->interface >= PHY_INTERFACE_MODE_RGMII && |
| 334 | phydev->interface <= PHY_INTERFACE_MODE_RGMII_TXID; |
| 335 | } |
| 336 | |
Dan Murphy | 3c221af | 2016-05-02 15:46:01 -0500 | [diff] [blame] | 337 | /** |
| 338 | * phy_interface_is_sgmii - Convenience function for testing if a PHY interface |
| 339 | * is SGMII (all variants) |
| 340 | * @phydev: the phy_device struct |
| 341 | */ |
| 342 | static inline bool phy_interface_is_sgmii(struct phy_device *phydev) |
| 343 | { |
| 344 | return phydev->interface >= PHY_INTERFACE_MODE_SGMII && |
| 345 | phydev->interface <= PHY_INTERFACE_MODE_QSGMII; |
| 346 | } |
| 347 | |
Timur Tabi | a836626 | 2011-10-18 18:44:34 -0500 | [diff] [blame] | 348 | /* PHY UIDs for various PHYs that are referenced in external code */ |
Priyanka Jain | 1ddcf5e | 2018-10-11 04:47:05 +0000 | [diff] [blame] | 349 | #define PHY_UID_CS4340 0x13e51002 |
| 350 | #define PHY_UID_CS4223 0x03e57003 |
| 351 | #define PHY_UID_TN2020 0x00a19410 |
| 352 | #define PHY_UID_IN112525_S03 0x02107440 |
Timur Tabi | a836626 | 2011-10-18 18:44:34 -0500 | [diff] [blame] | 353 | |
Andy Fleming | 5f18471 | 2011-04-08 02:10:27 -0500 | [diff] [blame] | 354 | #endif |