blob: 38259a5057f5764e55d8e24a23ec67016d35e132 [file] [log] [blame]
wdenk0608e042004-03-25 19:29:38 +00001/*
2 * (C) Copyright 2004
3 * Klaus Heydeck, Kieback & Peter GmbH & Co KG, heydeck@kieback-peter.de.
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 "kup.h"
Heiko Schochere604e402010-07-19 23:46:48 +020027#include <asm/io.h>
wdenk0608e042004-03-25 19:29:38 +000028
Heiko Schochere604e402010-07-19 23:46:48 +020029
30int misc_init_f(void)
wdenk0608e042004-03-25 19:29:38 +000031{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020032 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
wdenk0608e042004-03-25 19:29:38 +000033 volatile sysconf8xx_t *siu = &immap->im_siu_conf;
34
Heiko Schochere604e402010-07-19 23:46:48 +020035 while (in_be32(&siu->sc_sipend) & 0x20000000) {
36 debug("waiting for 5V VCC\n");
wdenk0608e042004-03-25 19:29:38 +000037 }
38
39 /* RS232 / RS485 default is RS232 */
Heiko Schochere604e402010-07-19 23:46:48 +020040 clrbits_be16(&immap->im_ioport.iop_padat, PA_RS485);
41 clrbits_be16(&immap->im_ioport.iop_papar, PA_RS485);
42 clrbits_be16(&immap->im_ioport.iop_paodr, PA_RS485);
43 setbits_be16(&immap->im_ioport.iop_padir, PA_RS485);
44
45 /* IO Reset min 1 msec */
46 setbits_be16(&immap->im_ioport.iop_padat,
47 (PA_RESET_IO_01 | PA_RESET_IO_02));
48 clrbits_be16(&immap->im_ioport.iop_papar,
49 (PA_RESET_IO_01 | PA_RESET_IO_02));
50 clrbits_be16(&immap->im_ioport.iop_paodr,
51 (PA_RESET_IO_01 | PA_RESET_IO_02));
52 setbits_be16(&immap->im_ioport.iop_padir,
53 (PA_RESET_IO_01 | PA_RESET_IO_02));
54 udelay(1000);
55 clrbits_be16(&immap->im_ioport.iop_padat,
56 (PA_RESET_IO_01 | PA_RESET_IO_02));
wdenk0608e042004-03-25 19:29:38 +000057 return (0);
58}
59
wdenk0608e042004-03-25 19:29:38 +000060#ifdef CONFIG_IDE_LED
Heiko Schochere604e402010-07-19 23:46:48 +020061void ide_led(uchar led, uchar status)
wdenk0608e042004-03-25 19:29:38 +000062{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020063 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
wdenk0608e042004-03-25 19:29:38 +000064
65 /* We have one led for both pcmcia slots */
Heiko Schochere604e402010-07-19 23:46:48 +020066 if (status)
67 clrbits_be16(&immap->im_ioport.iop_padat, PA_LED_YELLOW);
68 else
69 setbits_be16(&immap->im_ioport.iop_padat, PA_LED_YELLOW);
wdenk0608e042004-03-25 19:29:38 +000070}
71#endif
72
Heiko Schochere604e402010-07-19 23:46:48 +020073void poweron_key(void)
wdenk0608e042004-03-25 19:29:38 +000074{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020075 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
wdenk0608e042004-03-25 19:29:38 +000076
Heiko Schochere604e402010-07-19 23:46:48 +020077 clrbits_be16(&immap->im_ioport.iop_pcpar, PC_SWITCH1);
78 clrbits_be16(&immap->im_ioport.iop_pcdir, PC_SWITCH1);
wdenk0608e042004-03-25 19:29:38 +000079
Heiko Schochere604e402010-07-19 23:46:48 +020080 if (in_be16(&immap->im_ioport.iop_pcdat) & (PC_SWITCH1))
81 setenv("key1", "off");
wdenk0608e042004-03-25 19:29:38 +000082 else
Heiko Schochere604e402010-07-19 23:46:48 +020083 setenv("key1", "on");
wdenk0608e042004-03-25 19:29:38 +000084}