1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /*====================================================================*
- *
- * Copyright (c) 2013 Qualcomm Atheros, Inc.
- *
- * All rights reserved.
- *
- *====================================================================*/
- /*====================================================================*
- *
- * signed FlashDevice1 (struct plc * plc);
- *
- * plc.h
- *
- * permanently write parameters and firmware to flash memory using
- * VS_WR_MOD messagesand VS_MOD_NVM messages;
- *
- * paramters and firmware are written to device SDRAM and stored
- * until commited to flash memory;
- *
- * Contributor(s):
- * Charles Maier <cmaier@qca.qualcomm.com>
- *
- *--------------------------------------------------------------------*/
- #ifndef FLASHDEVICE1_SOURCE
- #define FLASHDEVICE1_SOURCE
- #include "../plc/plc.h"
- signed FlashDevice1 (struct plc * plc)
- {
- if (WritePIB (plc))
- {
- return (-1);
- }
- if (WriteNVM (plc))
- {
- return (-1);
- }
- if (FlashNVM (plc))
- {
- return (-1);
- }
- if (WaitForRestart (plc))
- {
- return (-1);
- }
- return (0);
- }
- #endif
|