1b8e80941Smrg/* 2b8e80941Smrg * Copyright 2014 Advanced Micro Devices, Inc. 3b8e80941Smrg * 4b8e80941Smrg * Permission is hereby granted, free of charge, to any person obtaining a 5b8e80941Smrg * copy of this software and associated documentation files (the 6b8e80941Smrg * "Software"), to deal in the Software without restriction, including 7b8e80941Smrg * without limitation the rights to use, copy, modify, merge, publish, 8b8e80941Smrg * distribute, sub license, and/or sell copies of the Software, and to 9b8e80941Smrg * permit persons to whom the Software is furnished to do so, subject to 10b8e80941Smrg * the following conditions: 11b8e80941Smrg * 12b8e80941Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13b8e80941Smrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 14b8e80941Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 15b8e80941Smrg * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, 16b8e80941Smrg * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 17b8e80941Smrg * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 18b8e80941Smrg * USE OR OTHER DEALINGS IN THE SOFTWARE. 19b8e80941Smrg * 20b8e80941Smrg * The above copyright notice and this permission notice (including the 21b8e80941Smrg * next paragraph) shall be included in all copies or substantial portions 22b8e80941Smrg * of the Software. 23b8e80941Smrg * 24b8e80941Smrg */ 25b8e80941Smrg#ifndef AC_EXP_PARAM_H 26b8e80941Smrg#define AC_EXP_PARAM_H 27b8e80941Smrg 28b8e80941Smrgenum { 29b8e80941Smrg /* SPI_PS_INPUT_CNTL_i.OFFSET[0:4] */ 30b8e80941Smrg AC_EXP_PARAM_OFFSET_0 = 0, 31b8e80941Smrg AC_EXP_PARAM_OFFSET_31 = 31, 32b8e80941Smrg /* SPI_PS_INPUT_CNTL_i.DEFAULT_VAL[0:1] */ 33b8e80941Smrg AC_EXP_PARAM_DEFAULT_VAL_0000 = 64, 34b8e80941Smrg AC_EXP_PARAM_DEFAULT_VAL_0001, 35b8e80941Smrg AC_EXP_PARAM_DEFAULT_VAL_1110, 36b8e80941Smrg AC_EXP_PARAM_DEFAULT_VAL_1111, 37b8e80941Smrg AC_EXP_PARAM_UNDEFINED = 255, 38b8e80941Smrg}; 39b8e80941Smrg 40b8e80941Smrg#endif 41