/* SPDX-License-Identifier: GPL-2.0-only */1#ifndef __HAL2_H2#define __HAL2_H34/*5* Driver for HAL2 sound processors6* Copyright (c) 1999 Ulf Carlsson <[email protected]>7* Copyright (c) 2001, 2002, 2003 Ladislav Michl <[email protected]>8*/910#include <linux/types.h>1112/* Indirect status register */1314#define H2_ISR_TSTATUS 0x01 /* RO: transaction status 1=busy */15#define H2_ISR_USTATUS 0x02 /* RO: utime status bit 1=armed */16#define H2_ISR_QUAD_MODE 0x04 /* codec mode 0=indigo 1=quad */17#define H2_ISR_GLOBAL_RESET_N 0x08 /* chip global reset 0=reset */18#define H2_ISR_CODEC_RESET_N 0x10 /* codec/synth reset 0=reset */1920/* Revision register */2122#define H2_REV_AUDIO_PRESENT 0x8000 /* RO: audio present 0=present */23#define H2_REV_BOARD_M 0x7000 /* RO: bits 14:12, board revision */24#define H2_REV_MAJOR_CHIP_M 0x00F0 /* RO: bits 7:4, major chip revision */25#define H2_REV_MINOR_CHIP_M 0x000F /* RO: bits 3:0, minor chip revision */2627/* Indirect address register */2829/*30* Address of indirect internal register to be accessed. A write to this31* register initiates read or write access to the indirect registers in the32* HAL2. Note that there af four indirect data registers for write access to33* registers larger than 16 byte.34*/3536#define H2_IAR_TYPE_M 0xF000 /* bits 15:12, type of functional */37/* block the register resides in */38/* 1=DMA Port */39/* 9=Global DMA Control */40/* 2=Bresenham */41/* 3=Unix Timer */42#define H2_IAR_NUM_M 0x0F00 /* bits 11:8 instance of the */43/* blockin which the indirect */44/* register resides */45/* If IAR_TYPE_M=DMA Port: */46/* 1=Synth In */47/* 2=AES In */48/* 3=AES Out */49/* 4=DAC Out */50/* 5=ADC Out */51/* 6=Synth Control */52/* If IAR_TYPE_M=Global DMA Control: */53/* 1=Control */54/* If IAR_TYPE_M=Bresenham: */55/* 1=Bresenham Clock Gen 1 */56/* 2=Bresenham Clock Gen 2 */57/* 3=Bresenham Clock Gen 3 */58/* If IAR_TYPE_M=Unix Timer: */59/* 1=Unix Timer */60#define H2_IAR_ACCESS_SELECT 0x0080 /* 1=read 0=write */61#define H2_IAR_PARAM 0x000C /* Parameter Select */62#define H2_IAR_RB_INDEX_M 0x0003 /* Read Back Index */63/* 00:word0 */64/* 01:word1 */65/* 10:word2 */66/* 11:word3 */67/*68* HAL2 internal addressing69*70* The HAL2 has "indirect registers" (idr) which are accessed by writing to the71* Indirect Data registers. Write the address to the Indirect Address register72* to transfer the data.73*74* We define the H2IR_* to the read address and H2IW_* to the write address and75* H2I_* to be fields in whatever register is referred to.76*77* When we write to indirect registers which are larger than one word (16 bit)78* we have to fill more than one indirect register before writing. When we read79* back however we have to read several times, each time with different Read80* Back Indexes (there are defs for doing this easily).81*/8283/*84* Relay Control85*/86#define H2I_RELAY_C 0x910087#define H2I_RELAY_C_STATE 0x01 /* state of RELAY pin signal */8889/* DMA port enable */9091#define H2I_DMA_PORT_EN 0x910492#define H2I_DMA_PORT_EN_SY_IN 0x01 /* Synth_in DMA port */93#define H2I_DMA_PORT_EN_AESRX 0x02 /* AES receiver DMA port */94#define H2I_DMA_PORT_EN_AESTX 0x04 /* AES transmitter DMA port */95#define H2I_DMA_PORT_EN_CODECTX 0x08 /* CODEC transmit DMA port */96#define H2I_DMA_PORT_EN_CODECR 0x10 /* CODEC receive DMA port */9798#define H2I_DMA_END 0x9108 /* global dma endian select */99#define H2I_DMA_END_SY_IN 0x01 /* Synth_in DMA port */100#define H2I_DMA_END_AESRX 0x02 /* AES receiver DMA port */101#define H2I_DMA_END_AESTX 0x04 /* AES transmitter DMA port */102#define H2I_DMA_END_CODECTX 0x08 /* CODEC transmit DMA port */103#define H2I_DMA_END_CODECR 0x10 /* CODEC receive DMA port */104/* 0=b_end 1=l_end */105106#define H2I_DMA_DRV 0x910C /* global PBUS DMA enable */107108#define H2I_SYNTH_C 0x1104 /* Synth DMA control */109110#define H2I_AESRX_C 0x1204 /* AES RX dma control */111112#define H2I_C_TS_EN 0x20 /* Timestamp enable */113#define H2I_C_TS_FRMT 0x40 /* Timestamp format */114#define H2I_C_NAUDIO 0x80 /* Sign extend */115116/* AESRX CTL, 16 bit */117118#define H2I_AESTX_C 0x1304 /* AES TX DMA control */119#define H2I_AESTX_C_CLKID_SHIFT 3 /* Bresenham Clock Gen 1-3 */120#define H2I_AESTX_C_CLKID_M 0x18121#define H2I_AESTX_C_DATAT_SHIFT 8 /* 1=mono 2=stereo (3=quad) */122#define H2I_AESTX_C_DATAT_M 0x300123124/* CODEC registers */125126#define H2I_DAC_C1 0x1404 /* DAC DMA control, 16 bit */127#define H2I_DAC_C2 0x1408 /* DAC DMA control, 32 bit */128#define H2I_ADC_C1 0x1504 /* ADC DMA control, 16 bit */129#define H2I_ADC_C2 0x1508 /* ADC DMA control, 32 bit */130131/* Bits in CTL1 register */132133#define H2I_C1_DMA_SHIFT 0 /* DMA channel */134#define H2I_C1_DMA_M 0x7135#define H2I_C1_CLKID_SHIFT 3 /* Bresenham Clock Gen 1-3 */136#define H2I_C1_CLKID_M 0x18137#define H2I_C1_DATAT_SHIFT 8 /* 1=mono 2=stereo (3=quad) */138#define H2I_C1_DATAT_M 0x300139140/* Bits in CTL2 register */141142#define H2I_C2_R_GAIN_SHIFT 0 /* right a/d input gain */143#define H2I_C2_R_GAIN_M 0xf144#define H2I_C2_L_GAIN_SHIFT 4 /* left a/d input gain */145#define H2I_C2_L_GAIN_M 0xf0146#define H2I_C2_R_SEL 0x100 /* right input select */147#define H2I_C2_L_SEL 0x200 /* left input select */148#define H2I_C2_MUTE 0x400 /* mute */149#define H2I_C2_DO1 0x00010000 /* digital output port bit 0 */150#define H2I_C2_DO2 0x00020000 /* digital output port bit 1 */151#define H2I_C2_R_ATT_SHIFT 18 /* right d/a output - */152#define H2I_C2_R_ATT_M 0x007c0000 /* attenuation */153#define H2I_C2_L_ATT_SHIFT 23 /* left d/a output - */154#define H2I_C2_L_ATT_M 0x0f800000 /* attenuation */155156#define H2I_SYNTH_MAP_C 0x1104 /* synth dma handshake ctrl */157158/* Clock generator CTL 1, 16 bit */159160#define H2I_BRES1_C1 0x2104161#define H2I_BRES2_C1 0x2204162#define H2I_BRES3_C1 0x2304163164#define H2I_BRES_C1_SHIFT 0 /* 0=48.0 1=44.1 2=aes_rx */165#define H2I_BRES_C1_M 0x03166167/* Clock generator CTL 2, 32 bit */168169#define H2I_BRES1_C2 0x2108170#define H2I_BRES2_C2 0x2208171#define H2I_BRES3_C2 0x2308172173#define H2I_BRES_C2_INC_SHIFT 0 /* increment value */174#define H2I_BRES_C2_INC_M 0xffff175#define H2I_BRES_C2_MOD_SHIFT 16 /* modcontrol value */176#define H2I_BRES_C2_MOD_M 0xffff0000 /* modctrl=0xffff&(modinc-1) */177178/* Unix timer, 64 bit */179180#define H2I_UTIME 0x3104181#define H2I_UTIME_0_LD 0xffff /* microseconds, LSB's */182#define H2I_UTIME_1_LD0 0x0f /* microseconds, MSB's */183#define H2I_UTIME_1_LD1 0xf0 /* tenths of microseconds */184#define H2I_UTIME_2_LD 0xffff /* seconds, LSB's */185#define H2I_UTIME_3_LD 0xffff /* seconds, MSB's */186187struct hal2_ctl_regs {188u32 _unused0[4];189u32 isr; /* 0x10 Status Register */190u32 _unused1[3];191u32 rev; /* 0x20 Revision Register */192u32 _unused2[3];193u32 iar; /* 0x30 Indirect Address Register */194u32 _unused3[3];195u32 idr0; /* 0x40 Indirect Data Register 0 */196u32 _unused4[3];197u32 idr1; /* 0x50 Indirect Data Register 1 */198u32 _unused5[3];199u32 idr2; /* 0x60 Indirect Data Register 2 */200u32 _unused6[3];201u32 idr3; /* 0x70 Indirect Data Register 3 */202};203204struct hal2_aes_regs {205u32 rx_stat[2]; /* Status registers */206u32 rx_cr[2]; /* Control registers */207u32 rx_ud[4]; /* User data window */208u32 rx_st[24]; /* Channel status data */209210u32 tx_stat[1]; /* Status register */211u32 tx_cr[3]; /* Control registers */212u32 tx_ud[4]; /* User data window */213u32 tx_st[24]; /* Channel status data */214};215216struct hal2_vol_regs {217u32 right; /* Right volume */218u32 left; /* Left volume */219};220221struct hal2_syn_regs {222u32 _unused0[2];223u32 page; /* DOC Page register */224u32 regsel; /* DOC Register selection */225u32 dlow; /* DOC Data low */226u32 dhigh; /* DOC Data high */227u32 irq; /* IRQ Status */228u32 dram; /* DRAM Access */229};230231#endif /* __HAL2_H */232233234