/*====================================================================* * * Copyright (c) 2013 Qualcomm Atheros, Inc. * * All rights reserved. * *====================================================================*/ /*====================================================================* * * signed ResetAndWait (struct plc * plc); * * plc.h * * Reset the device using a VS_RS_DEV Request message then wait for * the device to reset and reboot before returning; * * Contributor(s): * Charles Maier * *--------------------------------------------------------------------*/ #ifndef RESETANDWAIT_SOURCE #define RESETANDWAIT_SOURCE #include #include #include "../plc/plc.h" #include "../tools/error.h" #include "../tools/memory.h" signed ResetAndWait (struct plc * plc) { struct channel * channel = (struct channel *) (plc->channel); struct message * message = (struct message *) (plc->message); #ifndef __GNUC__ #pragma pack (push,1) #endif struct __packed vs_rs_dev_request { struct ethernet_hdr ethernet; struct qualcomm_hdr qualcomm; uint8_t MSTATUS; } * request = (struct vs_rs_dev_request *) (message); struct __packed vs_rs_dev_confirm { struct ethernet_hdr ethernet; struct qualcomm_hdr qualcomm; uint8_t MSTATUS; uint8_t MDEVICEID; uint8_t MVERLENGTH; char MVERSION [PLC_VERSION_STRING]; } * confirm = (struct vs_rs_dev_confirm *) (message); #ifndef __GNUC__ #pragma pack (pop) #endif char firmware [PLC_VERSION_STRING]; Request (plc, "Reset Device"); memset (message, 0, sizeof (* message)); EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type); QualcommHeader (& request->qualcomm, 0, (VS_RS_DEV | MMTYPE_REQ)); plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN); if (SendMME (plc) <= 0) { error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND); return (-1); } memset (firmware, 0, sizeof (firmware)); #if 0 if (ReadMME (plc, (VS_RS_DEV | MMTYPE_CNF)) <= 0) { error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD); return (-1); } if (confirm->MSTATUS) { Failure (plc, PLC_WONTDOIT); return (-1); } Confirm (plc, "Resetting ..."); if (WaitForReset (plc)) { Failure (plc, "Device did not Reset"); return (-1); } if (WaitForStart (plc, firmware, sizeof (firmware))) { Failure (plc, "Device did not Start"); return (-1); } #else while (ReadMME (plc, 0, (VS_RS_DEV | MMTYPE_CNF)) > 0) { if (confirm->MSTATUS) { continue; } return (0); } #endif return (-1); } #endif