Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Broadcom specific AMBA |
| 3 | * ChipCommon core driver |
| 4 | * |
| 5 | * Copyright 2005, Broadcom Corporation |
Michael Büsch | eb032b9 | 2011-07-04 20:50:05 +0200 | [diff] [blame] | 6 | * Copyright 2006, 2007, Michael Buesch <m@bues.ch> |
Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 7 | * |
| 8 | * Licensed under the GNU/GPL. See COPYING for details. |
| 9 | */ |
| 10 | |
| 11 | #include "bcma_private.h" |
Paul Gortmaker | 44a8e37 | 2011-07-27 21:21:04 -0400 | [diff] [blame] | 12 | #include <linux/export.h> |
Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 13 | #include <linux/bcma/bcma.h> |
| 14 | |
| 15 | static inline u32 bcma_cc_write32_masked(struct bcma_drv_cc *cc, u16 offset, |
| 16 | u32 mask, u32 value) |
| 17 | { |
| 18 | value &= mask; |
| 19 | value |= bcma_cc_read32(cc, offset) & ~mask; |
| 20 | bcma_cc_write32(cc, offset, value); |
| 21 | |
| 22 | return value; |
| 23 | } |
| 24 | |
| 25 | void bcma_core_chipcommon_init(struct bcma_drv_cc *cc) |
| 26 | { |
Rafał Miłecki | 18dfa49 | 2011-07-14 21:49:19 +0200 | [diff] [blame] | 27 | u32 leddc_on = 10; |
| 28 | u32 leddc_off = 90; |
| 29 | |
Hauke Mehrtens | 517f43e | 2011-07-23 01:20:07 +0200 | [diff] [blame] | 30 | if (cc->setup_done) |
| 31 | return; |
| 32 | |
Hauke Mehrtens | ef85fb2 | 2012-11-20 22:24:27 +0000 | [diff] [blame] | 33 | spin_lock_init(&cc->gpio_lock); |
| 34 | |
Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 35 | if (cc->core->id.rev >= 11) |
| 36 | cc->status = bcma_cc_read32(cc, BCMA_CC_CHIPSTAT); |
| 37 | cc->capabilities = bcma_cc_read32(cc, BCMA_CC_CAP); |
| 38 | if (cc->core->id.rev >= 35) |
| 39 | cc->capabilities_ext = bcma_cc_read32(cc, BCMA_CC_CAP_EXT); |
| 40 | |
Rafał Miłecki | 1073e4e | 2011-05-11 02:08:09 +0200 | [diff] [blame] | 41 | if (cc->core->id.rev >= 20) { |
| 42 | bcma_cc_write32(cc, BCMA_CC_GPIOPULLUP, 0); |
| 43 | bcma_cc_write32(cc, BCMA_CC_GPIOPULLDOWN, 0); |
| 44 | } |
Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 45 | |
| 46 | if (cc->capabilities & BCMA_CC_CAP_PMU) |
| 47 | bcma_pmu_init(cc); |
| 48 | if (cc->capabilities & BCMA_CC_CAP_PCTL) |
Rafał Miłecki | 3d9d8af | 2012-07-05 22:07:32 +0200 | [diff] [blame] | 49 | bcma_err(cc->core->bus, "Power control not implemented!\n"); |
Rafał Miłecki | 18dfa49 | 2011-07-14 21:49:19 +0200 | [diff] [blame] | 50 | |
| 51 | if (cc->core->id.rev >= 16) { |
| 52 | if (cc->core->bus->sprom.leddc_on_time && |
| 53 | cc->core->bus->sprom.leddc_off_time) { |
| 54 | leddc_on = cc->core->bus->sprom.leddc_on_time; |
| 55 | leddc_off = cc->core->bus->sprom.leddc_off_time; |
| 56 | } |
| 57 | bcma_cc_write32(cc, BCMA_CC_GPIOTIMER, |
| 58 | ((leddc_on << BCMA_CC_GPIOTIMER_ONTIME_SHIFT) | |
| 59 | (leddc_off << BCMA_CC_GPIOTIMER_OFFTIME_SHIFT))); |
| 60 | } |
Hauke Mehrtens | 517f43e | 2011-07-23 01:20:07 +0200 | [diff] [blame] | 61 | |
| 62 | cc->setup_done = true; |
Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | /* Set chip watchdog reset timer to fire in 'ticks' backplane cycles */ |
| 66 | void bcma_chipco_watchdog_timer_set(struct bcma_drv_cc *cc, u32 ticks) |
| 67 | { |
| 68 | /* instant NMI */ |
| 69 | bcma_cc_write32(cc, BCMA_CC_WATCHDOG, ticks); |
| 70 | } |
| 71 | |
| 72 | void bcma_chipco_irq_mask(struct bcma_drv_cc *cc, u32 mask, u32 value) |
| 73 | { |
| 74 | bcma_cc_write32_masked(cc, BCMA_CC_IRQMASK, mask, value); |
| 75 | } |
| 76 | |
| 77 | u32 bcma_chipco_irq_status(struct bcma_drv_cc *cc, u32 mask) |
| 78 | { |
| 79 | return bcma_cc_read32(cc, BCMA_CC_IRQSTAT) & mask; |
| 80 | } |
| 81 | |
| 82 | u32 bcma_chipco_gpio_in(struct bcma_drv_cc *cc, u32 mask) |
| 83 | { |
| 84 | return bcma_cc_read32(cc, BCMA_CC_GPIOIN) & mask; |
| 85 | } |
| 86 | |
| 87 | u32 bcma_chipco_gpio_out(struct bcma_drv_cc *cc, u32 mask, u32 value) |
| 88 | { |
Hauke Mehrtens | ef85fb2 | 2012-11-20 22:24:27 +0000 | [diff] [blame] | 89 | unsigned long flags; |
| 90 | u32 res; |
| 91 | |
| 92 | spin_lock_irqsave(&cc->gpio_lock, flags); |
| 93 | res = bcma_cc_write32_masked(cc, BCMA_CC_GPIOOUT, mask, value); |
| 94 | spin_unlock_irqrestore(&cc->gpio_lock, flags); |
| 95 | |
| 96 | return res; |
Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | u32 bcma_chipco_gpio_outen(struct bcma_drv_cc *cc, u32 mask, u32 value) |
| 100 | { |
Hauke Mehrtens | ef85fb2 | 2012-11-20 22:24:27 +0000 | [diff] [blame] | 101 | unsigned long flags; |
| 102 | u32 res; |
| 103 | |
| 104 | spin_lock_irqsave(&cc->gpio_lock, flags); |
| 105 | res = bcma_cc_write32_masked(cc, BCMA_CC_GPIOOUTEN, mask, value); |
| 106 | spin_unlock_irqrestore(&cc->gpio_lock, flags); |
| 107 | |
| 108 | return res; |
Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | u32 bcma_chipco_gpio_control(struct bcma_drv_cc *cc, u32 mask, u32 value) |
| 112 | { |
Hauke Mehrtens | ef85fb2 | 2012-11-20 22:24:27 +0000 | [diff] [blame] | 113 | unsigned long flags; |
| 114 | u32 res; |
| 115 | |
| 116 | spin_lock_irqsave(&cc->gpio_lock, flags); |
| 117 | res = bcma_cc_write32_masked(cc, BCMA_CC_GPIOCTL, mask, value); |
| 118 | spin_unlock_irqrestore(&cc->gpio_lock, flags); |
| 119 | |
| 120 | return res; |
Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 121 | } |
| 122 | EXPORT_SYMBOL_GPL(bcma_chipco_gpio_control); |
| 123 | |
| 124 | u32 bcma_chipco_gpio_intmask(struct bcma_drv_cc *cc, u32 mask, u32 value) |
| 125 | { |
Hauke Mehrtens | ef85fb2 | 2012-11-20 22:24:27 +0000 | [diff] [blame] | 126 | unsigned long flags; |
| 127 | u32 res; |
| 128 | |
| 129 | spin_lock_irqsave(&cc->gpio_lock, flags); |
| 130 | res = bcma_cc_write32_masked(cc, BCMA_CC_GPIOIRQ, mask, value); |
| 131 | spin_unlock_irqrestore(&cc->gpio_lock, flags); |
| 132 | |
| 133 | return res; |
Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | u32 bcma_chipco_gpio_polarity(struct bcma_drv_cc *cc, u32 mask, u32 value) |
| 137 | { |
Hauke Mehrtens | ef85fb2 | 2012-11-20 22:24:27 +0000 | [diff] [blame] | 138 | unsigned long flags; |
| 139 | u32 res; |
| 140 | |
| 141 | spin_lock_irqsave(&cc->gpio_lock, flags); |
| 142 | res = bcma_cc_write32_masked(cc, BCMA_CC_GPIOPOL, mask, value); |
| 143 | spin_unlock_irqrestore(&cc->gpio_lock, flags); |
| 144 | |
| 145 | return res; |
Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 146 | } |
Hauke Mehrtens | e3afe0e | 2011-07-23 01:20:10 +0200 | [diff] [blame] | 147 | |
Hauke Mehrtens | ea3488f | 2012-11-20 22:24:28 +0000 | [diff] [blame^] | 148 | u32 bcma_chipco_gpio_pullup(struct bcma_drv_cc *cc, u32 mask, u32 value) |
| 149 | { |
| 150 | unsigned long flags; |
| 151 | u32 res; |
| 152 | |
| 153 | if (cc->core->id.rev < 20) |
| 154 | return 0; |
| 155 | |
| 156 | spin_lock_irqsave(&cc->gpio_lock, flags); |
| 157 | res = bcma_cc_write32_masked(cc, BCMA_CC_GPIOPULLUP, mask, value); |
| 158 | spin_unlock_irqrestore(&cc->gpio_lock, flags); |
| 159 | |
| 160 | return res; |
| 161 | } |
| 162 | |
| 163 | u32 bcma_chipco_gpio_pulldown(struct bcma_drv_cc *cc, u32 mask, u32 value) |
| 164 | { |
| 165 | unsigned long flags; |
| 166 | u32 res; |
| 167 | |
| 168 | if (cc->core->id.rev < 20) |
| 169 | return 0; |
| 170 | |
| 171 | spin_lock_irqsave(&cc->gpio_lock, flags); |
| 172 | res = bcma_cc_write32_masked(cc, BCMA_CC_GPIOPULLDOWN, mask, value); |
| 173 | spin_unlock_irqrestore(&cc->gpio_lock, flags); |
| 174 | |
| 175 | return res; |
| 176 | } |
| 177 | |
Hauke Mehrtens | e3afe0e | 2011-07-23 01:20:10 +0200 | [diff] [blame] | 178 | #ifdef CONFIG_BCMA_DRIVER_MIPS |
| 179 | void bcma_chipco_serial_init(struct bcma_drv_cc *cc) |
| 180 | { |
| 181 | unsigned int irq; |
| 182 | u32 baud_base; |
| 183 | u32 i; |
| 184 | unsigned int ccrev = cc->core->id.rev; |
| 185 | struct bcma_serial_port *ports = cc->serial_ports; |
| 186 | |
| 187 | if (ccrev >= 11 && ccrev != 15) { |
| 188 | /* Fixed ALP clock */ |
| 189 | baud_base = bcma_pmu_alp_clock(cc); |
| 190 | if (ccrev >= 21) { |
| 191 | /* Turn off UART clock before switching clocksource. */ |
| 192 | bcma_cc_write32(cc, BCMA_CC_CORECTL, |
| 193 | bcma_cc_read32(cc, BCMA_CC_CORECTL) |
| 194 | & ~BCMA_CC_CORECTL_UARTCLKEN); |
| 195 | } |
| 196 | /* Set the override bit so we don't divide it */ |
| 197 | bcma_cc_write32(cc, BCMA_CC_CORECTL, |
| 198 | bcma_cc_read32(cc, BCMA_CC_CORECTL) |
| 199 | | BCMA_CC_CORECTL_UARTCLK0); |
| 200 | if (ccrev >= 21) { |
| 201 | /* Re-enable the UART clock. */ |
| 202 | bcma_cc_write32(cc, BCMA_CC_CORECTL, |
| 203 | bcma_cc_read32(cc, BCMA_CC_CORECTL) |
| 204 | | BCMA_CC_CORECTL_UARTCLKEN); |
| 205 | } |
| 206 | } else { |
Rafał Miłecki | 9a89c3a | 2012-07-09 19:34:59 +0200 | [diff] [blame] | 207 | bcma_err(cc->core->bus, "serial not supported on this device ccrev: 0x%x\n", ccrev); |
Hauke Mehrtens | e3afe0e | 2011-07-23 01:20:10 +0200 | [diff] [blame] | 208 | return; |
| 209 | } |
| 210 | |
| 211 | irq = bcma_core_mips_irq(cc->core); |
| 212 | |
| 213 | /* Determine the registers of the UARTs */ |
| 214 | cc->nr_serial_ports = (cc->capabilities & BCMA_CC_CAP_NRUART); |
| 215 | for (i = 0; i < cc->nr_serial_ports; i++) { |
| 216 | ports[i].regs = cc->core->io_addr + BCMA_CC_UART0_DATA + |
| 217 | (i * 256); |
| 218 | ports[i].irq = irq; |
| 219 | ports[i].baud_base = baud_base; |
| 220 | ports[i].reg_shift = 0; |
| 221 | } |
| 222 | } |
| 223 | #endif /* CONFIG_BCMA_DRIVER_MIPS */ |