upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.4 KiB
35 lines
1.4 KiB
/*
|
|
* Copyright (C) 2012 Samsung Electronics
|
|
*
|
|
* Author: InKi Dae <inki.dae@samsung.com>
|
|
* Author: Donghwa Lee <dh09.lee@samsung.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <linux/fb.h>
|
|
|
|
#ifndef _EXYNOS_MIPI_DSI_COMMON_H
|
|
#define _EXYNOS_MIPI_DSI_COMMON_H
|
|
|
|
int exynos_mipi_dsi_wr_data(struct mipi_dsim_device *dsim, unsigned int data_id,
|
|
const unsigned char *data0, unsigned int data1);
|
|
int exynos_mipi_dsi_pll_on(struct mipi_dsim_device *dsim, unsigned int enable);
|
|
unsigned long exynos_mipi_dsi_change_pll(struct mipi_dsim_device *dsim,
|
|
unsigned int pre_divider, unsigned int main_divider,
|
|
unsigned int scaler);
|
|
int exynos_mipi_dsi_set_clock(struct mipi_dsim_device *dsim,
|
|
unsigned int byte_clk_sel, unsigned int enable);
|
|
int exynos_mipi_dsi_init_dsim(struct mipi_dsim_device *dsim);
|
|
int exynos_mipi_dsi_set_display_mode(struct mipi_dsim_device *dsim,
|
|
struct mipi_dsim_config *dsim_info);
|
|
int exynos_mipi_dsi_init_link(struct mipi_dsim_device *dsim);
|
|
int exynos_mipi_dsi_set_hs_enable(struct mipi_dsim_device *dsim);
|
|
int exynos_mipi_dsi_set_data_transfer_mode(struct mipi_dsim_device *dsim,
|
|
unsigned int mode);
|
|
int exynos_mipi_dsi_enable_frame_done_int(struct mipi_dsim_device *dsim,
|
|
unsigned int enable);
|
|
int exynos_mipi_dsi_get_frame_done_status(struct mipi_dsim_device *dsim);
|
|
int exynos_mipi_dsi_clear_frame_done(struct mipi_dsim_device *dsim);
|
|
|
|
#endif /* _EXYNOS_MIPI_DSI_COMMON_H */
|
|
|