Skip to content
Snippets Groups Projects
Commit 3f44e44f authored by Lucas Stach's avatar Lucas Stach Committed by Tom Rini
Browse files

tegra20: complete periph_id enum


Most Tegra boards output the ULPI reference clock on pad DEV2.

Complete the periph_id enum so that we are able to enable this
clock output circuit.

Signed-off-by: default avatarLucas Stach <dev@lynxeye.de>
Acked-by: default avatarStephen Warren <swarren@wwwdotorg.org>
Acked-by: default avatarSimon Glass <sjg@chromium.org>
Signed-off-by: default avatarTom Warren <twarren@nvidia.com>
parent 01ca2865
No related branches found
No related tags found
No related merge requests found
...@@ -502,6 +502,7 @@ static int clock_periph_id_isvalid(enum periph_id id) ...@@ -502,6 +502,7 @@ static int clock_periph_id_isvalid(enum periph_id id)
case PERIPH_ID_RESERVED81: case PERIPH_ID_RESERVED81:
case PERIPH_ID_RESERVED82: case PERIPH_ID_RESERVED82:
case PERIPH_ID_RESERVED83: case PERIPH_ID_RESERVED83:
case PERIPH_ID_RESERVED91:
printf("Peripheral id %d is reserved\n", id); printf("Peripheral id %d is reserved\n", id);
break; break;
default: default:
......
...@@ -165,6 +165,12 @@ enum periph_id { ...@@ -165,6 +165,12 @@ enum periph_id {
/* 88 */ /* 88 */
PERIPH_ID_CRAM2, PERIPH_ID_CRAM2,
PERIPH_ID_SYNC_CLK_DOUBLER,
PERIPH_ID_CLK_M_DOUBLER,
PERIPH_ID_RESERVED91,
PERIPH_ID_SUS_OUT,
PERIPH_ID_DEV2_OUT,
PERIPH_ID_DEV1_OUT,
PERIPH_ID_COUNT, PERIPH_ID_COUNT,
PERIPH_ID_NONE = -1, PERIPH_ID_NONE = -1,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment