]> sigrok.org Git - libsigrokdecode.git/blame - decoders/ac97/__init__.py
avr_isp: Add more parts
[libsigrokdecode.git] / decoders / ac97 / __init__.py
CommitLineData
93b92702
GS
1##
2## This file is part of the libsigrokdecode project.
3##
4## Copyright (C) 2017 Gerhard Sittig <gerhard.sittig@gmx.net>
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; either version 2 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
17## along with this program; if not, see <http://www.gnu.org/licenses/>.
18##
19
20'''
2787cf2a
UH
21AC'97 (Audio Codec '97) is a protocol for audio and modem I/O functionality
22in mainstream PC systems.
93b92702
GS
23
24AC'97 communicates full duplex data (SDATA_IN, SDATA_OUT), where bits
25are clocked by the BIT_CLK and frames are signalled by the SYNC signals.
26A low active RESET# line completes the set of signals.
27
28Frames repeat at a nominal frequency of 48kHz, and consist of 256 bits
29each. One 16bit slot contains management information, twelve 20bit slots
30follow which carry data for three management and nine audio/modem channels.
31Optionally two slots of one frame can get combined for higher resolution
32on fewer channels, or double data rate.
2787cf2a
UH
33
34Details:
35http://download.intel.com/support/motherboards/desktop/sb/ac97_r23.pdf
93b92702
GS
36'''
37
38from .pd import Decoder