Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 2 | /* |
| 3 | * |
| 4 | * (C) Copyright 2000-2003 |
| 5 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 6 | * |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 7 | * (C) Copyright 2007, 2012 Freescale Semiconductor, Inc. |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 8 | * TsiChung Liew (Tsi-Chung.Liew@freescale.com) |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
| 12 | #include <MCD_dma.h> |
Simon Glass | 1d91ba7 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 13 | #include <cpu_func.h> |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 14 | #include <asm/immap.h> |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 15 | #include <asm/io.h> |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 16 | |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 17 | #if defined(CONFIG_CMD_NET) |
| 18 | #include <config.h> |
| 19 | #include <net.h> |
Angelo Durgehello | 8ff47f7 | 2019-11-15 23:54:16 +0100 | [diff] [blame^] | 20 | #include <asm/fec.h> |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 21 | #include <asm/fsl_mcdmafec.h> |
| 22 | #endif |
| 23 | |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 24 | /* |
| 25 | * Breath some life into the CPU... |
| 26 | * |
| 27 | * Set up the memory map, |
| 28 | * initialize a bunch of registers, |
| 29 | * initialize the UPM's |
| 30 | */ |
| 31 | void cpu_init_f(void) |
| 32 | { |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 33 | gpio_t *gpio = (gpio_t *) MMAP_GPIO; |
| 34 | fbcs_t *fbcs = (fbcs_t *) MMAP_FBCS; |
| 35 | xlbarb_t *xlbarb = (xlbarb_t *) MMAP_XARB; |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 36 | |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 37 | out_be32(&xlbarb->adrto, 0x2000); |
| 38 | out_be32(&xlbarb->datto, 0x2500); |
| 39 | out_be32(&xlbarb->busto, 0x3000); |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 40 | |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 41 | out_be32(&xlbarb->cfg, XARB_CFG_AT | XARB_CFG_DT); |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 42 | |
| 43 | /* Master Priority Enable */ |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 44 | out_be32(&xlbarb->prien, 0xff); |
| 45 | out_be32(&xlbarb->pri, 0); |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 46 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 47 | #if (defined(CONFIG_SYS_CS0_BASE) && defined(CONFIG_SYS_CS0_MASK) && defined(CONFIG_SYS_CS0_CTRL)) |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 48 | out_be32(&fbcs->csar0, CONFIG_SYS_CS0_BASE); |
| 49 | out_be32(&fbcs->cscr0, CONFIG_SYS_CS0_CTRL); |
| 50 | out_be32(&fbcs->csmr0, CONFIG_SYS_CS0_MASK); |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 51 | #endif |
| 52 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 53 | #if (defined(CONFIG_SYS_CS1_BASE) && defined(CONFIG_SYS_CS1_MASK) && defined(CONFIG_SYS_CS1_CTRL)) |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 54 | out_be32(&fbcs->csar1, CONFIG_SYS_CS1_BASE); |
| 55 | out_be32(&fbcs->cscr1, CONFIG_SYS_CS1_CTRL); |
| 56 | out_be32(&fbcs->csmr1, CONFIG_SYS_CS1_MASK); |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 57 | #endif |
| 58 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 59 | #if (defined(CONFIG_SYS_CS2_BASE) && defined(CONFIG_SYS_CS2_MASK) && defined(CONFIG_SYS_CS2_CTRL)) |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 60 | out_be32(&fbcs->csar2, CONFIG_SYS_CS2_BASE); |
| 61 | out_be32(&fbcs->cscr2, CONFIG_SYS_CS2_CTRL); |
| 62 | out_be32(&fbcs->csmr2, CONFIG_SYS_CS2_MASK); |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 63 | #endif |
| 64 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 65 | #if (defined(CONFIG_SYS_CS3_BASE) && defined(CONFIG_SYS_CS3_MASK) && defined(CONFIG_SYS_CS3_CTRL)) |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 66 | out_be32(&fbcs->csar3, CONFIG_SYS_CS3_BASE); |
| 67 | out_be32(&fbcs->cscr3, CONFIG_SYS_CS3_CTRL); |
| 68 | out_be32(&fbcs->csmr3, CONFIG_SYS_CS3_MASK); |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 69 | #endif |
| 70 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 71 | #if (defined(CONFIG_SYS_CS4_BASE) && defined(CONFIG_SYS_CS4_MASK) && defined(CONFIG_SYS_CS4_CTRL)) |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 72 | out_be32(&fbcs->csar4, CONFIG_SYS_CS4_BASE); |
| 73 | out_be32(&fbcs->cscr4, CONFIG_SYS_CS4_CTRL); |
| 74 | out_be32(&fbcs->csmr4, CONFIG_SYS_CS4_MASK); |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 75 | #endif |
| 76 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 77 | #if (defined(CONFIG_SYS_CS5_BASE) && defined(CONFIG_SYS_CS5_MASK) && defined(CONFIG_SYS_CS5_CTRL)) |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 78 | out_be32(&fbcs->csar5, CONFIG_SYS_CS5_BASE); |
| 79 | out_be32(&fbcs->cscr5, CONFIG_SYS_CS5_CTRL); |
| 80 | out_be32(&fbcs->csmr5, CONFIG_SYS_CS5_MASK); |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 81 | #endif |
| 82 | |
Heiko Schocher | f285074 | 2012-10-24 13:48:22 +0200 | [diff] [blame] | 83 | #ifdef CONFIG_SYS_I2C_FSL |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 84 | out_be16(&gpio->par_feci2cirq, |
| 85 | GPIO_PAR_FECI2CIRQ_SCL | GPIO_PAR_FECI2CIRQ_SDA); |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 86 | #endif |
| 87 | |
| 88 | icache_enable(); |
| 89 | } |
| 90 | |
| 91 | /* |
| 92 | * initialize higher level parts of CPU like timers |
| 93 | */ |
| 94 | int cpu_init_r(void) |
| 95 | { |
| 96 | #if defined(CONFIG_CMD_NET) && defined(CONFIG_FSLDMAFEC) |
| 97 | MCD_initDma((dmaRegs *) (MMAP_MCDMA), (void *)(MMAP_SRAM + 512), |
| 98 | MCD_RELOC_TASKS); |
| 99 | #endif |
| 100 | return (0); |
| 101 | } |
| 102 | |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 103 | void uart_port_conf(int port) |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 104 | { |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 105 | gpio_t *gpio = (gpio_t *) MMAP_GPIO; |
| 106 | u8 *pscsicr = (u8 *) (CONFIG_SYS_UART_BASE + 0x40); |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 107 | |
| 108 | /* Setup Ports: */ |
TsiChung Liew | f9556a7 | 2010-03-09 19:17:52 -0600 | [diff] [blame] | 109 | switch (port) { |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 110 | case 0: |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 111 | out_8(&gpio->par_psc0, GPIO_PAR_PSC0_TXD0 | GPIO_PAR_PSC0_RXD0); |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 112 | break; |
| 113 | case 1: |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 114 | out_8(&gpio->par_psc1, GPIO_PAR_PSC1_TXD1 | GPIO_PAR_PSC1_RXD1); |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 115 | break; |
| 116 | case 2: |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 117 | out_8(&gpio->par_psc2, GPIO_PAR_PSC2_TXD2 | GPIO_PAR_PSC2_RXD2); |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 118 | break; |
| 119 | case 3: |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 120 | out_8(&gpio->par_psc3, GPIO_PAR_PSC3_TXD3 | GPIO_PAR_PSC3_RXD3); |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 121 | break; |
| 122 | } |
| 123 | |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 124 | clrbits_8(pscsicr, 0x07); |
TsiChungLiew | 8999e6b | 2008-01-15 13:37:34 -0600 | [diff] [blame] | 125 | } |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 126 | |
| 127 | #if defined(CONFIG_CMD_NET) |
Angelo Durgehello | 8ff47f7 | 2019-11-15 23:54:16 +0100 | [diff] [blame^] | 128 | int fecpin_setclear(fec_info_t *info, int setclear) |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 129 | { |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 130 | gpio_t *gpio = (gpio_t *) MMAP_GPIO; |
Angelo Durgehello | 8ff47f7 | 2019-11-15 23:54:16 +0100 | [diff] [blame^] | 131 | u32 fec0_base; |
| 132 | |
| 133 | if (fec_get_base_addr(0, &fec0_base)) |
| 134 | return -1; |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 135 | |
| 136 | if (setclear) { |
Angelo Durgehello | 8ff47f7 | 2019-11-15 23:54:16 +0100 | [diff] [blame^] | 137 | if (info->iobase == fec0_base) |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 138 | setbits_be16(&gpio->par_feci2cirq, 0xf000); |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 139 | else |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 140 | setbits_be16(&gpio->par_feci2cirq, 0x0fc0); |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 141 | } else { |
Angelo Durgehello | 8ff47f7 | 2019-11-15 23:54:16 +0100 | [diff] [blame^] | 142 | if (info->iobase == fec0_base) |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 143 | clrbits_be16(&gpio->par_feci2cirq, 0xf000); |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 144 | else |
Alison Wang | 027f76f | 2012-03-26 21:49:07 +0000 | [diff] [blame] | 145 | clrbits_be16(&gpio->par_feci2cirq, 0x0fc0); |
TsiChung Liew | 69b1757 | 2008-10-21 13:47:54 +0000 | [diff] [blame] | 146 | } |
| 147 | return 0; |
| 148 | } |
| 149 | #endif |