Home | History | Annotate | Line # | Download | only in fdt
ausoc.c revision 1.3.8.1
      1 /* $NetBSD: ausoc.c,v 1.3.8.1 2019/04/27 10:17:59 isaki Exp $ */
      2 
      3 /*-
      4  * Copyright (c) 2018 Jared McNeill <jmcneill (at) invisible.ca>
      5  * All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  *
     16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     18  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     19  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     20  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     21  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     23  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     24  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26  * SUCH DAMAGE.
     27  */
     28 
     29 #include <sys/cdefs.h>
     30 __KERNEL_RCSID(0, "$NetBSD: ausoc.c,v 1.3.8.1 2019/04/27 10:17:59 isaki Exp $");
     31 
     32 #include <sys/param.h>
     33 #include <sys/bus.h>
     34 #include <sys/cpu.h>
     35 #include <sys/device.h>
     36 #include <sys/kmem.h>
     37 #include <sys/gpio.h>
     38 
     39 #include <sys/audioio.h>
     40 #include <dev/audio_if.h>
     41 #include <dev/audio_dai.h>
     42 
     43 #include <dev/fdt/fdtvar.h>
     44 
     45 static const char *compatible[] = { "simple-audio-card", NULL };
     46 
     47 struct ausoc_link {
     48 	const char		*link_name;
     49 
     50 	audio_dai_tag_t		link_cpu;
     51 	audio_dai_tag_t		link_codec;
     52 	audio_dai_tag_t		*link_aux;
     53 	u_int			link_naux;
     54 
     55 	u_int			link_mclk_fs;
     56 
     57 	kmutex_t		link_lock;
     58 	kmutex_t		link_intr_lock;
     59 };
     60 
     61 struct ausoc_softc {
     62 	device_t		sc_dev;
     63 	int			sc_phandle;
     64 	const char		*sc_name;
     65 
     66 	struct ausoc_link	*sc_link;
     67 	u_int			sc_nlink;
     68 };
     69 
     70 static void
     71 ausoc_close(void *priv)
     72 {
     73 	struct ausoc_link * const link = priv;
     74 	u_int aux;
     75 
     76 	for (aux = 0; aux < link->link_naux; aux++)
     77 		audio_dai_close(link->link_aux[aux]);
     78 	audio_dai_close(link->link_codec);
     79 	audio_dai_close(link->link_cpu);
     80 }
     81 
     82 static int
     83 ausoc_open(void *priv, int flags)
     84 {
     85 	struct ausoc_link * const link = priv;
     86 	u_int aux;
     87 	int error;
     88 
     89 	error = audio_dai_open(link->link_cpu, flags);
     90 	if (error)
     91 		goto failed;
     92 
     93 	error = audio_dai_open(link->link_codec, flags);
     94 	if (error)
     95 		goto failed;
     96 
     97 	for (aux = 0; aux < link->link_naux; aux++) {
     98 		error = audio_dai_open(link->link_aux[aux], flags);
     99 		if (error)
    100 			goto failed;
    101 	}
    102 
    103 	return 0;
    104 
    105 failed:
    106 	ausoc_close(priv);
    107 	return error;
    108 }
    109 
    110 static int
    111 ausoc_drain(void *priv)
    112 {
    113 	struct ausoc_link * const link = priv;
    114 
    115 	return audio_dai_drain(link->link_cpu);
    116 }
    117 
    118 static int
    119 ausoc_query_format(void *priv, audio_format_query_t *afp)
    120 {
    121 	struct ausoc_link * const link = priv;
    122 
    123 	return audio_dai_query_format(link->link_cpu, afp);
    124 }
    125 
    126 static int
    127 ausoc_set_format(void *priv, int setmode,
    128     const audio_params_t *play, const audio_params_t *rec,
    129     audio_filter_reg_t *pfil, audio_filter_reg_t *rfil)
    130 {
    131 	struct ausoc_link * const link = priv;
    132 	int error;
    133 
    134 	error = audio_dai_mi_set_format(link->link_cpu, setmode,
    135 	    play, rec, pfil, rfil);
    136 	if (error)
    137 		return error;
    138 
    139 	return audio_dai_mi_set_format(link->link_codec, setmode,
    140 	    play, rec, pfil, rfil);
    141 }
    142 
    143 static int
    144 ausoc_set_port(void *priv, mixer_ctrl_t *mc)
    145 {
    146 	struct ausoc_link * const link = priv;
    147 
    148 	return audio_dai_set_port(link->link_codec, mc);
    149 }
    150 
    151 static int
    152 ausoc_get_port(void *priv, mixer_ctrl_t *mc)
    153 {
    154 	struct ausoc_link * const link = priv;
    155 
    156 	return audio_dai_get_port(link->link_codec, mc);
    157 }
    158 
    159 static int
    160 ausoc_query_devinfo(void *priv, mixer_devinfo_t *di)
    161 {
    162 	struct ausoc_link * const link = priv;
    163 
    164 	return audio_dai_query_devinfo(link->link_codec, di);
    165 }
    166 
    167 static void *
    168 ausoc_allocm(void *priv, int dir, size_t size)
    169 {
    170 	struct ausoc_link * const link = priv;
    171 
    172 	return audio_dai_allocm(link->link_cpu, dir, size);
    173 }
    174 
    175 static void
    176 ausoc_freem(void *priv, void *addr, size_t size)
    177 {
    178 	struct ausoc_link * const link = priv;
    179 
    180 	return audio_dai_freem(link->link_cpu, addr, size);
    181 }
    182 
    183 static int
    184 ausoc_getdev(void *priv, struct audio_device *adev)
    185 {
    186 	struct ausoc_link * const link = priv;
    187 
    188 	/* Defaults */
    189 	snprintf(adev->name, sizeof(adev->name), "%s", link->link_name);
    190 	snprintf(adev->version, sizeof(adev->version), "");
    191 	snprintf(adev->config, sizeof(adev->config), "ausoc");
    192 
    193 	/* Codec can override */
    194 	(void)audio_dai_getdev(link->link_codec, adev);
    195 
    196 	return 0;
    197 }
    198 
    199 static int
    200 ausoc_get_props(void *priv)
    201 {
    202 	struct ausoc_link * const link = priv;
    203 
    204 	return audio_dai_get_props(link->link_cpu);
    205 }
    206 
    207 static int
    208 ausoc_round_blocksize(void *priv, int bs, int mode,
    209     const audio_params_t *params)
    210 {
    211 	struct ausoc_link * const link = priv;
    212 
    213 	return audio_dai_round_blocksize(link->link_cpu, bs, mode, params);
    214 }
    215 
    216 static size_t
    217 ausoc_round_buffersize(void *priv, int dir, size_t bufsize)
    218 {
    219 	struct ausoc_link * const link = priv;
    220 
    221 	return audio_dai_round_buffersize(link->link_cpu, dir, bufsize);
    222 }
    223 
    224 static int
    225 ausoc_halt_output(void *priv)
    226 {
    227 	struct ausoc_link * const link = priv;
    228 	u_int n;
    229 
    230 	for (n = 0; n < link->link_naux; n++)
    231 		audio_dai_halt(link->link_aux[n], AUMODE_PLAY);
    232 
    233 	audio_dai_halt(link->link_codec, AUMODE_PLAY);
    234 
    235 	return audio_dai_halt(link->link_cpu, AUMODE_PLAY);
    236 }
    237 
    238 static int
    239 ausoc_halt_input(void *priv)
    240 {
    241 	struct ausoc_link * const link = priv;
    242 	u_int n;
    243 
    244 	for (n = 0; n < link->link_naux; n++)
    245 		audio_dai_halt(link->link_aux[n], AUMODE_RECORD);
    246 
    247 	audio_dai_halt(link->link_codec, AUMODE_RECORD);
    248 
    249 	return audio_dai_halt(link->link_cpu, AUMODE_RECORD);
    250 }
    251 
    252 static int
    253 ausoc_trigger_output(void *priv, void *start, void *end, int blksize,
    254     void (*intr)(void *), void *intrarg, const audio_params_t *params)
    255 {
    256 	struct ausoc_link * const link = priv;
    257 	u_int n, rate;
    258 	int error;
    259 
    260 	if (link->link_mclk_fs) {
    261 		rate = params->sample_rate * link->link_mclk_fs;
    262 		error = audio_dai_set_sysclk(link->link_codec, rate,
    263 		    AUDIO_DAI_CLOCK_IN);
    264 		if (error)
    265 			goto failed;
    266 		error = audio_dai_set_sysclk(link->link_cpu, rate,
    267 		    AUDIO_DAI_CLOCK_OUT);
    268 		if (error)
    269 			goto failed;
    270 	}
    271 
    272 	for (n = 0; n < link->link_naux; n++) {
    273 		error = audio_dai_trigger(link->link_aux[n], start, end,
    274 		    blksize, intr, intrarg, params, AUMODE_PLAY);
    275 		if (error)
    276 			goto failed;
    277 	}
    278 	error = audio_dai_trigger(link->link_codec, start, end, blksize,
    279 	    intr, intrarg, params, AUMODE_PLAY);
    280 	if (error)
    281 		goto failed;
    282 
    283 	return audio_dai_trigger(link->link_cpu, start, end, blksize,
    284 	    intr, intrarg, params, AUMODE_PLAY);
    285 
    286 failed:
    287 	ausoc_halt_output(priv);
    288 	return error;
    289 }
    290 
    291 static int
    292 ausoc_trigger_input(void *priv, void *start, void *end, int blksize,
    293     void (*intr)(void *), void *intrarg, const audio_params_t *params)
    294 {
    295 	struct ausoc_link * const link = priv;
    296 	u_int n, rate;
    297 	int error;
    298 
    299 	if (link->link_mclk_fs) {
    300 		rate = params->sample_rate * link->link_mclk_fs;
    301 		error = audio_dai_set_sysclk(link->link_codec, rate,
    302 		    AUDIO_DAI_CLOCK_IN);
    303 		if (error)
    304 			goto failed;
    305 		error = audio_dai_set_sysclk(link->link_cpu, rate,
    306 		    AUDIO_DAI_CLOCK_OUT);
    307 		if (error)
    308 			goto failed;
    309 	}
    310 
    311 	for (n = 0; n < link->link_naux; n++) {
    312 		error = audio_dai_trigger(link->link_aux[n], start, end,
    313 		    blksize, intr, intrarg, params, AUMODE_RECORD);
    314 		if (error)
    315 			goto failed;
    316 	}
    317 	error = audio_dai_trigger(link->link_codec, start, end, blksize,
    318 	    intr, intrarg, params, AUMODE_RECORD);
    319 	if (error)
    320 		goto failed;
    321 
    322 	return audio_dai_trigger(link->link_cpu, start, end, blksize,
    323 	    intr, intrarg, params, AUMODE_RECORD);
    324 
    325 failed:
    326 	ausoc_halt_input(priv);
    327 	return error;
    328 }
    329 
    330 static void
    331 ausoc_get_locks(void *priv, kmutex_t **intr, kmutex_t **thread)
    332 {
    333 	struct ausoc_link * const link = priv;
    334 
    335 	return audio_dai_get_locks(link->link_cpu, intr, thread);
    336 }
    337 
    338 static const struct audio_hw_if ausoc_hw_if = {
    339 	.open = ausoc_open,
    340 	.close = ausoc_close,
    341 	.drain = ausoc_drain,
    342 	.query_format = ausoc_query_format,
    343 	.set_format = ausoc_set_format,
    344 	.allocm = ausoc_allocm,
    345 	.freem = ausoc_freem,
    346 	.getdev = ausoc_getdev,
    347 	.set_port = ausoc_set_port,
    348 	.get_port = ausoc_get_port,
    349 	.query_devinfo = ausoc_query_devinfo,
    350 	.get_props = ausoc_get_props,
    351 	.round_blocksize = ausoc_round_blocksize,
    352 	.round_buffersize = ausoc_round_buffersize,
    353 	.trigger_output = ausoc_trigger_output,
    354 	.trigger_input = ausoc_trigger_input,
    355 	.halt_output = ausoc_halt_output,
    356 	.halt_input = ausoc_halt_input,
    357 	.get_locks = ausoc_get_locks,
    358 };
    359 
    360 static int
    361 ausoc_match(device_t parent, cfdata_t cf, void *aux)
    362 {
    363 	struct fdt_attach_args * const faa = aux;
    364 
    365 	return of_match_compatible(faa->faa_phandle, compatible);
    366 }
    367 
    368 static struct {
    369 	const char *name;
    370 	u_int fmt;
    371 } ausoc_dai_formats[] = {
    372 	{ "i2s",	AUDIO_DAI_FORMAT_I2S },
    373 	{ "right_j",	AUDIO_DAI_FORMAT_RJ },
    374 	{ "left_j",	AUDIO_DAI_FORMAT_LJ },
    375 	{ "dsp_a",	AUDIO_DAI_FORMAT_DSPA },
    376 	{ "dsp_b",	AUDIO_DAI_FORMAT_DSPB },
    377 	{ "ac97",	AUDIO_DAI_FORMAT_AC97 },
    378 	{ "pdm",	AUDIO_DAI_FORMAT_PDM },
    379 };
    380 
    381 static int
    382 ausoc_link_format(struct ausoc_softc *sc, struct ausoc_link *link, int phandle,
    383     int dai_phandle, bool single_link, u_int *format)
    384 {
    385 	const char *format_prop = single_link ?
    386 	    "simple-audio-card,format" : "format";
    387 	const char *frame_master_prop = single_link ?
    388 	    "simple-audio-card,frame-master" : "frame-master";
    389 	const char *bitclock_master_prop = single_link ?
    390 	    "simple-audio-card,bitclock-master" : "bitclock-master";
    391 	const char *bitclock_inversion_prop = single_link ?
    392 	    "simple-audio-card,bitclock-inversion" : "bitclock-inversion";
    393 	const char *frame_inversion_prop = single_link ?
    394 	    "simple-audio-card,frame-inversion" : "frame-inversion";
    395 
    396 	u_int fmt, pol, clk;
    397 	const char *s;
    398 	u_int n;
    399 
    400 	s = fdtbus_get_string(phandle, format_prop);
    401 	if (s) {
    402 		for (n = 0; n < __arraycount(ausoc_dai_formats); n++) {
    403 			if (strcmp(s, ausoc_dai_formats[n].name) == 0) {
    404 				fmt = ausoc_dai_formats[n].fmt;
    405 				break;
    406 			}
    407 		}
    408 		if (n == __arraycount(ausoc_dai_formats))
    409 			return EINVAL;
    410 	} else {
    411 		fmt = AUDIO_DAI_FORMAT_I2S;
    412 	}
    413 
    414 	const bool frame_master =
    415 	    dai_phandle == fdtbus_get_phandle(phandle, frame_master_prop);
    416 	const bool bitclock_master =
    417 	    dai_phandle == fdtbus_get_phandle(phandle, bitclock_master_prop);
    418 	if (frame_master) {
    419 		clk = bitclock_master ?
    420 		    AUDIO_DAI_CLOCK_CBM_CFM : AUDIO_DAI_CLOCK_CBS_CFM;
    421 	} else {
    422 		clk = bitclock_master ?
    423 		    AUDIO_DAI_CLOCK_CBM_CFS : AUDIO_DAI_CLOCK_CBS_CFS;
    424 	}
    425 
    426 	const bool bitclock_inversion = of_hasprop(phandle, bitclock_inversion_prop);
    427 	const bool frame_inversion = of_hasprop(phandle, frame_inversion_prop);
    428 	if (bitclock_inversion) {
    429 		pol = frame_inversion ?
    430 		    AUDIO_DAI_POLARITY_IB_IF : AUDIO_DAI_POLARITY_IB_NF;
    431 	} else {
    432 		pol = frame_inversion ?
    433 		    AUDIO_DAI_POLARITY_NB_IF : AUDIO_DAI_POLARITY_NB_NF;
    434 	}
    435 
    436 	*format = __SHIFTIN(fmt, AUDIO_DAI_FORMAT_MASK) |
    437 		  __SHIFTIN(pol, AUDIO_DAI_POLARITY_MASK) |
    438 		  __SHIFTIN(clk, AUDIO_DAI_CLOCK_MASK);
    439 
    440 	return 0;
    441 }
    442 
    443 static void
    444 ausoc_attach_link(struct ausoc_softc *sc, struct ausoc_link *link,
    445     int card_phandle, int link_phandle)
    446 {
    447 	const bool single_link = card_phandle == link_phandle;
    448 	const char *cpu_prop = single_link ?
    449 	    "simple-audio-card,cpu" : "cpu";
    450 	const char *codec_prop = single_link ?
    451 	    "simple-audio-card,codec" : "codec";
    452 	const char *mclk_fs_prop = single_link ?
    453 	    "simple-audio-card,mclk-fs" : "mclk-fs";
    454 	const char *node_name = fdtbus_get_string(link_phandle, "name");
    455 	u_int n, format;
    456 
    457 	const int cpu_phandle = of_find_firstchild_byname(link_phandle, cpu_prop);
    458 	if (cpu_phandle <= 0) {
    459 		aprint_error_dev(sc->sc_dev, "missing %s prop on %s node\n",
    460 		    cpu_prop, node_name);
    461 		return;
    462 	}
    463 
    464 	link->link_cpu = fdtbus_dai_acquire(cpu_phandle, "sound-dai");
    465 	if (!link->link_cpu) {
    466 		aprint_error_dev(sc->sc_dev,
    467 		    "couldn't acquire cpu dai on %s node\n", node_name);
    468 		return;
    469 	}
    470 
    471 	const int codec_phandle = of_find_firstchild_byname(link_phandle, codec_prop);
    472 	if (codec_phandle <= 0) {
    473 		aprint_error_dev(sc->sc_dev, "missing %s prop on %s node\n",
    474 		    codec_prop, node_name);
    475 		return;
    476 	}
    477 
    478 	link->link_codec = fdtbus_dai_acquire(codec_phandle, "sound-dai");
    479 	if (!link->link_codec) {
    480 		aprint_error_dev(sc->sc_dev,
    481 		    "couldn't acquire codec dai on %s node\n", node_name);
    482 		return;
    483 	}
    484 
    485 	for (;;) {
    486 		if (fdtbus_dai_acquire_index(card_phandle,
    487 		    "simple-audio-card,aux-devs", link->link_naux) == NULL)
    488 			break;
    489 		link->link_naux++;
    490 	}
    491 	if (link->link_naux) {
    492 		link->link_aux = kmem_zalloc(sizeof(audio_dai_tag_t) * link->link_naux, KM_SLEEP);
    493 		for (n = 0; n < link->link_naux; n++) {
    494 			link->link_aux[n] = fdtbus_dai_acquire_index(card_phandle,
    495 			    "simple-audio-card,aux-devs", n);
    496 			KASSERT(link->link_aux[n] != NULL);
    497 
    498 			/* Attach aux devices to codec */
    499 			audio_dai_add_device(link->link_codec, link->link_aux[n]);
    500 		}
    501 	}
    502 
    503 	of_getprop_uint32(link_phandle, mclk_fs_prop, &link->link_mclk_fs);
    504 	if (ausoc_link_format(sc, link, link_phandle, codec_phandle, single_link, &format) != 0) {
    505 		aprint_error_dev(sc->sc_dev, "couldn't parse format properties\n");
    506 		return;
    507 	}
    508 	if (audio_dai_set_format(link->link_cpu, format) != 0) {
    509 		aprint_error_dev(sc->sc_dev, "couldn't set cpu format\n");
    510 		return;
    511 	}
    512 	if (audio_dai_set_format(link->link_codec, format) != 0) {
    513 		aprint_error_dev(sc->sc_dev, "couldn't set codec format\n");
    514 		return;
    515 	}
    516 
    517 	aprint_normal_dev(sc->sc_dev, "codec: %s, cpu: %s",
    518 	    device_xname(audio_dai_device(link->link_codec)),
    519 	    device_xname(audio_dai_device(link->link_cpu)));
    520 	for (n = 0; n < link->link_naux; n++) {
    521 		if (n == 0)
    522 			aprint_normal(", aux:");
    523 		aprint_normal(" %s",
    524 		    device_xname(audio_dai_device(link->link_aux[n])));
    525 	}
    526 	aprint_normal("\n");
    527 
    528 	audio_attach_mi(&ausoc_hw_if, link, sc->sc_dev);
    529 }
    530 
    531 static void
    532 ausoc_attach_cb(device_t self)
    533 {
    534 	struct ausoc_softc * const sc = device_private(self);
    535 	const int phandle = sc->sc_phandle;
    536 	const char *name;
    537 	int child, n;
    538 	size_t len;
    539 
    540 	/*
    541 	 * If the root node defines a cpu and codec, there is only one link. For
    542 	 * cards with multiple links, there will be simple-audio-card,dai-link
    543 	 * child nodes for each one.
    544 	 */
    545 	if (of_find_firstchild_byname(phandle, "simple-audio-card,cpu") > 0 &&
    546 	    of_find_firstchild_byname(phandle, "simple-audio-card,codec") > 0) {
    547 		sc->sc_nlink = 1;
    548 		sc->sc_link = kmem_zalloc(sizeof(*sc->sc_link), KM_SLEEP);
    549 		sc->sc_link[0].link_name = sc->sc_name;
    550 		ausoc_attach_link(sc, &sc->sc_link[0], phandle, phandle);
    551 	} else {
    552 		for (child = OF_child(phandle); child; child = OF_peer(child)) {
    553 			name = fdtbus_get_string(child, "name");
    554 			len = strlen("simple-audio-card,dai-link");
    555 			if (strncmp(name, "simple-audio-card,dai-link", len) != 0)
    556 				continue;
    557 			sc->sc_nlink++;
    558 		}
    559 		if (sc->sc_nlink == 0)
    560 			return;
    561 		sc->sc_link = kmem_zalloc(sizeof(*sc->sc_link) * sc->sc_nlink,
    562 		    KM_SLEEP);
    563 		for (child = OF_child(phandle), n = 0; child; child = OF_peer(child)) {
    564 			name = fdtbus_get_string(child, "name");
    565 			len = strlen("simple-audio-card,dai-link");
    566 			if (strncmp(name, "simple-audio-card,dai-link", len) != 0)
    567 				continue;
    568 			sc->sc_link[n].link_name = sc->sc_name;
    569 			ausoc_attach_link(sc, &sc->sc_link[n], phandle, child);
    570 			n++;
    571 		}
    572 	}
    573 }
    574 
    575 static void
    576 ausoc_attach(device_t parent, device_t self, void *aux)
    577 {
    578 	struct ausoc_softc * const sc = device_private(self);
    579 	struct fdt_attach_args * const faa = aux;
    580 	const int phandle = faa->faa_phandle;
    581 
    582 	sc->sc_dev = self;
    583 	sc->sc_phandle = phandle;
    584 	sc->sc_name = fdtbus_get_string(phandle, "simple-audio-card,name");
    585 	if (!sc->sc_name)
    586 		sc->sc_name = "SoC Audio";
    587 
    588 	aprint_naive("\n");
    589 	aprint_normal(": %s\n", sc->sc_name);
    590 
    591 	/*
    592 	 * Defer attachment until all other drivers are ready.
    593 	 */
    594 	config_defer(self, ausoc_attach_cb);
    595 }
    596 
    597 CFATTACH_DECL_NEW(ausoc, sizeof(struct ausoc_softc),
    598     ausoc_match, ausoc_attach, NULL, NULL);
    599