]>
git.ipfire.org Git - people/ms/u-boot.git/blob - board/gen860t/beeper.c
3 * Keith Outwater, keith_outwater@mvis.com
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26 #include <asm/8xx_immap.h>
27 #include <linux/ctype.h>
30 * Basic beeper support for the GEN860T board. The GEN860T includes
31 * an audio sounder driven by a Phillips TDA8551 amplifier. The
32 * TDA8551 features a digital volume control which uses a "trinary"
33 * input (high/high-Z/low) to set volume. The 860's SPKROUT pin
34 * drives the amplifier input.
38 * Initialize beeper-related hardware. Initialize timer 1 for use with
39 * the beeper. Use 66 Mhz internal clock with prescale of 33 to get
40 * 1 uS period per count.
41 * FIXME: we should really compute the prescale based on the reported
42 * core clock frequency.
44 void init_beeper (void)
46 volatile immap_t
*immap
= (immap_t
*) CONFIG_SYS_IMMR
;
48 immap
->im_cpmtimer
.cpmt_tgcr
&= ~TGCR_RST1
| TGCR_STP1
;
49 immap
->im_cpmtimer
.cpmt_tmr1
= ((33 << TMR_PS_SHIFT
) & TMR_PS_MSK
)
50 | TMR_OM
| TMR_FRR
| TMR_ICLK_IN_GEN
;
51 immap
->im_cpmtimer
.cpmt_tcn1
= 0;
52 immap
->im_cpmtimer
.cpmt_ter1
= 0xffff;
53 immap
->im_cpmtimer
.cpmt_tgcr
|= TGCR_RST1
;
57 * Set beeper frequency. Max allowed frequency is 2.5 KHz. This limit
58 * is mostly arbitrary, but the beeper isn't really much good beyond this
61 void set_beeper_frequency (uint frequency
)
63 #define FREQ_LIMIT 2500
65 volatile immap_t
*immap
= (immap_t
*) CONFIG_SYS_IMMR
;
68 * Compute timer ticks given desired frequency. The timer is set up
69 * to count 0.5 uS per tick and it takes two ticks per cycle (Hz).
71 if (frequency
> FREQ_LIMIT
)
72 frequency
= FREQ_LIMIT
;
73 frequency
= 1000000 / frequency
;
74 immap
->im_cpmtimer
.cpmt_trr1
= (ushort
) frequency
;
82 volatile immap_t
*immap
= (immap_t
*) CONFIG_SYS_IMMR
;
84 immap
->im_cpmtimer
.cpmt_tgcr
&= ~TGCR_STP1
;
90 void beeper_off (void)
92 volatile immap_t
*immap
= (immap_t
*) CONFIG_SYS_IMMR
;
94 immap
->im_cpmtimer
.cpmt_tgcr
|= TGCR_STP1
;
98 * Increase or decrease the beeper volume. Volume can be set
99 * from off to full in 64 steps. To increase volume, the output
100 * pin is actively driven high, then returned to tristate.
101 * To decrease volume, output a low on the port pin (no need to
102 * change pin mode to tristate) then output a high to go back to
105 void set_beeper_volume (int steps
)
107 volatile immap_t
*immap
= (immap_t
*) CONFIG_SYS_IMMR
;
111 for (i
= 0; i
< (steps
>= 64 ? 64 : steps
); i
++) {
112 immap
->im_cpm
.cp_pbodr
&= ~(0x80000000 >> 19);
114 immap
->im_cpm
.cp_pbodr
|= (0x80000000 >> 19);
118 for (i
= 0; i
> (steps
<= -64 ? -64 : steps
); i
--) {
119 immap
->im_cpm
.cp_pbdat
&= ~(0x80000000 >> 19);
121 immap
->im_cpm
.cp_pbdat
|= (0x80000000 >> 19);
128 * Check the environment to see if the beeper needs beeping.
129 * Controlled by a sequence of the form:
130 * freq/delta volume/on time/off time;... where:
131 * freq = frequency in Hz (0 - 2500)
132 * delta volume = volume steps up or down (-64 <= vol <= 64)
133 * on time = time in mS
134 * off time = time in mS
136 * Return 1 on success, 0 on failure
138 int do_beeper (char *sequence
)
140 #define DELIMITER ';'
149 * Parse the control sequence. This is a really simple parser
150 * without any real error checking. You can probably blow it
153 if (*p
== '\0' || !isdigit (*p
)) {
154 printf ("%s:%d: null or invalid string (%s)\n",
155 __FILE__
, __LINE__
, p
);
161 while (*p
!= DELIMITER
) {
164 val
= (int) simple_strtol (p
, &tp
, 0);
166 printf ("%s:%d: no digits or bad format\n",
174 if (*tp
== DELIMITER
)
182 * Well, we got something that has a chance of being correct
185 for (i
= 0; i
< 4; i
++) {
186 printf ("%s:%d:arg %d = %d\n", __FILE__
, __LINE__
, i
,
191 set_beeper_frequency (args
[0]);
192 set_beeper_volume (args
[1]);
194 udelay (1000 * args
[2]);
196 udelay (1000 * args
[3]);