2018-08-02 01:47:30 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0
|
|
|
|
*
|
2009-08-20 12:01:05 +00:00
|
|
|
* Fifo-attached Serial Interface (FSI) support for SH7724
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Renesas Solutions Corp.
|
|
|
|
* Kuninori Morimoto <morimoto.kuninori@renesas.com>
|
|
|
|
*/
|
2018-08-02 01:47:30 +00:00
|
|
|
#ifndef __SOUND_FSI_H
|
|
|
|
#define __SOUND_FSI_H
|
|
|
|
|
2009-08-20 12:01:05 +00:00
|
|
|
#include <linux/clk.h>
|
|
|
|
#include <sound/soc.h>
|
|
|
|
|
2011-01-24 01:43:19 +00:00
|
|
|
/*
|
2012-12-17 06:12:55 +00:00
|
|
|
* flags
|
2011-01-24 01:43:19 +00:00
|
|
|
*/
|
2012-12-17 06:12:55 +00:00
|
|
|
#define SH_FSI_FMT_SPDIF (1 << 0) /* spdif for HDMI */
|
|
|
|
#define SH_FSI_ENABLE_STREAM_MODE (1 << 1) /* for 16bit data */
|
|
|
|
#define SH_FSI_CLK_CPG (1 << 2) /* FSIxCK + FSI-DIV */
|
2012-11-06 02:30:38 +00:00
|
|
|
|
2012-02-03 08:58:48 +00:00
|
|
|
struct sh_fsi_port_info {
|
|
|
|
unsigned long flags;
|
2012-02-03 08:59:33 +00:00
|
|
|
int tx_id;
|
|
|
|
int rx_id;
|
2012-02-03 08:58:48 +00:00
|
|
|
};
|
|
|
|
|
2009-08-20 12:01:05 +00:00
|
|
|
struct sh_fsi_platform_info {
|
2012-02-03 08:58:48 +00:00
|
|
|
struct sh_fsi_port_info port_a;
|
|
|
|
struct sh_fsi_port_info port_b;
|
2009-08-20 12:01:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __SOUND_FSI_H */
|