blob: 3af36ec928e93480ba4332430364917d926f5bd7 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Oder Chiouaf48f1d2014-10-06 16:30:51 +08002/*
3 * rt5677-spi.h -- RT5677 ALSA SoC audio codec driver
4 *
5 * Copyright 2013 Realtek Semiconductor Corp.
6 * Author: Oder Chiou <oder_chiou@realtek.com>
Oder Chiouaf48f1d2014-10-06 16:30:51 +08007 */
8
Oder Chioud65fd3a2014-11-05 13:42:52 +08009#ifndef __RT5677_SPI_H__
10#define __RT5677_SPI_H__
Oder Chiouaf48f1d2014-10-06 16:30:51 +080011
Ben Zhang7d4d4432015-08-21 21:17:00 -070012int rt5677_spi_read(u32 addr, void *rxbuf, size_t len);
13int rt5677_spi_write(u32 addr, const void *txbuf, size_t len);
14int rt5677_spi_write_firmware(u32 addr, const struct firmware *fw);
Ben Zhanga0e0d132019-10-18 13:04:38 -070015void rt5677_spi_hotword_detected(void);
Oder Chiouaf48f1d2014-10-06 16:30:51 +080016
17#endif /* __RT5677_SPI_H__ */