soc/nvidia: Use 'include <stdlib.h>' when appropriate
Also including <types.h>, is supposed to provide stdint and stddef. Change-Id: I812d468c68b31917da5d406e2fb3b84bc6331b69 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/33687 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
This commit is contained in:
parent
0f33d8c29a
commit
308185546b
|
@ -17,9 +17,10 @@
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <delay.h>
|
#include <delay.h>
|
||||||
#include <device/i2c_simple.h>
|
#include <device/i2c_simple.h>
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <soc/addressmap.h>
|
#include <soc/addressmap.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
#include "i2c.h"
|
#include "i2c.h"
|
||||||
|
|
||||||
static void do_bus_clear(int bus)
|
static void do_bus_clear(int bus)
|
||||||
|
|
|
@ -27,8 +27,8 @@
|
||||||
#include <soc/nvidia/tegra/dc.h>
|
#include <soc/nvidia/tegra/dc.h>
|
||||||
#include <soc/nvidia/tegra/displayport.h>
|
#include <soc/nvidia/tegra/displayport.h>
|
||||||
#include <soc/sor.h>
|
#include <soc/sor.h>
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <types.h>
|
||||||
|
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
|
|
|
@ -26,10 +26,9 @@
|
||||||
#include <soc/spi.h>
|
#include <soc/spi.h>
|
||||||
#include <spi-generic.h>
|
#include <spi-generic.h>
|
||||||
#include <spi_flash.h>
|
#include <spi_flash.h>
|
||||||
#include <stdint.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <symbols.h>
|
#include <symbols.h>
|
||||||
#include <timer.h>
|
#include <timer.h>
|
||||||
|
#include <types.h>
|
||||||
|
|
||||||
#if defined(CONFIG_DEBUG_SPI) && CONFIG_DEBUG_SPI
|
#if defined(CONFIG_DEBUG_SPI) && CONFIG_DEBUG_SPI
|
||||||
# define DEBUG_SPI(x,...) printk(BIOS_DEBUG, "TEGRA_SPI: " x)
|
# define DEBUG_SPI(x,...) printk(BIOS_DEBUG, "TEGRA_SPI: " x)
|
||||||
|
|
|
@ -21,9 +21,9 @@
|
||||||
#include <soc/id.h>
|
#include <soc/id.h>
|
||||||
#include <soc/mc.h>
|
#include <soc/mc.h>
|
||||||
#include <soc/sdram.h>
|
#include <soc/sdram.h>
|
||||||
#include <stdlib.h>
|
|
||||||
#include <symbols.h>
|
#include <symbols.h>
|
||||||
#include <soc/nvidia/tegra/types.h>
|
#include <soc/nvidia/tegra/types.h>
|
||||||
|
#include <types.h>
|
||||||
|
|
||||||
static uintptr_t tz_base_mib;
|
static uintptr_t tz_base_mib;
|
||||||
static const size_t tz_size_mib = CONFIG_TRUSTZONE_CARVEOUT_SIZE_MB;
|
static const size_t tz_size_mib = CONFIG_TRUSTZONE_CARVEOUT_SIZE_MB;
|
||||||
|
|
|
@ -18,8 +18,8 @@
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <soc/addressmap.h>
|
#include <soc/addressmap.h>
|
||||||
#include <soc/console_uart.h>
|
#include <soc/console_uart.h>
|
||||||
#include <stdlib.h>
|
|
||||||
#include <symbols.h>
|
#include <symbols.h>
|
||||||
|
#include <types.h>
|
||||||
|
|
||||||
typedef struct bl31_plat_params {
|
typedef struct bl31_plat_params {
|
||||||
/* TZ memory size */
|
/* TZ memory size */
|
||||||
|
|
|
@ -12,16 +12,17 @@
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <device/mmio.h>
|
#include <device/mmio.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdlib.h>
|
|
||||||
#include <edid.h>
|
#include <edid.h>
|
||||||
#include <device/device.h>
|
#include <device/device.h>
|
||||||
#include <soc/nvidia/tegra/dc.h>
|
#include <soc/nvidia/tegra/dc.h>
|
||||||
#include "chip.h"
|
|
||||||
#include <soc/display.h>
|
#include <soc/display.h>
|
||||||
|
|
||||||
|
#include "chip.h"
|
||||||
|
|
||||||
int dump = 0;
|
int dump = 0;
|
||||||
unsigned long READL(void *p)
|
unsigned long READL(void *p)
|
||||||
{
|
{
|
||||||
|
|
|
@ -16,11 +16,11 @@
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <device/device.h>
|
#include <device/device.h>
|
||||||
#include <device/i2c_simple.h>
|
#include <device/i2c_simple.h>
|
||||||
#include <edid.h>
|
#include <edid.h>
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <delay.h>
|
#include <delay.h>
|
||||||
#include <soc/addressmap.h>
|
#include <soc/addressmap.h>
|
||||||
|
@ -32,6 +32,8 @@
|
||||||
#include <soc/nvidia/tegra/pwm.h>
|
#include <soc/nvidia/tegra/pwm.h>
|
||||||
#include <soc/nvidia/tegra/displayport.h>
|
#include <soc/nvidia/tegra/displayport.h>
|
||||||
#include <soc/sor.h>
|
#include <soc/sor.h>
|
||||||
|
#include <types.h>
|
||||||
|
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
|
|
||||||
#define DO_FAST_LINK_TRAINING 0
|
#define DO_FAST_LINK_TRAINING 0
|
||||||
|
|
|
@ -12,18 +12,19 @@
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdlib.h>
|
|
||||||
#include <delay.h>
|
#include <delay.h>
|
||||||
#include <soc/addressmap.h>
|
#include <soc/addressmap.h>
|
||||||
#include <soc/clock.h>
|
#include <soc/clock.h>
|
||||||
#include <device/device.h>
|
#include <device/device.h>
|
||||||
#include <soc/nvidia/tegra/types.h>
|
#include <soc/nvidia/tegra/types.h>
|
||||||
#include "../chip.h"
|
|
||||||
#include <soc/display.h>
|
#include <soc/display.h>
|
||||||
#include <soc/mipi_dsi.h>
|
#include <soc/mipi_dsi.h>
|
||||||
#include <soc/tegra_dsi.h>
|
#include <soc/tegra_dsi.h>
|
||||||
|
|
||||||
|
#include "../chip.h"
|
||||||
#include "panel-jdi-lpm102a188a.h"
|
#include "panel-jdi-lpm102a188a.h"
|
||||||
|
|
||||||
struct panel_jdi jdi_data[NUM_DSI];
|
struct panel_jdi jdi_data[NUM_DSI];
|
||||||
|
|
|
@ -16,8 +16,6 @@
|
||||||
#include <types.h>
|
#include <types.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <device/mmio.h>
|
#include <device/mmio.h>
|
||||||
#include <stdint.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <delay.h>
|
#include <delay.h>
|
||||||
#include <soc/addressmap.h>
|
#include <soc/addressmap.h>
|
||||||
#include <soc/clock.h>
|
#include <soc/clock.h>
|
||||||
|
@ -26,6 +24,7 @@
|
||||||
#include <soc/display.h>
|
#include <soc/display.h>
|
||||||
#include <soc/mipi_dsi.h>
|
#include <soc/mipi_dsi.h>
|
||||||
#include <soc/tegra_dsi.h>
|
#include <soc/tegra_dsi.h>
|
||||||
|
|
||||||
#include "jdi_25x18_display/panel-jdi-lpm102a188a.h"
|
#include "jdi_25x18_display/panel-jdi-lpm102a188a.h"
|
||||||
|
|
||||||
static unsigned long dsi_pads[] = {
|
static unsigned long dsi_pads[] = {
|
||||||
|
|
|
@ -40,8 +40,6 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <stdint.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <soc/addressmap.h>
|
#include <soc/addressmap.h>
|
||||||
#include <soc/clock.h>
|
#include <soc/clock.h>
|
||||||
|
@ -51,6 +49,7 @@
|
||||||
#include <soc/mipi_dsi.h>
|
#include <soc/mipi_dsi.h>
|
||||||
#include <soc/mipi_display.h>
|
#include <soc/mipi_display.h>
|
||||||
#include <soc/tegra_dsi.h>
|
#include <soc/tegra_dsi.h>
|
||||||
|
#include <types.h>
|
||||||
|
|
||||||
struct mipi_dsi_device mipi_dsi_device_data[NUM_DSI] = {
|
struct mipi_dsi_device mipi_dsi_device_data[NUM_DSI] = {
|
||||||
{
|
{
|
||||||
|
|
|
@ -17,9 +17,8 @@
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <soc/addressmap.h>
|
#include <soc/addressmap.h>
|
||||||
#include <soc/mmu_operations.h>
|
#include <soc/mmu_operations.h>
|
||||||
#include <stdlib.h>
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <symbols.h>
|
#include <symbols.h>
|
||||||
|
#include <types.h>
|
||||||
|
|
||||||
static void tegra210_mmu_config(void)
|
static void tegra210_mmu_config(void)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue