2009-09-24 09:29:08 +00:00
|
|
|
/*
|
|
|
|
ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
|
|
|
|
|
|
|
|
This file is part of ChibiOS/RT.
|
|
|
|
|
|
|
|
ChibiOS/RT is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ChibiOS/RT is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file mac.c
|
|
|
|
* @brief MAC Driver code.
|
|
|
|
* @addtogroup MAC
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <ch.h>
|
|
|
|
#include <mac.h>
|
|
|
|
|
2009-09-24 16:18:37 +00:00
|
|
|
/**
|
|
|
|
* @brief Transmit descriptors counter semaphore.
|
|
|
|
*/
|
2009-09-24 18:43:09 +00:00
|
|
|
static Semaphore tdsem, rdsem;
|
2009-09-24 16:18:37 +00:00
|
|
|
|
2009-09-24 09:29:08 +00:00
|
|
|
/**
|
|
|
|
* @brief MAC Driver initialization.
|
|
|
|
*/
|
|
|
|
void macInit(void) {
|
|
|
|
|
|
|
|
mac_lld_init();
|
|
|
|
}
|
|
|
|
|
2009-09-25 14:56:57 +00:00
|
|
|
/**
|
|
|
|
* @brief Initialize the standard part of a @p MACDriver structure.
|
|
|
|
*
|
|
|
|
* @param[in] macp pointer to the @p MACDriver object
|
|
|
|
*/
|
|
|
|
void macObjectInit(MACDriver *macp) {
|
|
|
|
|
2009-09-27 15:00:08 +00:00
|
|
|
chSemInit(&macp->md_tdsem, 0);
|
2009-09-25 14:56:57 +00:00
|
|
|
chSemInit(&macp->md_rdsem, 0);
|
2009-09-27 15:00:08 +00:00
|
|
|
#if CH_USE_EVENTS
|
|
|
|
chEvtInit(&macp->md_rdevent);
|
|
|
|
#endif
|
2009-09-25 14:56:57 +00:00
|
|
|
}
|
|
|
|
|
2009-09-24 09:29:08 +00:00
|
|
|
/**
|
|
|
|
* @brief MAC address setup.
|
2009-09-25 10:38:58 +00:00
|
|
|
*
|
|
|
|
* @param[in] macp pointer to the @p MACDriver object
|
2009-09-24 09:29:08 +00:00
|
|
|
* @param[in] p pointer to a six bytes buffer containing the MAC address. If
|
|
|
|
* this parameter is set to @p NULL then a system default MAC is
|
2009-09-24 16:18:37 +00:00
|
|
|
* used.
|
|
|
|
*
|
2009-09-25 10:38:58 +00:00
|
|
|
* @note This function must be invoked only with the driver in the stopped
|
|
|
|
* state. If invoked on an active interface then it is ignored.
|
2009-09-24 09:29:08 +00:00
|
|
|
*/
|
2009-09-25 10:38:58 +00:00
|
|
|
void macSetAddress(MACDriver *macp, uint8_t *p) {
|
2009-09-24 09:29:08 +00:00
|
|
|
|
2009-09-27 12:00:29 +00:00
|
|
|
mac_lld_set_address(macp, p);
|
2009-09-24 16:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Allocates a transmission descriptor.
|
|
|
|
* @details One of the available transmission descriptors is locked and
|
|
|
|
* returned. If a descriptor is not currently available then the
|
|
|
|
* invoking thread is queued until one is freed.
|
|
|
|
*
|
2009-09-25 10:38:58 +00:00
|
|
|
* @param[in] macp pointer to the @p MACDriver object
|
2009-09-27 12:00:29 +00:00
|
|
|
* @param[in] size size of the frame to be transmitted
|
2009-09-24 16:18:37 +00:00
|
|
|
* @param[in] time the number of ticks before the operation timeouts,
|
2009-09-24 18:43:09 +00:00
|
|
|
* the following special values are allowed:
|
|
|
|
* - @a TIME_IMMEDIATE immediate timeout.
|
|
|
|
* - @a TIME_INFINITE no timeout.
|
|
|
|
* .
|
2009-09-24 16:18:37 +00:00
|
|
|
* @return A pointer to a @p MACTransmitDescriptor structure or @p NULL if
|
2009-09-27 12:00:29 +00:00
|
|
|
* the operation timed out.
|
2009-09-24 16:18:37 +00:00
|
|
|
*/
|
2009-09-25 10:38:58 +00:00
|
|
|
MACTransmitDescriptor *macWaitTransmitDescriptor(MACDriver *macp,
|
2009-09-27 12:00:29 +00:00
|
|
|
size_t size,
|
2009-09-25 10:38:58 +00:00
|
|
|
systime_t time) {
|
2009-09-24 16:18:37 +00:00
|
|
|
MACTransmitDescriptor *tdp;
|
|
|
|
|
2009-09-27 15:00:08 +00:00
|
|
|
while ((time > 0) &&
|
|
|
|
(tdp = max_lld_get_transmit_descriptor(macp, size)) == NULL) {
|
|
|
|
chSysLock();
|
|
|
|
systime_t now = chTimeNow();
|
|
|
|
if (chSemWaitTimeoutS(&tdsem, time) == RDY_TIMEOUT) {
|
|
|
|
tdp = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (time != TIME_INFINITE)
|
|
|
|
time -= (chTimeNow() - now);
|
|
|
|
chSysUnlock();
|
|
|
|
}
|
2009-09-24 16:18:37 +00:00
|
|
|
return tdp;
|
2009-09-24 09:29:08 +00:00
|
|
|
}
|
|
|
|
|
2009-09-24 16:18:37 +00:00
|
|
|
/**
|
|
|
|
* @brief Releases a transmit descriptor and starts the transmission of the
|
|
|
|
* enqueued data as a single frame.
|
|
|
|
*
|
2009-09-25 10:38:58 +00:00
|
|
|
* @param[in] macp pointer to the @p MACDriver object
|
2009-09-24 16:18:37 +00:00
|
|
|
* @param[in] tdp the pointer to the @p MACTransmitDescriptor structure
|
|
|
|
*/
|
2009-09-25 10:38:58 +00:00
|
|
|
void macReleaseTransmitDescriptor(MACDriver *macp,
|
|
|
|
MACTransmitDescriptor *tdp) {
|
2009-09-24 16:18:37 +00:00
|
|
|
|
2009-09-27 12:00:29 +00:00
|
|
|
mac_lld_release_transmit_descriptor(macp, tdp);
|
2009-09-24 18:43:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Waits for a received frame.
|
|
|
|
* @details Stops until a frame is received and buffered. If a frame is
|
|
|
|
* not immediately available then the invoking thread is queued
|
|
|
|
* until one is received.
|
|
|
|
*
|
2009-09-25 10:38:58 +00:00
|
|
|
* @param[in] macp pointer to the @p MACDriver object
|
2009-09-27 12:00:29 +00:00
|
|
|
* @param[out szp size of the received frame
|
2009-09-24 18:43:09 +00:00
|
|
|
* @param[in] time the number of ticks before the operation timeouts,
|
|
|
|
* the following special values are allowed:
|
|
|
|
* - @a TIME_IMMEDIATE immediate timeout.
|
|
|
|
* - @a TIME_INFINITE no timeout.
|
|
|
|
* .
|
|
|
|
* @return A pointer to a @p MACReceiveDescriptor structure or @p NULL if
|
2009-09-27 12:00:29 +00:00
|
|
|
* the operation timed out or some transient error happened.
|
2009-09-24 18:43:09 +00:00
|
|
|
*/
|
2009-09-25 10:38:58 +00:00
|
|
|
MACReceiveDescriptor *macWaitReceiveDescriptor(MACDriver *macp,
|
2009-09-27 12:00:29 +00:00
|
|
|
size_t *szp,
|
2009-09-25 10:38:58 +00:00
|
|
|
systime_t time) {
|
2009-09-24 18:43:09 +00:00
|
|
|
MACReceiveDescriptor *rdp;
|
|
|
|
|
2009-09-27 15:00:08 +00:00
|
|
|
while ((time > 0) &&
|
|
|
|
(rdp = max_lld_get_receive_descriptor(macp, szp)) == NULL) {
|
|
|
|
chSysLock();
|
|
|
|
systime_t now = chTimeNow();
|
|
|
|
if (chSemWaitTimeoutS(&rdsem, time) == RDY_TIMEOUT) {
|
|
|
|
rdp = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (time != TIME_INFINITE)
|
|
|
|
time -= (chTimeNow() - now);
|
|
|
|
chSysUnlock();
|
|
|
|
}
|
2009-09-24 18:43:09 +00:00
|
|
|
return rdp;
|
2009-09-24 09:29:08 +00:00
|
|
|
}
|
|
|
|
|
2009-09-24 16:18:37 +00:00
|
|
|
/**
|
2009-09-24 18:43:09 +00:00
|
|
|
* @brief Releases a receive descriptor.
|
|
|
|
* @details The descriptor and its buffer is made available for more incoming
|
|
|
|
* frames.
|
|
|
|
*
|
2009-09-25 10:38:58 +00:00
|
|
|
* @param[in] macp pointer to the @p MACDriver object
|
2009-09-24 18:43:09 +00:00
|
|
|
* @param[in] rdp the pointer to the @p MACReceiveDescriptor structure
|
2009-09-24 16:18:37 +00:00
|
|
|
*/
|
2009-09-25 10:38:58 +00:00
|
|
|
void macReleaseReceiveDescriptor(MACDriver *macp,
|
|
|
|
MACReceiveDescriptor *rdp) {
|
2009-09-24 09:29:08 +00:00
|
|
|
|
2009-09-27 12:00:29 +00:00
|
|
|
mac_lld_release_receive_descriptor(macp, rdp);
|
2009-09-24 09:29:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** @} */
|