blob: c6be83f651dcc453820cb4ae62505083863e81e6 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2002
3 * Keith Outwater, keith_outwater@mvis.com
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
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.
12 *
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.
17 *
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,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
25#include <mpc8xx.h>
26#include <asm/8xx_immap.h>
27#include <linux/ctype.h>
28
29/*
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.
35 */
36
wdenkc6097192002-11-03 00:24:07 +000037/*
38 * Initialize beeper-related hardware. Initialize timer 1 for use with
Wolfgang Denk8ed44d92008-10-19 02:35:50 +020039 * the beeper. Use 66 MHz internal clock with prescale of 33 to get
wdenkc6097192002-11-03 00:24:07 +000040 * 1 uS period per count.
41 * FIXME: we should really compute the prescale based on the reported
42 * core clock frequency.
43 */
Wolfgang Denk53677ef2008-05-20 16:00:29 +020044void init_beeper (void)
wdenkc6097192002-11-03 00:24:07 +000045{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020046 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
wdenkc6097192002-11-03 00:24:07 +000047
48 immap->im_cpmtimer.cpmt_tgcr &= ~TGCR_RST1 | TGCR_STP1;
49 immap->im_cpmtimer.cpmt_tmr1 = ((33 << TMR_PS_SHIFT) & TMR_PS_MSK)
Wolfgang Denk53677ef2008-05-20 16:00:29 +020050 | TMR_OM | TMR_FRR | TMR_ICLK_IN_GEN;
wdenkc6097192002-11-03 00:24:07 +000051 immap->im_cpmtimer.cpmt_tcn1 = 0;
52 immap->im_cpmtimer.cpmt_ter1 = 0xffff;
53 immap->im_cpmtimer.cpmt_tgcr |= TGCR_RST1;
54}
55
wdenkc6097192002-11-03 00:24:07 +000056/*
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
59 * frequency.
60 */
Wolfgang Denk53677ef2008-05-20 16:00:29 +020061void set_beeper_frequency (uint frequency)
wdenkc6097192002-11-03 00:24:07 +000062{
63#define FREQ_LIMIT 2500
64
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020065 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
wdenkc6097192002-11-03 00:24:07 +000066
67 /*
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).
70 */
Wolfgang Denk53677ef2008-05-20 16:00:29 +020071 if (frequency > FREQ_LIMIT)
72 frequency = FREQ_LIMIT;
73 frequency = 1000000 / frequency;
74 immap->im_cpmtimer.cpmt_trr1 = (ushort) frequency;
wdenkc6097192002-11-03 00:24:07 +000075}
76
wdenkc6097192002-11-03 00:24:07 +000077/*
78 * Turn the beeper on
79 */
Wolfgang Denk53677ef2008-05-20 16:00:29 +020080void beeper_on (void)
wdenkc6097192002-11-03 00:24:07 +000081{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020082 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
wdenkc6097192002-11-03 00:24:07 +000083
84 immap->im_cpmtimer.cpmt_tgcr &= ~TGCR_STP1;
85}
86
wdenkc6097192002-11-03 00:24:07 +000087/*
88 * Turn the beeper off
89 */
Wolfgang Denk53677ef2008-05-20 16:00:29 +020090void beeper_off (void)
wdenkc6097192002-11-03 00:24:07 +000091{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020092 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
wdenkc6097192002-11-03 00:24:07 +000093
94 immap->im_cpmtimer.cpmt_tgcr |= TGCR_STP1;
95}
96
wdenkc6097192002-11-03 00:24:07 +000097/*
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
103 * tristate.
104 */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200105void set_beeper_volume (int steps)
wdenkc6097192002-11-03 00:24:07 +0000106{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200107 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
wdenkc6097192002-11-03 00:24:07 +0000108 int i;
109
110 if (steps >= 0) {
111 for (i = 0; i < (steps >= 64 ? 64 : steps); i++) {
112 immap->im_cpm.cp_pbodr &= ~(0x80000000 >> 19);
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200113 udelay (1);
wdenkc6097192002-11-03 00:24:07 +0000114 immap->im_cpm.cp_pbodr |= (0x80000000 >> 19);
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200115 udelay (1);
wdenkc6097192002-11-03 00:24:07 +0000116 }
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200117 } else {
wdenkc6097192002-11-03 00:24:07 +0000118 for (i = 0; i > (steps <= -64 ? -64 : steps); i--) {
119 immap->im_cpm.cp_pbdat &= ~(0x80000000 >> 19);
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200120 udelay (1);
wdenkc6097192002-11-03 00:24:07 +0000121 immap->im_cpm.cp_pbdat |= (0x80000000 >> 19);
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200122 udelay (1);
wdenkc6097192002-11-03 00:24:07 +0000123 }
124 }
125}
126
wdenkc6097192002-11-03 00:24:07 +0000127/*
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:
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200131 * freq = frequency in Hz (0 - 2500)
wdenkc6097192002-11-03 00:24:07 +0000132 * delta volume = volume steps up or down (-64 <= vol <= 64)
133 * on time = time in mS
134 * off time = time in mS
135 *
136 * Return 1 on success, 0 on failure
137 */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200138int do_beeper (char *sequence)
wdenkc6097192002-11-03 00:24:07 +0000139{
140#define DELIMITER ';'
141
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200142 int args[4];
143 int i;
144 int val;
145 char *p = sequence;
146 char *tp;
wdenkc6097192002-11-03 00:24:07 +0000147
148 /*
149 * Parse the control sequence. This is a really simple parser
150 * without any real error checking. You can probably blow it
151 * up really easily.
152 */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200153 if (*p == '\0' || !isdigit (*p)) {
154 printf ("%s:%d: null or invalid string (%s)\n",
155 __FILE__, __LINE__, p);
wdenkc6097192002-11-03 00:24:07 +0000156 return 0;
157 }
158
159 i = 0;
160 while (*p != '\0') {
161 while (*p != DELIMITER) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200162 if (i > 3)
163 i = 0;
164 val = (int) simple_strtol (p, &tp, 0);
wdenkc6097192002-11-03 00:24:07 +0000165 if (tp == p) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200166 printf ("%s:%d: no digits or bad format\n",
167 __FILE__, __LINE__);
wdenkc6097192002-11-03 00:24:07 +0000168 return 0;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200169 } else {
wdenkc6097192002-11-03 00:24:07 +0000170 args[i] = val;
171 }
172
173 i++;
174 if (*tp == DELIMITER)
175 p = tp;
176 else
177 p = ++tp;
178 }
179 p++;
180
181 /*
182 * Well, we got something that has a chance of being correct
183 */
184#if 0
185 for (i = 0; i < 4; i++) {
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200186 printf ("%s:%d:arg %d = %d\n", __FILE__, __LINE__, i,
187 args[i]);
wdenkc6097192002-11-03 00:24:07 +0000188 }
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200189 printf ("\n");
wdenkc6097192002-11-03 00:24:07 +0000190#endif
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200191 set_beeper_frequency (args[0]);
192 set_beeper_volume (args[1]);
193 beeper_on ();
194 udelay (1000 * args[2]);
195 beeper_off ();
196 udelay (1000 * args[3]);
wdenkc6097192002-11-03 00:24:07 +0000197 }
198 return 1;
199}