/* * Copyright 2012-15 Advanced Micro Devices, Inc. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * Authors: AMD *
*/
staticvoid store_registers( struct hw_gpio *gpio)
{
REG_GET(MASK_reg, MASK, &gpio->store.mask);
REG_GET(A_reg, A, &gpio->store.a);
REG_GET(EN_reg, EN, &gpio->store.en); /* TODO store GPIO_MUX_CONTROL if we ever use it */
}
staticvoid restore_registers( struct hw_gpio *gpio)
{
REG_UPDATE(MASK_reg, MASK, gpio->store.mask);
REG_UPDATE(A_reg, A, gpio->store.a);
REG_UPDATE(EN_reg, EN, gpio->store.en); /* TODO restore GPIO_MUX_CONTROL if we ever use it */
}
switch (ptr->mode) { case GPIO_MODE_INPUT: case GPIO_MODE_OUTPUT: case GPIO_MODE_HARDWARE: case GPIO_MODE_FAST_OUTPUT:
REG_GET(Y_reg, Y, value); break; default:
result = GPIO_RESULT_NON_SPECIFIC_ERROR;
}
/* This is the public interface * where the input comes from client, not shifted yet
* (because client does not know the shifts). */
switch (ptr->mode) { case GPIO_MODE_OUTPUT:
REG_UPDATE(A_reg, A, value); return GPIO_RESULT_OK; case GPIO_MODE_FAST_OUTPUT: /* We use (EN) to faster switch (used in DDC GPIO). * So (A) is grounded, output is driven by (EN = 0) * to pull the line down (output == 0) and (EN=1)
* then output is tri-state */
REG_UPDATE(EN_reg, EN, ~value); return GPIO_RESULT_OK; default: return GPIO_RESULT_NON_SPECIFIC_ERROR;
}
}
switch (mode) { case GPIO_MODE_INPUT: /* turn off output enable, act as input pin;
* program the pin as GPIO, mask out signal driven by HW */
REG_UPDATE(EN_reg, EN, 0);
REG_UPDATE(MASK_reg, MASK, 1); return GPIO_RESULT_OK; case GPIO_MODE_OUTPUT: /* turn on output enable, act as output pin;
* program the pin as GPIO, mask out signal driven by HW */
REG_UPDATE(A_reg, A, 0);
REG_UPDATE(MASK_reg, MASK, 1); return GPIO_RESULT_OK; case GPIO_MODE_FAST_OUTPUT: /* grounding the A register then use the EN register bit
* will have faster effect on the rise time */
REG_UPDATE(A_reg, A, 0);
REG_UPDATE(MASK_reg, MASK, 1); return GPIO_RESULT_OK; case GPIO_MODE_HARDWARE: /* program the pin as tri-state, pin is driven by HW */
REG_UPDATE(MASK_reg, MASK, 0); return GPIO_RESULT_OK; case GPIO_MODE_INTERRUPT: /* Interrupt mode supported only by HPD (IrqGpio) pins. */
REG_UPDATE(MASK_reg, MASK, 0); return GPIO_RESULT_OK; default: return GPIO_RESULT_NON_SPECIFIC_ERROR;
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.