Prep work before moving the function to mipi-dbi. tinydrm_spi_transfer() was made to support one class of drivers in drivers/staging/fbtft that has not been converted to DRM yet, so strip away the unused functionality: - Start byte (header) is not used. - No driver relies on the automatic 16-bit byte swapping on little endian machines with SPI controllers only supporting 8 bits per word. Other changes: - No need to initialize ret - No need for the WARN since mipi-dbi only uses 8 and 16 bpw. - Use spi_message_init_with_transfers() Cc: David Lechner <david@lechnology.com> Acked-by: : David Lechner <david@lechnology.com> Signed-off-by: Noralf Trønnes <noralf@tronnes.org> Link: https://patchwork.freedesktop.org/patch/msgid/20190719155916.62465-7-noralf@tronnes.org
48 lines
1.1 KiB
C
48 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2016 Noralf Trønnes
|
|
*/
|
|
|
|
#ifndef __LINUX_TINYDRM_HELPERS_H
|
|
#define __LINUX_TINYDRM_HELPERS_H
|
|
|
|
struct backlight_device;
|
|
struct drm_device;
|
|
struct drm_display_mode;
|
|
struct drm_framebuffer;
|
|
struct drm_rect;
|
|
struct drm_simple_display_pipe;
|
|
struct drm_simple_display_pipe_funcs;
|
|
struct spi_transfer;
|
|
struct spi_device;
|
|
struct device;
|
|
|
|
/**
|
|
* tinydrm_machine_little_endian - Machine is little endian
|
|
*
|
|
* Returns:
|
|
* true if *defined(__LITTLE_ENDIAN)*, false otherwise
|
|
*/
|
|
static inline bool tinydrm_machine_little_endian(void)
|
|
{
|
|
#if defined(__LITTLE_ENDIAN)
|
|
return true;
|
|
#else
|
|
return false;
|
|
#endif
|
|
}
|
|
|
|
int tinydrm_display_pipe_init(struct drm_device *drm,
|
|
struct drm_simple_display_pipe *pipe,
|
|
const struct drm_simple_display_pipe_funcs *funcs,
|
|
int connector_type,
|
|
const uint32_t *formats,
|
|
unsigned int format_count,
|
|
const struct drm_display_mode *mode,
|
|
unsigned int rotation);
|
|
|
|
int tinydrm_spi_transfer(struct spi_device *spi, u32 speed_hz,
|
|
u8 bpw, const void *buf, size_t len);
|
|
|
|
#endif /* __LINUX_TINYDRM_HELPERS_H */
|