// SPDX-License-Identifier: GPL-2.01/*2* linux/arch/alpha/kernel/es1888.c3*4* Init the built-in ES1888 sound chip (SB16 compatible)5*/67#include <linux/init.h>8#include <asm/io.h>9#include "proto.h"1011void __init12es1888_init(void)13{14/* Sequence of IO reads to init the audio controller */15inb(0x0229);16inb(0x0229);17inb(0x0229);18inb(0x022b);19inb(0x0229);20inb(0x022b);21inb(0x0229);22inb(0x0229);23inb(0x022b);24inb(0x0229);25inb(0x0220); /* This sets the base address to 0x220 */2627/* Sequence to set DMA channels */28outb(0x01, 0x0226); /* reset */29inb(0x0226); /* pause */30outb(0x00, 0x0226); /* release reset */31while (!(inb(0x022e) & 0x80)) /* wait for bit 7 to assert*/32continue;33inb(0x022a); /* pause */34outb(0xc6, 0x022c); /* enable extended mode */35inb(0x022a); /* pause, also forces the write */36while (inb(0x022c) & 0x80) /* wait for bit 7 to deassert */37continue;38outb(0xb1, 0x022c); /* setup for write to Interrupt CR */39while (inb(0x022c) & 0x80) /* wait for bit 7 to deassert */40continue;41outb(0x14, 0x022c); /* set IRQ 5 */42while (inb(0x022c) & 0x80) /* wait for bit 7 to deassert */43continue;44outb(0xb2, 0x022c); /* setup for write to DMA CR */45while (inb(0x022c) & 0x80) /* wait for bit 7 to deassert */46continue;47outb(0x18, 0x022c); /* set DMA channel 1 */48inb(0x022c); /* force the write */49}505152