blob: 069e28f3c80dfc83e7646c2d2bc64dc8d079f551 [file] [log] [blame]
Stefan Roese326c9712005-08-01 16:41:48 +02001/*
2 *
3 * See file CREDITS for list of people who contributed to this
4 * project.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of
9 * the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
19 * MA 02111-1307 USA
20 */
21
22#include <common.h>
Stefan Roese27ea7a92005-09-15 11:34:07 +020023#include <ppc4xx.h>
Stefan Roese326c9712005-08-01 16:41:48 +020024#include <asm/processor.h>
25#include <spd_sdram.h>
26
Stefan Roese27ea7a92005-09-15 11:34:07 +020027extern flash_info_t flash_info[CFG_MAX_FLASH_BANKS]; /* info for FLASH chips */
28
Stefan Roese326c9712005-08-01 16:41:48 +020029int board_early_init_f(void)
30{
31 register uint reg;
32
33 /*--------------------------------------------------------------------
34 * Setup the external bus controller/chip selects
35 *-------------------------------------------------------------------*/
36 mtdcr(ebccfga, xbcfg);
37 reg = mfdcr(ebccfgd);
38 mtdcr(ebccfgd, reg | 0x04000000); /* Set ATC */
39
40 mtebc(pb0ap, 0x03017300); /* FLASH/SRAM */
Stefan Roese27ea7a92005-09-15 11:34:07 +020041 mtebc(pb0cr, 0xfc0da000); /* BAS=0xfc0 64MB r/w 16-bit */
Stefan Roese326c9712005-08-01 16:41:48 +020042
43 mtebc(pb1ap, 0x00000000);
44 mtebc(pb1cr, 0x00000000);
45
46 mtebc(pb2ap, 0x04814500);
47 /*CPLD*/ mtebc(pb2cr, 0x80018000); /*BAS=0x800 1MB r/w 8-bit */
48
49 mtebc(pb3ap, 0x00000000);
50 mtebc(pb3cr, 0x00000000);
51
52 mtebc(pb4ap, 0x00000000);
53 mtebc(pb4cr, 0x00000000);
54
55 mtebc(pb5ap, 0x00000000);
56 mtebc(pb5cr, 0x00000000);
57
58 /*--------------------------------------------------------------------
Stefan Roese326c9712005-08-01 16:41:48 +020059 * Setup the GPIO pins
60 *-------------------------------------------------------------------*/
61 /*CPLD cs */
62 /*setup Address lines for flash sizes larger than 16Meg. */
63 out32(GPIO0_OSRL, in32(GPIO0_OSRL) | 0x40010000);
64 out32(GPIO0_TSRL, in32(GPIO0_TSRL) | 0x40010000);
65 out32(GPIO0_ISR1L, in32(GPIO0_ISR1L) | 0x40000000);
66
67 /*setup emac */
68 out32(GPIO0_TCR, in32(GPIO0_TCR) | 0xC080);
69 out32(GPIO0_TSRL, in32(GPIO0_TSRL) | 0x40);
70 out32(GPIO0_ISR1L, in32(GPIO0_ISR1L) | 0x55);
71 out32(GPIO0_OSRH, in32(GPIO0_OSRH) | 0x50004000);
72 out32(GPIO0_ISR1H, in32(GPIO0_ISR1H) | 0x00440000);
73
74 /*UART1 */
75 out32(GPIO1_TCR, in32(GPIO1_TCR) | 0x02000000);
76 out32(GPIO1_OSRL, in32(GPIO1_OSRL) | 0x00080000);
77 out32(GPIO1_ISR2L, in32(GPIO1_ISR2L) | 0x00010000);
78
Stefan Roesed0ab2f32005-10-28 12:21:06 +020079 /* external interrupts IRQ0...3 */
80 out32(GPIO1_TCR, in32(GPIO1_TCR) & ~0x0f000000);
81 out32(GPIO1_TSRL, in32(GPIO1_TSRL) & ~0x00005500);
82 out32(GPIO1_ISR1L, in32(GPIO1_ISR1L) | 0x00005500);
83
Stefan Roese27ea7a92005-09-15 11:34:07 +020084#if 0 /* test-only */
Stefan Roese326c9712005-08-01 16:41:48 +020085 /*setup USB 2.0 */
86 out32(GPIO1_TCR, in32(GPIO1_TCR) | 0xc0000000);
87 out32(GPIO1_OSRL, in32(GPIO1_OSRL) | 0x50000000);
88 out32(GPIO0_TCR, in32(GPIO0_TCR) | 0xf);
89 out32(GPIO0_OSRH, in32(GPIO0_OSRH) | 0xaa);
90 out32(GPIO0_ISR2H, in32(GPIO0_ISR2H) | 0x00000500);
Stefan Roese27ea7a92005-09-15 11:34:07 +020091#endif
Stefan Roese326c9712005-08-01 16:41:48 +020092
93 /*--------------------------------------------------------------------
Stefan Roese65a6b7e2005-11-03 08:31:33 +010094 * Setup the interrupt controller polarities, triggers, etc.
95 *-------------------------------------------------------------------*/
96 mtdcr(uic0sr, 0xffffffff); /* clear all */
97 mtdcr(uic0er, 0x00000000); /* disable all */
98 mtdcr(uic0cr, 0x00000009); /* ATI & UIC1 crit are critical */
99 mtdcr(uic0pr, 0xfffffe13); /* per ref-board manual */
100 mtdcr(uic0tr, 0x01c00008); /* per ref-board manual */
101 mtdcr(uic0vr, 0x00000001); /* int31 highest, base=0x000 */
102 mtdcr(uic0sr, 0xffffffff); /* clear all */
103
104 mtdcr(uic1sr, 0xffffffff); /* clear all */
105 mtdcr(uic1er, 0x00000000); /* disable all */
106 mtdcr(uic1cr, 0x00000000); /* all non-critical */
107 mtdcr(uic1pr, 0xffffe0ff); /* per ref-board manual */
108 mtdcr(uic1tr, 0x00ffc000); /* per ref-board manual */
109 mtdcr(uic1vr, 0x00000001); /* int31 highest, base=0x000 */
110 mtdcr(uic1sr, 0xffffffff); /* clear all */
111
112 /*--------------------------------------------------------------------
Stefan Roese326c9712005-08-01 16:41:48 +0200113 * Setup other serial configuration
114 *-------------------------------------------------------------------*/
115 mfsdr(sdr_pci0, reg);
116 mtsdr(sdr_pci0, 0x80000000 | reg); /* PCI arbiter enabled */
117 mtsdr(sdr_pfc0, 0x00003e00); /* Pin function */
118 mtsdr(sdr_pfc1, 0x00048000); /* Pin function: UART0 has 4 pins */
119
120 /*clear tmrclk divisor */
121 *(unsigned char *)(CFG_BCSR_BASE | 0x04) = 0x00;
122
123 /*enable ethernet */
124 *(unsigned char *)(CFG_BCSR_BASE | 0x08) = 0xf0;
125
Stefan Roese27ea7a92005-09-15 11:34:07 +0200126#if 0 /* test-only */
Stefan Roese326c9712005-08-01 16:41:48 +0200127 /*enable usb 1.1 fs device and remove usb 2.0 reset */
128 *(unsigned char *)(CFG_BCSR_BASE | 0x09) = 0x00;
Stefan Roese27ea7a92005-09-15 11:34:07 +0200129#endif
Stefan Roese326c9712005-08-01 16:41:48 +0200130
131 /*get rid of flash write protect */
132 *(unsigned char *)(CFG_BCSR_BASE | 0x07) = 0x40;
133
134 return 0;
135}
136
Stefan Roese27ea7a92005-09-15 11:34:07 +0200137int misc_init_r (void)
138{
139 DECLARE_GLOBAL_DATA_PTR;
140 uint pbcr;
141 int size_val = 0;
142
143 /* Re-do sizing to get full correct info */
144 mtdcr(ebccfga, pb0cr);
145 pbcr = mfdcr(ebccfgd);
146 switch (gd->bd->bi_flashsize) {
147 case 1 << 20:
148 size_val = 0;
149 break;
150 case 2 << 20:
151 size_val = 1;
152 break;
153 case 4 << 20:
154 size_val = 2;
155 break;
156 case 8 << 20:
157 size_val = 3;
158 break;
159 case 16 << 20:
160 size_val = 4;
161 break;
162 case 32 << 20:
163 size_val = 5;
164 break;
165 case 64 << 20:
166 size_val = 6;
167 break;
168 case 128 << 20:
169 size_val = 7;
170 break;
171 }
172 pbcr = (pbcr & 0x0001ffff) | gd->bd->bi_flashstart | (size_val << 17);
173 mtdcr(ebccfga, pb0cr);
174 mtdcr(ebccfgd, pbcr);
175
Stefan Roesee8c34722005-11-05 15:50:16 +0100176 /* adjust flash start and offset */
177 gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize;
178 gd->bd->bi_flashoffset = 0;
179
Stefan Roese27ea7a92005-09-15 11:34:07 +0200180 /* Monitor protection ON by default */
181 (void)flash_protect(FLAG_PROTECT_SET,
182 -CFG_MONITOR_LEN,
183 0xffffffff,
184 &flash_info[0]);
185
186 return 0;
187}
188
Stefan Roese326c9712005-08-01 16:41:48 +0200189int checkboard(void)
190{
191 sys_info_t sysinfo;
Stefan Roese5b9ab142005-10-03 15:27:50 +0200192 unsigned char *s = getenv("serial#");
Stefan Roese326c9712005-08-01 16:41:48 +0200193
194 get_sys_info(&sysinfo);
195
Stefan Roese5b9ab142005-10-03 15:27:50 +0200196 printf("Board: Yellowstone - AMCC PPC440GR Evaluation Board");
197 if (s != NULL) {
198 puts(", serial# ");
199 puts(s);
200 }
201 putc('\n');
202
Stefan Roese326c9712005-08-01 16:41:48 +0200203 printf("\tVCO: %lu MHz\n", sysinfo.freqVCOMhz / 1000000);
204 printf("\tCPU: %lu MHz\n", sysinfo.freqProcessor / 1000000);
205 printf("\tPLB: %lu MHz\n", sysinfo.freqPLB / 1000000);
206 printf("\tOPB: %lu MHz\n", sysinfo.freqOPB / 1000000);
Stefan Roese5b9ab142005-10-03 15:27:50 +0200207 printf("\tEPB: %lu MHz\n", sysinfo.freqEPB / 1000000);
Stefan Roese326c9712005-08-01 16:41:48 +0200208 printf("\tPCI: %lu MHz\n", sysinfo.freqPCI / 1000000);
Stefan Roese27ea7a92005-09-15 11:34:07 +0200209
Stefan Roese326c9712005-08-01 16:41:48 +0200210 return (0);
211}
212
213/*************************************************************************
214 * sdram_init -- doesn't use serial presence detect.
215 *
216 * Assumes: 256 MB, ECC, non-registered
217 * PLB @ 133 MHz
218 *
219 ************************************************************************/
220void sdram_init(void)
221{
222 register uint reg;
223
224 /*--------------------------------------------------------------------
225 * Setup some default
226 *------------------------------------------------------------------*/
227 mtsdram(mem_uabba, 0x00000000); /* ubba=0 (default) */
228 mtsdram(mem_slio, 0x00000000); /* rdre=0 wrre=0 rarw=0 */
229 mtsdram(mem_devopt, 0x00000000); /* dll=0 ds=0 (normal) */
230 mtsdram(mem_clktr, 0x40000000); /* ?? */
231 mtsdram(mem_wddctr, 0x40000000); /* ?? */
232
233 /*clear this first, if the DDR is enabled by a debugger
234 then you can not make changes. */
235 mtsdram(mem_cfg0, 0x00000000); /* Disable EEC */
236
237 /*--------------------------------------------------------------------
238 * Setup for board-specific specific mem
239 *------------------------------------------------------------------*/
240 /*
241 * Following for CAS Latency = 2.5 @ 133 MHz PLB
242 */
243 mtsdram(mem_b0cr, 0x000a4001); /* SDBA=0x000 128MB, Mode 3, enabled */
244 mtsdram(mem_b1cr, 0x080a4001); /* SDBA=0x080 128MB, Mode 3, enabled */
Stefan Roese27ea7a92005-09-15 11:34:07 +0200245
Stefan Roese326c9712005-08-01 16:41:48 +0200246 mtsdram(mem_tr0, 0x410a4012); /* ?? */
247 mtsdram(mem_tr1, 0x8080080b); /* ?? */
248 mtsdram(mem_rtr, 0x04080000); /* ?? */
249 mtsdram(mem_cfg1, 0x00000000); /* Self-refresh exit, disable PM */
250 mtsdram(mem_cfg0, 0x34000000); /* Disable EEC */
251 udelay(400); /* Delay 200 usecs (min) */
252
253 /*--------------------------------------------------------------------
254 * Enable the controller, then wait for DCEN to complete
255 *------------------------------------------------------------------*/
256 mtsdram(mem_cfg0, 0x84000000); /* Enable */
257
258 for (;;) {
259 mfsdram(mem_mcsts, reg);
260 if (reg & 0x80000000)
261 break;
262 }
263}
264
265/*************************************************************************
266 * long int initdram
267 *
268 ************************************************************************/
269long int initdram(int board)
270{
271 sdram_init();
272 return CFG_SDRAM_BANKS * (CFG_KBYTES_SDRAM * 1024); /* return bytes */
273}
274
275#if defined(CFG_DRAM_TEST)
276int testdram(void)
277{
278 unsigned long *mem = (unsigned long *)0;
279 const unsigned long kend = (1024 / sizeof(unsigned long));
280 unsigned long k, n;
281
282 mtmsr(0);
283
284 for (k = 0; k < CFG_KBYTES_SDRAM;
285 ++k, mem += (1024 / sizeof(unsigned long))) {
286 if ((k & 1023) == 0) {
287 printf("%3d MB\r", k / 1024);
288 }
289
290 memset(mem, 0xaaaaaaaa, 1024);
291 for (n = 0; n < kend; ++n) {
292 if (mem[n] != 0xaaaaaaaa) {
293 printf("SDRAM test fails at: %08x\n",
294 (uint) & mem[n]);
295 return 1;
296 }
297 }
298
299 memset(mem, 0x55555555, 1024);
300 for (n = 0; n < kend; ++n) {
301 if (mem[n] != 0x55555555) {
302 printf("SDRAM test fails at: %08x\n",
303 (uint) & mem[n]);
304 return 1;
305 }
306 }
307 }
308 printf("SDRAM test passes\n");
309 return 0;
310}
311#endif
312
313/*************************************************************************
314 * pci_pre_init
315 *
316 * This routine is called just prior to registering the hose and gives
317 * the board the opportunity to check things. Returning a value of zero
318 * indicates that things are bad & PCI initialization should be aborted.
319 *
320 * Different boards may wish to customize the pci controller structure
321 * (add regions, override default access routines, etc) or perform
322 * certain pre-initialization actions.
323 *
324 ************************************************************************/
325#if defined(CONFIG_PCI) && defined(CFG_PCI_PRE_INIT)
326int pci_pre_init(struct pci_controller *hose)
327{
328 unsigned long strap;
329 unsigned long addr;
330
331 /*--------------------------------------------------------------------------+
Stefan Roese27ea7a92005-09-15 11:34:07 +0200332 * Bamboo is always configured as the host & requires the
333 * PCI arbiter to be enabled.
Stefan Roese326c9712005-08-01 16:41:48 +0200334 *--------------------------------------------------------------------------*/
335 mfsdr(sdr_sdstp1, strap);
336 if ((strap & SDR0_SDSTP1_PAE_MASK) == 0) {
337 printf("PCI: SDR0_STRP1[PAE] not set.\n");
338 printf("PCI: Configuration aborted.\n");
339 return 0;
340 }
341
Stefan Roese27ea7a92005-09-15 11:34:07 +0200342 /*-------------------------------------------------------------------------+
343 | Set priority for all PLB3 devices to 0.
344 | Set PLB3 arbiter to fair mode.
345 +-------------------------------------------------------------------------*/
Stefan Roese326c9712005-08-01 16:41:48 +0200346 mfsdr(sdr_amp1, addr);
347 mtsdr(sdr_amp1, (addr & 0x000000FF) | 0x0000FF00);
348 addr = mfdcr(plb3_acr);
349 mtdcr(plb3_acr, addr | 0x80000000);
350
Stefan Roese27ea7a92005-09-15 11:34:07 +0200351 /*-------------------------------------------------------------------------+
352 | Set priority for all PLB4 devices to 0.
353 +-------------------------------------------------------------------------*/
Stefan Roese326c9712005-08-01 16:41:48 +0200354 mfsdr(sdr_amp0, addr);
355 mtsdr(sdr_amp0, (addr & 0x000000FF) | 0x0000FF00);
356 addr = mfdcr(plb4_acr) | 0xa0000000; /* Was 0x8---- */
357 mtdcr(plb4_acr, addr);
358
Stefan Roese27ea7a92005-09-15 11:34:07 +0200359 /*-------------------------------------------------------------------------+
360 | Set Nebula PLB4 arbiter to fair mode.
361 +-------------------------------------------------------------------------*/
362 /* Segment0 */
Stefan Roese326c9712005-08-01 16:41:48 +0200363 addr = (mfdcr(plb0_acr) & ~plb0_acr_ppm_mask) | plb0_acr_ppm_fair;
364 addr = (addr & ~plb0_acr_hbu_mask) | plb0_acr_hbu_enabled;
365 addr = (addr & ~plb0_acr_rdp_mask) | plb0_acr_rdp_4deep;
366 addr = (addr & ~plb0_acr_wrp_mask) | plb0_acr_wrp_2deep;
367 mtdcr(plb0_acr, addr);
368
369 /* Segment1 */
370 addr = (mfdcr(plb1_acr) & ~plb1_acr_ppm_mask) | plb1_acr_ppm_fair;
371 addr = (addr & ~plb1_acr_hbu_mask) | plb1_acr_hbu_enabled;
372 addr = (addr & ~plb1_acr_rdp_mask) | plb1_acr_rdp_4deep;
373 addr = (addr & ~plb1_acr_wrp_mask) | plb1_acr_wrp_2deep;
374 mtdcr(plb1_acr, addr);
375
376 return 1;
377}
378#endif /* defined(CONFIG_PCI) && defined(CFG_PCI_PRE_INIT) */
379
380/*************************************************************************
381 * pci_target_init
382 *
383 * The bootstrap configuration provides default settings for the pci
384 * inbound map (PIM). But the bootstrap config choices are limited and
385 * may not be sufficient for a given board.
386 *
387 ************************************************************************/
388#if defined(CONFIG_PCI) && defined(CFG_PCI_TARGET_INIT)
389void pci_target_init(struct pci_controller *hose)
390{
Stefan Roese326c9712005-08-01 16:41:48 +0200391 /*--------------------------------------------------------------------------+
392 * Set up Direct MMIO registers
393 *--------------------------------------------------------------------------*/
Stefan Roese27ea7a92005-09-15 11:34:07 +0200394 /*--------------------------------------------------------------------------+
395 | PowerPC440 EP PCI Master configuration.
396 | Map one 1Gig range of PLB/processor addresses to PCI memory space.
397 | PLB address 0xA0000000-0xDFFFFFFF ==> PCI address 0xA0000000-0xDFFFFFFF
398 | Use byte reversed out routines to handle endianess.
399 | Make this region non-prefetchable.
400 +--------------------------------------------------------------------------*/
Stefan Roese326c9712005-08-01 16:41:48 +0200401 out32r(PCIX0_PMM0MA, 0x00000000); /* PMM0 Mask/Attribute - disabled b4 setting */
402 out32r(PCIX0_PMM0LA, CFG_PCI_MEMBASE); /* PMM0 Local Address */
403 out32r(PCIX0_PMM0PCILA, CFG_PCI_MEMBASE); /* PMM0 PCI Low Address */
404 out32r(PCIX0_PMM0PCIHA, 0x00000000); /* PMM0 PCI High Address */
405 out32r(PCIX0_PMM0MA, 0xE0000001); /* 512M + No prefetching, and enable region */
406
407 out32r(PCIX0_PMM1MA, 0x00000000); /* PMM0 Mask/Attribute - disabled b4 setting */
408 out32r(PCIX0_PMM1LA, CFG_PCI_MEMBASE2); /* PMM0 Local Address */
409 out32r(PCIX0_PMM1PCILA, CFG_PCI_MEMBASE2); /* PMM0 PCI Low Address */
410 out32r(PCIX0_PMM1PCIHA, 0x00000000); /* PMM0 PCI High Address */
411 out32r(PCIX0_PMM1MA, 0xE0000001); /* 512M + No prefetching, and enable region */
412
413 out32r(PCIX0_PTM1MS, 0x00000001); /* Memory Size/Attribute */
414 out32r(PCIX0_PTM1LA, 0); /* Local Addr. Reg */
415 out32r(PCIX0_PTM2MS, 0); /* Memory Size/Attribute */
416 out32r(PCIX0_PTM2LA, 0); /* Local Addr. Reg */
417
418 /*--------------------------------------------------------------------------+
419 * Set up Configuration registers
420 *--------------------------------------------------------------------------*/
421
422 /* Program the board's subsystem id/vendor id */
423 pci_write_config_word(0, PCI_SUBSYSTEM_VENDOR_ID,
424 CFG_PCI_SUBSYS_VENDORID);
425 pci_write_config_word(0, PCI_SUBSYSTEM_ID, CFG_PCI_SUBSYS_ID);
426
427 /* Configure command register as bus master */
428 pci_write_config_word(0, PCI_COMMAND, PCI_COMMAND_MASTER);
429
430 /* 240nS PCI clock */
431 pci_write_config_word(0, PCI_LATENCY_TIMER, 1);
432
433 /* No error reporting */
434 pci_write_config_word(0, PCI_ERREN, 0);
435
436 pci_write_config_dword(0, PCI_BRDGOPT2, 0x00000101);
437
438}
439#endif /* defined(CONFIG_PCI) && defined(CFG_PCI_TARGET_INIT) */
440
441/*************************************************************************
442 * pci_master_init
443 *
444 ************************************************************************/
445#if defined(CONFIG_PCI) && defined(CFG_PCI_MASTER_INIT)
446void pci_master_init(struct pci_controller *hose)
447{
448 unsigned short temp_short;
449
Stefan Roese27ea7a92005-09-15 11:34:07 +0200450 /*--------------------------------------------------------------------------+
451 | Write the PowerPC440 EP PCI Configuration regs.
452 | Enable PowerPC440 EP to be a master on the PCI bus (PMM).
453 | Enable PowerPC440 EP to act as a PCI memory target (PTM).
454 +--------------------------------------------------------------------------*/
Stefan Roese326c9712005-08-01 16:41:48 +0200455 pci_read_config_word(0, PCI_COMMAND, &temp_short);
456 pci_write_config_word(0, PCI_COMMAND,
457 temp_short | PCI_COMMAND_MASTER |
458 PCI_COMMAND_MEMORY);
459}
460#endif /* defined(CONFIG_PCI) && defined(CFG_PCI_MASTER_INIT) */
461
462/*************************************************************************
463 * is_pci_host
464 *
465 * This routine is called to determine if a pci scan should be
466 * performed. With various hardware environments (especially cPCI and
467 * PPMC) it's insufficient to depend on the state of the arbiter enable
468 * bit in the strap register, or generic host/adapter assumptions.
469 *
470 * Rather than hard-code a bad assumption in the general 440 code, the
471 * 440 pci code requires the board to decide at runtime.
472 *
473 * Return 0 for adapter mode, non-zero for host (monarch) mode.
474 *
475 *
476 ************************************************************************/
477#if defined(CONFIG_PCI)
478int is_pci_host(struct pci_controller *hose)
479{
480 /* Bamboo is always configured as host. */
481 return (1);
482}
483#endif /* defined(CONFIG_PCI) */
484
485/*************************************************************************
486 * hw_watchdog_reset
487 *
488 * This routine is called to reset (keep alive) the watchdog timer
489 *
490 ************************************************************************/
491#if defined(CONFIG_HW_WATCHDOG)
492void hw_watchdog_reset(void)
493{
Stefan Roese27ea7a92005-09-15 11:34:07 +0200494
Stefan Roese326c9712005-08-01 16:41:48 +0200495}
496#endif