diff options
Diffstat (limited to 'src/soc/intel/tigerlake/gpio.c')
-rw-r--r-- | src/soc/intel/tigerlake/gpio.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/soc/intel/tigerlake/gpio.c b/src/soc/intel/tigerlake/gpio.c index 4a5880b824..18b90702c1 100644 --- a/src/soc/intel/tigerlake/gpio.c +++ b/src/soc/intel/tigerlake/gpio.c @@ -1,7 +1,7 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2019 Intel Corp. + * Copyright (C) 2020 Intel Corp. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -194,18 +194,18 @@ const struct pad_community *soc_gpio_get_community(size_t *num_communities) const struct pmc_to_gpio_route *soc_pmc_gpio_routes(size_t *num) { static const struct pmc_to_gpio_route routes[] = { - { PMC_GPP_G, GPP_G }, { PMC_GPP_B, GPP_B }, + { PMC_GPP_T, GPP_T }, { PMC_GPP_A, GPP_A }, + { PMC_GPP_R, GPP_R }, + { PMC_GPD, GPD }, + { PMC_GPP_S, GPP_S }, { PMC_GPP_H, GPP_H }, { PMC_GPP_D, GPP_D }, + { PMC_GPP_U, GPP_U }, { PMC_GPP_F, GPP_F }, - { PMC_GPD, GPD }, { PMC_GPP_C, GPP_C }, { PMC_GPP_E, GPP_E }, - { PMC_GPP_R, GPP_R }, - { PMC_GPP_S, GPP_S } - }; *num = ARRAY_SIZE(routes); return routes; |