mb/scaleway/tagada: Update HSIO configuration
[coreboot.git] / src / mainboard / scaleway / tagada / hsio.c
bloba8a2035f26b6040de5f9a749dc3348f82752bbb6
1 /*
2 * This file is part of the coreboot project.
4 * Copyright (C) 2017 Intel Corporation.
5 * Copyright (C) 2017 - 2018 Online SAS.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #include <hsio.h>
18 #include <soc/fiamux.h>
20 size_t mainboard_get_hsio_config(BL_HSIO_INFORMATION **p_hsio_config)
22 size_t num;
23 num = ARRAY_SIZE(tagada_hsio_config);
24 (*p_hsio_config) = (BL_HSIO_INFORMATION *)tagada_hsio_config;
25 return num;