35 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * ak4535.h -- AK4535 Soc Audio driver4 *5 * Copyright 2005 Openedhand Ltd.6 *7 * Author: Richard Purdie <richard@openedhand.com>8 *9 * Based on wm8753.h10 */11 12#ifndef _AK4535_H13#define _AK4535_H14 15/* AK4535 register space */16 17#define AK4535_PM1 0x018#define AK4535_PM2 0x119#define AK4535_SIG1 0x220#define AK4535_SIG2 0x321#define AK4535_MODE1 0x422#define AK4535_MODE2 0x523#define AK4535_DAC 0x624#define AK4535_MIC 0x725#define AK4535_TIMER 0x826#define AK4535_ALC1 0x927#define AK4535_ALC2 0xa28#define AK4535_PGA 0xb29#define AK4535_LATT 0xc30#define AK4535_RATT 0xd31#define AK4535_VOL 0xe32#define AK4535_STATUS 0xf33 34#endif35