199767f8919635c4928607450d9e0abb932109ceToomas Soome/*-
199767f8919635c4928607450d9e0abb932109ceToomas Soome * Copyright (c) 2000-2001 Benno Rice
199767f8919635c4928607450d9e0abb932109ceToomas Soome * All rights reserved.
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * Redistribution and use in source and binary forms, with or without
199767f8919635c4928607450d9e0abb932109ceToomas Soome * modification, are permitted provided that the following conditions
199767f8919635c4928607450d9e0abb932109ceToomas Soome * are met:
199767f8919635c4928607450d9e0abb932109ceToomas Soome * 1. Redistributions of source code must retain the above copyright
199767f8919635c4928607450d9e0abb932109ceToomas Soome * notice, this list of conditions and the following disclaimer.
199767f8919635c4928607450d9e0abb932109ceToomas Soome * 2. Redistributions in binary form must reproduce the above copyright
199767f8919635c4928607450d9e0abb932109ceToomas Soome * notice, this list of conditions and the following disclaimer in the
199767f8919635c4928607450d9e0abb932109ceToomas Soome * documentation and/or other materials provided with the distribution.
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * THIS SOFTWARE IS PROVIDED BY Benno Rice ``AS IS'' AND
199767f8919635c4928607450d9e0abb932109ceToomas Soome * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
199767f8919635c4928607450d9e0abb932109ceToomas Soome * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
199767f8919635c4928607450d9e0abb932109ceToomas Soome * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
199767f8919635c4928607450d9e0abb932109ceToomas Soome * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
199767f8919635c4928607450d9e0abb932109ceToomas Soome * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
199767f8919635c4928607450d9e0abb932109ceToomas Soome * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
199767f8919635c4928607450d9e0abb932109ceToomas Soome * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
199767f8919635c4928607450d9e0abb932109ceToomas Soome * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
199767f8919635c4928607450d9e0abb932109ceToomas Soome * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
199767f8919635c4928607450d9e0abb932109ceToomas Soome * SUCH DAMAGE.
199767f8919635c4928607450d9e0abb932109ceToomas Soome */
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include <sys/cdefs.h>
199767f8919635c4928607450d9e0abb932109ceToomas Soome__FBSDID("$FreeBSD$");
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include <sys/param.h>
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include <sys/types.h>
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include <sys/socket.h>
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include <net/if.h>
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include <netinet/in.h>
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include <netinet/in_systm.h>
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include <netinet/if_ether.h>
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include <netinet/ip.h>
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include <stand.h>
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include <net.h>
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include <netif.h>
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include "openfirm.h"
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomestatic int ofwn_probe(struct netif *, void *);
199767f8919635c4928607450d9e0abb932109ceToomas Soomestatic int ofwn_match(struct netif *, void *);
199767f8919635c4928607450d9e0abb932109ceToomas Soomestatic void ofwn_init(struct iodesc *, void *);
199767f8919635c4928607450d9e0abb932109ceToomas Soomestatic int ofwn_get(struct iodesc *, void *, size_t, time_t);
199767f8919635c4928607450d9e0abb932109ceToomas Soomestatic int ofwn_put(struct iodesc *, void *, size_t);
199767f8919635c4928607450d9e0abb932109ceToomas Soomestatic void ofwn_end(struct netif *);
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomeextern struct netif_stats ofwn_stats[];
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomestruct netif_dif ofwn_ifs[] = {
199767f8919635c4928607450d9e0abb932109ceToomas Soome /* dif_unit dif_nsel dif_stats dif_private */
199767f8919635c4928607450d9e0abb932109ceToomas Soome { 0, 1, &ofwn_stats[0], 0, },
199767f8919635c4928607450d9e0abb932109ceToomas Soome};
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomestruct netif_stats ofwn_stats[NENTS(ofwn_ifs)];
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomestruct netif_driver ofwnet = {
199767f8919635c4928607450d9e0abb932109ceToomas Soome "net", /* netif_bname */
199767f8919635c4928607450d9e0abb932109ceToomas Soome ofwn_match, /* netif_match */
199767f8919635c4928607450d9e0abb932109ceToomas Soome ofwn_probe, /* netif_probe */
199767f8919635c4928607450d9e0abb932109ceToomas Soome ofwn_init, /* netif_init */
199767f8919635c4928607450d9e0abb932109ceToomas Soome ofwn_get, /* netif_get */
199767f8919635c4928607450d9e0abb932109ceToomas Soome ofwn_put, /* netif_put */
199767f8919635c4928607450d9e0abb932109ceToomas Soome ofwn_end, /* netif_end */
199767f8919635c4928607450d9e0abb932109ceToomas Soome ofwn_ifs, /* netif_ifs */
199767f8919635c4928607450d9e0abb932109ceToomas Soome NENTS(ofwn_ifs) /* netif_nifs */
199767f8919635c4928607450d9e0abb932109ceToomas Soome};
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomestatic ihandle_t netinstance;
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomestatic void *dmabuf;
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomestatic int
199767f8919635c4928607450d9e0abb932109ceToomas Soomeofwn_match(struct netif *nif, void *machdep_hint)
199767f8919635c4928607450d9e0abb932109ceToomas Soome{
199767f8919635c4928607450d9e0abb932109ceToomas Soome return 1;
199767f8919635c4928607450d9e0abb932109ceToomas Soome}
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomestatic int
199767f8919635c4928607450d9e0abb932109ceToomas Soomeofwn_probe(struct netif *nif, void *machdep_hint)
199767f8919635c4928607450d9e0abb932109ceToomas Soome{
199767f8919635c4928607450d9e0abb932109ceToomas Soome return 0;
199767f8919635c4928607450d9e0abb932109ceToomas Soome}
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomestatic int
199767f8919635c4928607450d9e0abb932109ceToomas Soomeofwn_put(struct iodesc *desc, void *pkt, size_t len)
199767f8919635c4928607450d9e0abb932109ceToomas Soome{
199767f8919635c4928607450d9e0abb932109ceToomas Soome size_t sendlen;
199767f8919635c4928607450d9e0abb932109ceToomas Soome ssize_t rv;
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#if defined(NETIF_DEBUG)
199767f8919635c4928607450d9e0abb932109ceToomas Soome struct ether_header *eh;
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("netif_put: desc=0x%x pkt=0x%x len=%d\n", desc, pkt, len);
199767f8919635c4928607450d9e0abb932109ceToomas Soome eh = pkt;
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("dst: %s ", ether_sprintf(eh->ether_dhost));
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("src: %s ", ether_sprintf(eh->ether_shost));
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("type: 0x%x\n", eh->ether_type & 0xffff);
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome sendlen = len;
199767f8919635c4928607450d9e0abb932109ceToomas Soome if (sendlen < 60) {
199767f8919635c4928607450d9e0abb932109ceToomas Soome sendlen = 60;
199767f8919635c4928607450d9e0abb932109ceToomas Soome#if defined(NETIF_DEBUG)
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("netif_put: length padded to %d\n", sendlen);
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome }
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome if (dmabuf) {
199767f8919635c4928607450d9e0abb932109ceToomas Soome bcopy(pkt, dmabuf, sendlen);
199767f8919635c4928607450d9e0abb932109ceToomas Soome pkt = dmabuf;
199767f8919635c4928607450d9e0abb932109ceToomas Soome }
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome rv = OF_write(netinstance, pkt, len);
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#if defined(NETIF_DEBUG)
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("netif_put: OF_write returned %d\n", rv);
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome return rv;
199767f8919635c4928607450d9e0abb932109ceToomas Soome}
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomestatic int
199767f8919635c4928607450d9e0abb932109ceToomas Soomeofwn_get(struct iodesc *desc, void *pkt, size_t len, time_t timeout)
199767f8919635c4928607450d9e0abb932109ceToomas Soome{
199767f8919635c4928607450d9e0abb932109ceToomas Soome time_t t;
199767f8919635c4928607450d9e0abb932109ceToomas Soome int length;
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#if defined(NETIF_DEBUG)
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("netif_get: pkt=%p, maxlen=%d, timeout=%d\n", pkt, len,
199767f8919635c4928607450d9e0abb932109ceToomas Soome timeout);
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome t = getsecs();
199767f8919635c4928607450d9e0abb932109ceToomas Soome do {
199767f8919635c4928607450d9e0abb932109ceToomas Soome length = OF_read(netinstance, pkt, len);
199767f8919635c4928607450d9e0abb932109ceToomas Soome } while ((length == -2 || length == 0) &&
199767f8919635c4928607450d9e0abb932109ceToomas Soome (getsecs() - t < timeout));
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#if defined(NETIF_DEBUG)
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("netif_get: received length=%d (%x)\n", length, length);
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome if (length < 12)
199767f8919635c4928607450d9e0abb932109ceToomas Soome return -1;
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#if defined(NETIF_VERBOSE_DEBUG)
199767f8919635c4928607450d9e0abb932109ceToomas Soome {
199767f8919635c4928607450d9e0abb932109ceToomas Soome char *ch = pkt;
199767f8919635c4928607450d9e0abb932109ceToomas Soome int i;
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome for(i = 0; i < 96; i += 4) {
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("%02x%02x%02x%02x ", ch[i], ch[i+1],
199767f8919635c4928607450d9e0abb932109ceToomas Soome ch[i+2], ch[i+3]);
199767f8919635c4928607450d9e0abb932109ceToomas Soome }
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("\n");
199767f8919635c4928607450d9e0abb932109ceToomas Soome }
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#if defined(NETIF_DEBUG)
199767f8919635c4928607450d9e0abb932109ceToomas Soome {
199767f8919635c4928607450d9e0abb932109ceToomas Soome struct ether_header *eh = pkt;
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("dst: %s ", ether_sprintf(eh->ether_dhost));
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("src: %s ", ether_sprintf(eh->ether_shost));
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("type: 0x%x\n", eh->ether_type & 0xffff);
199767f8919635c4928607450d9e0abb932109ceToomas Soome }
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome return length;
199767f8919635c4928607450d9e0abb932109ceToomas Soome}
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomeextern char *strchr();
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomestatic void
199767f8919635c4928607450d9e0abb932109ceToomas Soomeofwn_init(struct iodesc *desc, void *machdep_hint)
199767f8919635c4928607450d9e0abb932109ceToomas Soome{
199767f8919635c4928607450d9e0abb932109ceToomas Soome phandle_t netdev;
199767f8919635c4928607450d9e0abb932109ceToomas Soome char path[64];
199767f8919635c4928607450d9e0abb932109ceToomas Soome char *ch;
199767f8919635c4928607450d9e0abb932109ceToomas Soome int pathlen;
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome pathlen = OF_getprop(chosen, "bootpath", path, 64);
199767f8919635c4928607450d9e0abb932109ceToomas Soome if ((ch = strchr(path, ':')) != NULL)
199767f8919635c4928607450d9e0abb932109ceToomas Soome *ch = '\0';
199767f8919635c4928607450d9e0abb932109ceToomas Soome netdev = OF_finddevice(path);
199767f8919635c4928607450d9e0abb932109ceToomas Soome#ifdef __sparc64__
199767f8919635c4928607450d9e0abb932109ceToomas Soome if (OF_getprop(netdev, "mac-address", desc->myea, 6) == -1)
199767f8919635c4928607450d9e0abb932109ceToomas Soome#else
199767f8919635c4928607450d9e0abb932109ceToomas Soome if (OF_getprop(netdev, "local-mac-address", desc->myea, 6) == -1)
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome goto punt;
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("boot: ethernet address: %s\n", ether_sprintf(desc->myea));
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome if ((netinstance = OF_open(path)) == -1) {
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("Could not open network device.\n");
199767f8919635c4928607450d9e0abb932109ceToomas Soome goto punt;
199767f8919635c4928607450d9e0abb932109ceToomas Soome }
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#if defined(NETIF_DEBUG)
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("ofwn_init: Open Firmware instance handle: %08x\n", netinstance);
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#ifndef __sparc64__
199767f8919635c4928607450d9e0abb932109ceToomas Soome dmabuf = NULL;
199767f8919635c4928607450d9e0abb932109ceToomas Soome if (OF_call_method("dma-alloc", netinstance, 1, 1, (64 * 1024), &dmabuf)
199767f8919635c4928607450d9e0abb932109ceToomas Soome < 0) {
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("Failed to allocate DMA buffer (got %08x).\n", dmabuf);
199767f8919635c4928607450d9e0abb932109ceToomas Soome goto punt;
199767f8919635c4928607450d9e0abb932109ceToomas Soome }
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#if defined(NETIF_DEBUG)
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("ofwn_init: allocated DMA buffer: %08x\n", dmabuf);
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome return;
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomepunt:
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("\n");
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf("Could not boot from %s.\n", path);
199767f8919635c4928607450d9e0abb932109ceToomas Soome OF_enter();
199767f8919635c4928607450d9e0abb932109ceToomas Soome}
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soomestatic void
199767f8919635c4928607450d9e0abb932109ceToomas Soomeofwn_end(struct netif *nif)
199767f8919635c4928607450d9e0abb932109ceToomas Soome{
199767f8919635c4928607450d9e0abb932109ceToomas Soome#ifdef BROKEN
199767f8919635c4928607450d9e0abb932109ceToomas Soome /* dma-free freezes at least some Apple ethernet controllers */
199767f8919635c4928607450d9e0abb932109ceToomas Soome OF_call_method("dma-free", netinstance, 2, 0, dmabuf, MAXPHYS);
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome OF_close(netinstance);
199767f8919635c4928607450d9e0abb932109ceToomas Soome}
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#if 0
199767f8919635c4928607450d9e0abb932109ceToomas Soomeint
199767f8919635c4928607450d9e0abb932109ceToomas Soomeofwn_getunit(const char *path)
199767f8919635c4928607450d9e0abb932109ceToomas Soome{
199767f8919635c4928607450d9e0abb932109ceToomas Soome int i;
199767f8919635c4928607450d9e0abb932109ceToomas Soome char newpath[255];
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome OF_canon(path, newpath, 254);
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome for (i = 0; i < nofwninfo; i++) {
199767f8919635c4928607450d9e0abb932109ceToomas Soome printf(">>> test =\t%s\n", ofwninfo[i].ofwn_path);
199767f8919635c4928607450d9e0abb932109ceToomas Soome if (strcmp(path, ofwninfo[i].ofwn_path) == 0)
199767f8919635c4928607450d9e0abb932109ceToomas Soome return i;
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome if (strcmp(newpath, ofwninfo[i].ofwn_path) == 0)
199767f8919635c4928607450d9e0abb932109ceToomas Soome return i;
199767f8919635c4928607450d9e0abb932109ceToomas Soome }
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome return -1;
199767f8919635c4928607450d9e0abb932109ceToomas Soome}
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif