wireless/ieee80211: Add broadcom network device registration logic.

This commit is contained in:
Gregory Nutt
2017-04-24 10:43:57 -06:00
parent e507a3f295
commit a57c79e8b3
3 changed files with 98 additions and 2 deletions
+11
View File
@@ -150,5 +150,16 @@ int photon_wlan_initialize()
return ERROR;
}
#if 0 /* Not yet */
/* Register the nework device */
ret = bcmf_netdev_register(0);
if (ret != OK)
{
syslog(LOG_ERR, "Failed to register bcmf network device: %d\n", ret);
return ret;
}
#endif
return OK;
}
+2 -2
View File
@@ -1121,7 +1121,7 @@ static int bcmf_ioctl(FAR struct net_driver_s *dev, int cmd,
****************************************************************************/
/****************************************************************************
* Name: bcmf_initialize
* Name: bcmf_netdev_register
*
* Description:
* Initialize the Broadcom 43362 controller and driver
@@ -1137,7 +1137,7 @@ static int bcmf_ioctl(FAR struct net_driver_s *dev, int cmd,
*
****************************************************************************/
int bcmf_initialize(int intf)
int bcmf_netdev_register(int intf)
{
FAR struct bcmf_driver_s *priv;
@@ -0,0 +1,85 @@
/****************************************************************************
* include/nuttx/wireless/ieee80211/bcmf_netdev.h
*
* Copyright (C) 2017 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* 3. Neither the name NuttX nor the names of its contributors may be
* used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
****************************************************************************/
#ifndef __INCLUDE_NUTTX_WIRELESS_IEEE80211_BCMF_NETDEV_H
#define __INCLUDE_NUTTX_WIRELESS_IEEE80211_BCMF_NETDEV_H
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/mmcsd.h>
#ifdef __cplusplus
#define EXTERN extern "C"
extern "C"
{
#else
#define EXTERN extern
#endif
/****************************************************************************
* Public Types
****************************************************************************/
/****************************************************************************
* Public Function Prototypes
****************************************************************************/
/****************************************************************************
* Name: bcmf_netdev_register
*
* Description:
* Initialize the Broadcom 43362 controller and driver
*
* Parameters:
* intf - In the case where there are multiple EMACs, this value
* identifies which EMAC is to be initialized.
*
* Returned Value:
* OK on success; Negated errno on failure.
*
* Assumptions:
*
****************************************************************************/
int bcmf_netdev_register(int intf);
#undef EXTERN
#ifdef __cplusplus
}
#endif
#endif /* __INCLUDE_NUTTX_WIRELESS_IEEE80211_BCMF_NETDEV_H */