| jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 1 | /* | 
|  | 2 | * PMC-Sierra SPC 8001 SAS/SATA based host adapters driver | 
|  | 3 | * | 
|  | 4 | * Copyright (c) 2008-2009 USI Co., Ltd. | 
|  | 5 | * All rights reserved. | 
|  | 6 | * | 
|  | 7 | * Redistribution and use in source and binary forms, with or without | 
|  | 8 | * modification, are permitted provided that the following conditions | 
|  | 9 | * are met: | 
|  | 10 | * 1. Redistributions of source code must retain the above copyright | 
|  | 11 | *    notice, this list of conditions, and the following disclaimer, | 
|  | 12 | *    without modification. | 
|  | 13 | * 2. Redistributions in binary form must reproduce at minimum a disclaimer | 
|  | 14 | *    substantially similar to the "NO WARRANTY" disclaimer below | 
|  | 15 | *    ("Disclaimer") and any redistribution must be conditioned upon | 
|  | 16 | *    including a substantially similar Disclaimer requirement for further | 
|  | 17 | *    binary redistribution. | 
|  | 18 | * 3. Neither the names of the above-listed copyright holders nor the names | 
|  | 19 | *    of any contributors may be used to endorse or promote products derived | 
|  | 20 | *    from this software without specific prior written permission. | 
|  | 21 | * | 
|  | 22 | * Alternatively, this software may be distributed under the terms of the | 
|  | 23 | * GNU General Public License ("GPL") version 2 as published by the Free | 
|  | 24 | * Software Foundation. | 
|  | 25 | * | 
|  | 26 | * NO WARRANTY | 
|  | 27 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 
|  | 28 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 
|  | 29 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR | 
|  | 30 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 
|  | 31 | * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
|  | 32 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
|  | 33 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
|  | 34 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | 
|  | 35 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING | 
|  | 36 | * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 
|  | 37 | * POSSIBILITY OF SUCH DAMAGES. | 
|  | 38 | * | 
|  | 39 | */ | 
|  | 40 |  | 
|  | 41 | #ifndef PM8001_CTL_H_INCLUDED | 
|  | 42 | #define PM8001_CTL_H_INCLUDED | 
|  | 43 |  | 
|  | 44 | #define IOCTL_BUF_SIZE		4096 | 
|  | 45 | #define HEADER_LEN			28 | 
|  | 46 | #define SIZE_OFFSET			16 | 
|  | 47 |  | 
|  | 48 | struct pm8001_ioctl_payload { | 
|  | 49 | u32	signature; | 
|  | 50 | u16	major_function; | 
|  | 51 | u16	minor_function; | 
|  | 52 | u16	length; | 
|  | 53 | u16	status; | 
|  | 54 | u16	offset; | 
|  | 55 | u16	id; | 
|  | 56 | u8	func_specific[1]; | 
|  | 57 | }; | 
|  | 58 |  | 
|  | 59 | #define FLASH_OK                        0x000000 | 
|  | 60 | #define FAIL_OPEN_BIOS_FILE             0x000100 | 
|  | 61 | #define FAIL_FILE_SIZE                  0x000a00 | 
|  | 62 | #define FAIL_PARAMETERS                 0x000b00 | 
|  | 63 | #define FAIL_OUT_MEMORY                 0x000c00 | 
|  | 64 | #define FLASH_IN_PROGRESS               0x001000 | 
|  | 65 |  | 
|  | 66 | #endif /* PM8001_CTL_H_INCLUDED */ | 
|  | 67 |  |