QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

楼主: jackzheng2002

嵌入式Linux 2.6 内核专题

[复制链接]
发表于 2005-6-25 01:53:55 | 显示全部楼层
声卡的驱动,可以放音了,录音好像还不行

#include <linux/module.h>
#include <linux/device.h>
#include <linux/init.h>
#include <linux/types.h>
#include <linux/fs.h>
#include <linux/mm.h>
#include <linux/slab.h>
#include <linux/delay.h>
#include <linux/sched.h>
#include <linux/poll.h>
#include <linux/interrupt.h>
#include <linux/errno.h>
#include <linux/sound.h>
#include <linux/soundcard.h>

#include <linux/pm.h>

#include <asm/uaccess.h>
#include <asm/io.h>
#include <asm/hardware.h>
#include <asm/semaphore.h>
#include <asm/dma.h>
#include <asm/arch/cpu_s3c2410.h>
#include <asm/arch/dma.h>
#include <asm/arch/regs-gpio.h>
#include <asm/arch/regs-iis.h>
#include <asm/hardware/clock.h>
#include <asm/arch/regs-clock.h>
#include <linux/dma-mapping.h>
#include <asm/dma-mapping.h>
#include <asm/arch/hardware.h>
#include <asm/arch/map.h>
#include <asm/arch/S3C2410.h>
#define PFX "s3c2410-uda1341-superlp: "

#define MAX_DMA_CHANNELS        0

/* The S3C2410 has four internal DMA channels. */

#define MAX_S3C2410_DMA_CHANNELS        S3C2410_DMA_CHANNELS

#define DMA_CH0                        0
#define DMA_CH1                        1
#define DMA_CH2                        2
#define DMA_CH3                        3

#define DMA_BUF_WR                1
#define DMA_BUF_RD                0


#define dma_wrreg(chan, reg, val) writel((val), (chan)->regs + (reg))


static struct clk        *iis_clock;
static void __iomem        *iis_base;

static struct s3c2410_dma_client s3c2410iis_dma_out= {
        .name                = "I2SSDO",
};

static struct s3c2410_dma_client s3c2410iis_dma_in = {
        .name                = "I2SSDI",
};



#ifdef DEBUG
#define DPRINTK printk
#else
#define DPRINTK( x... )
#endif

static void init_s3c2410_iis_bus_rx(void);
static void init_s3c2410_iis_bus_tx(void);

#define DEF_VOLUME      65

/* UDA1341 Register bits */
#define UDA1341_ADDR                0x14

#define UDA1341_REG_DATA0        (UDA1341_ADDR + 0)
#define UDA1341_REG_STATUS        (UDA1341_ADDR + 2)

/* status control */
#define STAT0                        (0x00)
#define STAT0_RST               (1 << 6)
#define STAT0_SC_MASK           (3 << 4)
#define STAT0_SC_512FS          (0 << 4)
#define STAT0_SC_384FS          (1 << 4)
#define STAT0_SC_256FS          (2 << 4)
#define STAT0_IF_MASK           (7 << 1)
#define STAT0_IF_I2S            (0 << 1)
#define STAT0_IF_LSB16          (1 << 1)
#define STAT0_IF_LSB18          (2 << 1)
#define STAT0_IF_LSB20          (3 << 1)
#define STAT0_IF_MSB            (4 << 1)
#define STAT0_IF_LSB16MSB       (5 << 1)
#define STAT0_IF_LSB18MSB       (6 << 1)
#define STAT0_IF_LSB20MSB       (7 << 1)
#define STAT0_DC_FILTER         (1 << 0)
#define STAT0_DC_NO_FILTER        (0 << 0)

#define STAT1                        (0x80)
#define STAT1_DAC_GAIN          (1 << 6)        /* gain of DAC */
#define STAT1_ADC_GAIN          (1 << 5)        /* gain of ADC */
#define STAT1_ADC_POL           (1 << 4)        /* polarity of ADC */
#define STAT1_DAC_POL           (1 << 3)        /* polarity of DAC */
#define STAT1_DBL_SPD           (1 << 2)        /* double speed playback */
#define STAT1_ADC_ON            (1 << 1)        /* ADC powered */
#define STAT1_DAC_ON            (1 << 0)        /* DAC powered */

/* data0 direct control */
#define DATA0                     (0x00)
#define DATA0_VOLUME_MASK       (0x3f)
#define DATA0_VOLUME(x)         (x)

#define DATA1                     (0x40)
#define DATA1_BASS(x)           ((x) << 2)
#define DATA1_BASS_MASK         (15 << 2)
#define DATA1_TREBLE(x)         ((x))
#define DATA1_TREBLE_MASK       (3)

#define DATA2                     (0x80)
#define DATA2_PEAKAFTER         (0x1 << 5)
#define DATA2_DEEMP_NONE        (0x0 << 3)
#define DATA2_DEEMP_32KHz       (0x1 << 3)
#define DATA2_DEEMP_44KHz       (0x2 << 3)
#define DATA2_DEEMP_48KHz       (0x3 << 3)
#define DATA2_MUTE              (0x1 << 2)
#define DATA2_FILTER_FLAT       (0x0 << 0)
#define DATA2_FILTER_MIN        (0x1 << 0)
#define DATA2_FILTER_MAX        (0x3 << 0)
/* data0 extend control */
#define EXTADDR(n)              (0xc0 | (n))
#define EXTDATA(d)              (0xe0 | (d))

#define EXT0                    0
#define EXT0_CH1_GAIN(x)        (x)
#define EXT1                    1
#define EXT1_CH2_GAIN(x)        (x)
#define EXT2                    2
#define EXT2_MIC_GAIN_MASK      (7 << 2)
#define EXT2_MIC_GAIN(x)        ((x) << 2)
#define EXT2_MIXMODE_DOUBLEDIFF (0)
#define EXT2_MIXMODE_CH1        (1)
#define EXT2_MIXMODE_CH2        (2)
#define EXT2_MIXMODE_MIX        (3)
#define EXT4                    4
#define EXT4_AGC_ENABLE         (1 << 4)
#define EXT4_INPUT_GAIN_MASK    (3)
#define EXT4_INPUT_GAIN(x)      ((x) & 3)
#define EXT5                    5
#define EXT5_INPUT_GAIN(x)      ((x) >> 2)
#define EXT6                    6
#define EXT6_AGC_CONSTANT_MASK  (7 << 2)
#define EXT6_AGC_CONSTANT(x)    ((x) << 2)
#define EXT6_AGC_LEVEL_MASK     (3)
#define EXT6_AGC_LEVEL(x)       (x)

#define AUDIO_NAME                "UDA1341"
#define AUDIO_NAME_VERBOSE        "UDA1341 audio driver"

#define AUDIO_FMT_MASK          (AFMT_S16_LE)
#define AUDIO_FMT_DEFAULT       (AFMT_S16_LE)

#define AUDIO_CHANNELS_DEFAULT        2
#define AUDIO_RATE_DEFAULT        44100

#define AUDIO_NBFRAGS_DEFAULT        8
#define AUDIO_FRAGSIZE_DEFAULT        8192

#define S_CLOCK_FREQ        384
#define PCM_ABS(a) (a < 0 ? -a : a)

typedef struct {
        int size;                /* buffer size */
        char *start;                /* point to actual buffer */
        dma_addr_t dma_addr;        /* physical buffer address */
        struct semaphore sem;        /* down before touching the buffer */
        int master;                /* owner for buffer allocation, contain size when true */
} audio_buf_t;

typedef struct {
        audio_buf_t *buffers;        /* pointer to audio buffer structures */
        audio_buf_t *buf;        /* current buffer used by read/write */
        u_int buf_idx;                /* index for the pointer above */
        u_int fragsize;                /* fragment i.e. buffer size */
        u_int nbfrags;                /* nbr of fragments */
        dmach_t dma_ch;                /* DMA channel (channel2 for audio) */
        u_int dma_ok;
} audio_stream_t;

static audio_stream_t output_stream;
static audio_stream_t input_stream; /* input */

#define NEXT_BUF(_s_,_b_) { \
        (_s_)->_b_##_idx++; \
        (_s_)->_b_##_idx %= (_s_)->nbfrags; \
        (_s_)->_b_ = (_s_)->buffers + (_s_)->_b_##_idx; }


static u_int audio_rate;
static int audio_channels;
static int audio_fmt;
static u_int audio_fragsize;
static u_int audio_nbfrags;


static int audio_rd_refcount;
static int audio_wr_refcount;
#define audio_active                (audio_rd_refcount | audio_wr_refcount)

static int audio_dev_dsp;
static int audio_dev_mixer;
static int audio_mix_modcnt;

static int uda1341_volume;
static u8 uda_sampling;
static int uda1341_boost;
static int mixer_igain=0x4; /* -6db*/

static void uda1341_l3_address(u8 data)
{
        int i;
        unsigned long flags;

        local_irq_save(flags);

//        write_gpio_bit(GPIO_L3MODE, 0);
        s3c2410_gpio_setpin(S3C2410_GPB2,0);               
//        write_gpio_bit(GPIO_L3CLOCK, 1);
        s3c2410_gpio_setpin(S3C2410_GPB4,1);       
        udelay(1);
       
        for (i = 0; i < 8; i++) {
                if (data & 0x1) {
                        s3c2410_gpio_setpin(S3C2410_GPB4,0);                       
                        s3c2410_gpio_setpin(S3C2410_GPB3,1);                       
                        udelay(1);
                        s3c2410_gpio_setpin(S3C2410_GPB4,1);
                } else {
                        s3c2410_gpio_setpin(S3C2410_GPB4,0);                       
                        s3c2410_gpio_setpin(S3C2410_GPB3,0);                       
                        udelay(1);
                        s3c2410_gpio_setpin(S3C2410_GPB4,1);                       
                }
                data >>= 1;
        }

        s3c2410_gpio_setpin(S3C2410_GPB2,1);       
        s3c2410_gpio_setpin(S3C2410_GPB4,1);       
        local_irq_restore(flags);
}

static void uda1341_l3_data(u8 data)
{
        int i;
        unsigned long flags;

        local_irq_save(flags);
        udelay(1);

        for (i = 0; i < 8; i++) {
                if (data & 0x1) {
                        s3c2410_gpio_setpin(S3C2410_GPB4,0);                       
                        s3c2410_gpio_setpin(S3C2410_GPB3,1);                               
                        udelay(1);
                        s3c2410_gpio_setpin(S3C2410_GPB4,1);                               
                } else {
                        s3c2410_gpio_setpin(S3C2410_GPB4,0);                               
                        s3c2410_gpio_setpin(S3C2410_GPB3,0);                               
                        udelay(1);
                        s3c2410_gpio_setpin(S3C2410_GPB4,1);                               
                }

                data >>= 1;
        }
       
        local_irq_restore(flags);
}

static void audio_clear_buf(audio_stream_t * s)
{
            DPRINTK("audio_clear_buf\n");

        if(s->dma_ok) s3c2410_dma_ctrl(s->dma_ch, S3C2410_DMAOP_FLUSH);

        if (s->buffers) {
                int frag;

                for (frag = 0; frag < s->nbfrags; frag++) {
                        if (!s->buffers[frag].master)
                                continue;
                        dma_free_coherent(NULL,
                                        s->buffers[frag].master,
                                        s->buffers[frag].start,
                                        s->buffers[frag].dma_addr);
                }
                kfree(s->buffers);
                s->buffers = NULL;
        }

        s->buf_idx = 0;
        s->buf = NULL;
}

static int audio_setup_buf(audio_stream_t * s)
{
        int frag;
        int dmasize = 0;
        char *dmabuf = 0;
        dma_addr_t dmaphys = 0;

        if (s->buffers)
                return -EBUSY;

        s->nbfrags = audio_nbfrags;
        s->fragsize = audio_fragsize;

        s->buffers = (audio_buf_t *)
            kmalloc(sizeof(audio_buf_t) * s->nbfrags, GFP_KERNEL);
        if (!s->buffers)
                goto err;
        memset(s->buffers, 0, sizeof(audio_buf_t) * s->nbfrags);

        for (frag = 0; frag < s->nbfrags; frag++) {
                audio_buf_t *b = &s->buffers[frag];

                if (!dmasize) {
                        dmasize = (s->nbfrags - frag) * s->fragsize;
                        do {
                                dmabuf = dma_alloc_coherent(NULL, dmasize, &dmaphys, GFP_KERNEL|GFP_DMA);
                                if (!dmabuf)
                                            dmasize -= s->fragsize;
                        } while (!dmabuf && dmasize);
                        if (!dmabuf)
                                goto err;
                        b->master = dmasize;
                }

                b->start = dmabuf;
                b->dma_addr = dmaphys;
                sema_init(&b->sem, 1);
                DPRINTK("buf %d: start %p dma %d\n", frag, b->start, b->dma_addr);

                dmabuf += s->fragsize;
                dmaphys += s->fragsize;
                dmasize -= s->fragsize;
        }

        s->buf_idx = 0;
        s->buf = &s->buffers[0];
        return 0;

      err:
        printk(AUDIO_NAME ": unable to allocate audio memory\n ");
        audio_clear_buf(s);
        return -ENOMEM;
}

static void audio_dmaout_done_callback(s3c2410_dma_chan_t *ch, void *buf, int size,
                                   s3c2410_dma_buffresult_t result)
{
        audio_buf_t *b = (audio_buf_t *) buf;
        up(&b->sem);
        wake_up(&b->sem.wait);
}

static void audio_dmain_done_callback(s3c2410_dma_chan_t *ch, void *buf, int size,
                                   s3c2410_dma_buffresult_t result)
{
        audio_buf_t *b = (audio_buf_t *) buf;
          b->size = size;
        up(&b->sem);
        wake_up(&b->sem.wait);               
}
/* using when write */
static int audio_sync(struct file *file)
{
        audio_stream_t *s = &output_stream;
        audio_buf_t *b = s->buf;

        DPRINTK("audio_sync\n");

        if (!s->buffers)
                return 0;

        if (b->size != 0) {
                down(&b->sem);
                s3c2410_dma_enqueue(s->dma_ch, (void *) b, b->dma_addr, b->size);
                b->size = 0;
                NEXT_BUF(s, buf);
        }

        b = s->buffers + ((s->nbfrags + s->buf_idx - 1) % s->nbfrags);
        if (down_interruptible(&b->sem))
                return -EINTR;
        up(&b->sem);

        return 0;
}

static inline int copy_from_user_mono_stereo(char *to, const char *from, int count)
{
        u_int *dst = (u_int *)to;
        const char *end = from + count;

        if (verify_area(VERIFY_READ, from, count))
                return -EFAULT;

        if ((int)from & 0x2) {
                u_int v;
                __get_user(v, (const u_short *)from); from += 2;
                *dst++ = v | (v << 16);
        }

        while (from < end-2) {
                u_int v, x, y;
                __get_user(v, (const u_int *)from); from += 4;
                x = v << 16;
                x |= x >> 16;
                y = v >> 16;
                y |= y << 16;
                *dst++ = x;
                *dst++ = y;
        }

        if (from < end) {
                u_int v;
                __get_user(v, (const u_short *)from);
                *dst = v | (v << 16);
        }

        return 0;
}


static ssize_t smdk2410_audio_write(struct file *file, const char *buffer,
                                    size_t count, loff_t * ppos)
{
        const char *buffer0 = buffer;
        audio_stream_t *s = &output_stream;
        int chunksize, ret = 0;

        DPRINTK("audio_write : start count=%d\n", count);

        switch (file->f_flags & O_ACCMODE) {
                  case O_WRONLY:
                  case O_RDWR:
                        break;
                  default:
                          return -EPERM;
        }

        if (!s->buffers && audio_setup_buf(s))
                return -ENOMEM;

        count &= ~0x03;

        while (count > 0) {
                audio_buf_t *b = s->buf;

                if (file->f_flags & O_NONBLOCK) {
                        ret = -EAGAIN;
                        if (down_trylock(&b->sem))
                                break;
                } else {
                        ret = -ERESTARTSYS;
                        if (down_interruptible(&b->sem))
                                break;
                }

                if (audio_channels == 2) {
                        chunksize = s->fragsize - b->size;
                        if (chunksize > count)
                                chunksize = count;
                        DPRINTK("write %d to %d\n", chunksize, s->buf_idx);
                        if (copy_from_user(b->start + b->size, buffer, chunksize)) {
                                up(&b->sem);
                                return -EFAULT;
                        }
                        b->size += chunksize;
                } else {
                        chunksize = (s->fragsize - b->size) >> 1;

                        if (chunksize > count)
                                chunksize = count;
                        DPRINTK("write %d to %d\n", chunksize*2, s->buf_idx);
                        if (copy_from_user_mono_stereo(b->start + b->size,
                                                           buffer, chunksize)) {
                                up(&b->sem);
                                return -EFAULT;
                        }

                        b->size += chunksize*2;
                }

                buffer += chunksize;
                count -= chunksize;
                if (b->size < s->fragsize) {
                        up(&b->sem);
                        break;
                }

                if((ret = s3c2410_dma_enqueue(s->dma_ch, (void *) b, b->dma_addr, b->size))) {
                        printk(PFX"dma enqueue failed.\n");
                        return ret;
                }
                b->size = 0;
                NEXT_BUF(s, buf);
        }

        if ((buffer - buffer0))
                ret = buffer - buffer0;

        DPRINTK("audio_write : end count=%d\n\n", ret);

        return ret;
}


static ssize_t smdk2410_audio_read(struct file *file, char *buffer,
                                        size_t count, loff_t * ppos)
{
        const char *buffer0 = buffer;
        audio_stream_t *s = &input_stream;
        int chunksize, ret = 0;

        DPRINTK("audio_read: count=%d\n", count);

        if (ppos != &file->f_pos)
                return -ESPIPE;

        if (!s->buffers) {
                int i;

                 if (audio_setup_buf(s))
                         return -ENOMEM;

                 for (i = 0; i < s->nbfrags; i++) {
                         audio_buf_t *b = s->buf;
                         down(&b->sem);
                         s3c2410_dma_enqueue(s->dma_ch, (void *) b, b->dma_addr, s->fragsize);
                         NEXT_BUF(s, buf);
                 }
         }
       
        while (count > 0) {
                audio_buf_t *b = s->buf;

                /* Wait for a buffer to become full */
                if (file->f_flags & O_NONBLOCK) {
                        ret = -EAGAIN;
                        if (down_trylock(&b->sem))
                                break;
                } else {
                        ret = -ERESTARTSYS;
                        if (down_interruptible(&b->sem))
                                break;
                }

                chunksize = b->size;
                if (chunksize > count)
                        chunksize = count;
                DPRINTK("read %d from %d\n", chunksize, s->buf_idx);
                if (copy_to_user(buffer, b->start + s->fragsize - b->size,
                                               chunksize)) {
                        up(&b->sem);
                        return -EFAULT;
                }
               
                b->size -= chunksize;

                buffer += chunksize;
                count -= chunksize;
                if (b->size > 0) {
                        up(&b->sem);
                        break;
                }

                /* Make current buffer available for DMA again */
                s3c2410_dma_enqueue(s->dma_ch, (void *) b, b->dma_addr, s->fragsize);

                NEXT_BUF(s, buf);
        }
       
        if ((buffer - buffer0))
                ret = buffer - buffer0;

     //   DPRINTK("audio_read: return=%d\n", ret);

        return ret;
}


static unsigned int smdk2410_audio_poll(struct file *file,
                                        struct poll_table_struct *wait)
{
        unsigned int mask = 0;
        int i;

        DPRINTK("audio_poll(): mode=%s\n",
                (file->f_mode & FMODE_WRITE) ? "w" : "");

        if (file->f_mode & FMODE_READ) {
                if (!input_stream.buffers && audio_setup_buf(&input_stream))
                        return -ENOMEM;
                poll_wait(file, &input_stream.buf->sem.wait, wait);

                for (i = 0; i < input_stream.nbfrags; i++) {
                        if (atomic_read(&input_stream.buffers.sem.count) > 0)
                                mask |= POLLIN | POLLWRNORM;
                                break;
                }
        }


        if (file->f_mode & FMODE_WRITE) {
                if (!output_stream.buffers && audio_setup_buf(&output_stream))
                        return -ENOMEM;
                poll_wait(file, &output_stream.buf->sem.wait, wait);

                for (i = 0; i < output_stream.nbfrags; i++) {
                        if (atomic_read(&output_stream.buffers.sem.count) > 0)
                                mask |= POLLOUT | POLLWRNORM;
                                break;
                }
        }

        DPRINTK("audio_poll() returned mask of %s\n",
                (mask & POLLOUT) ? "w" : "");

        return mask;
}


static loff_t smdk2410_audio_llseek(struct file *file, loff_t offset,
                                    int origin)
{
            return -ESPIPE;
}


static int smdk2410_mixer_ioctl(struct inode *inode, struct file *file,
                                unsigned int cmd, unsigned long arg)
{
        int ret;
        long val = 0;

        switch (cmd) {
                case SOUND_MIXER_INFO:
                {
                        mixer_info info;
                        strncpy(info.id, "UDA1341", sizeof(info.id));
                        strncpy(info.name,"Philips UDA1341", sizeof(info.name));
                        info.modify_counter = audio_mix_modcnt;
                        return copy_to_user((void *)arg, &info, sizeof(info));
                }
       
                case SOUND_OLD_MIXER_INFO:
                {
                        _old_mixer_info info;
                        strncpy(info.id, "UDA1341", sizeof(info.id));
                        strncpy(info.name,"Philips UDA1341", sizeof(info.name));
                        return copy_to_user((void *)arg, &info, sizeof(info));
                }

                case SOUND_MIXER_READ_STEREODEVS:
                        return put_user(0, (long *) arg);

                case SOUND_MIXER_READ_CAPS:
                        val = SOUND_CAP_EXCL_INPUT;
                        return put_user(val, (long *) arg);

                case SOUND_MIXER_WRITE_VOLUME:
                        ret = get_user(val, (long *) arg);
                        if (ret)
                                return ret;
                        uda1341_volume = 63 - (((val & 0xff) + 1) * 63) / 100;
                        uda1341_l3_address(UDA1341_REG_DATA0);
                        uda1341_l3_data(uda1341_volume);
                        break;
               
                case SOUND_MIXER_READ_VOLUME:
                        val = ((63 - uda1341_volume) * 100) / 63;
                        val |= val << 8;
                        return put_user(val, (long *) arg);
       
                case SOUND_MIXER_READ_IGAIN:
                        val = ((31- mixer_igain) * 100) / 31;
                        return put_user(val, (int *) arg);

                case SOUND_MIXER_WRITE_IGAIN:
                        ret = get_user(val, (int *) arg);
                        if (ret)
                                return ret;
                        mixer_igain = 31 - (val * 31 / 100);               
                        /* use mixer gain channel 1*/
                        uda1341_l3_address(UDA1341_REG_DATA0);
                        uda1341_l3_data(EXTADDR(EXT0));
                        uda1341_l3_data(EXTDATA(EXT0_CH1_GAIN(mixer_igain)));                       
                        break;

                default:
                        DPRINTK("mixer ioctl %u unknown\n", cmd);
                        return -ENOSYS;
        }                       

        audio_mix_modcnt++;
        return 0;
}


static int iispsr_value(int s_bit_clock, int sample_rate)
{
        int i, prescaler = 0;
        unsigned long tmpval;
        unsigned long tmpval384;
        unsigned long tmpval384min = 0xffff;

        tmpval384 = clk_get_rate(iis_clock) / s_bit_clock;

        for (i = 0; i < 32; i++) {
                tmpval = tmpval384/(i+1);
                if (PCM_ABS((sample_rate - tmpval)) < tmpval384min) {
                        tmpval384min = PCM_ABS((sample_rate - tmpval));
                        prescaler = i;
                }
        }

        DPRINTK("prescaler = %d\n", prescaler);

        return prescaler;
}


static long audio_set_dsp_speed(long val)
{
        unsigned int prescaler;
        prescaler=(IISPSR_A(iispsr_value(S_CLOCK_FREQ, val))
                | IISPSR_B(iispsr_value(S_CLOCK_FREQ, val)));
        writel(prescaler, iis_base + S3C2410_IISPSR);

        printk(PFX "audio_set_dsp_speed:%ld prescaler:%i\n",val,prescaler);
        return (audio_rate = val);
}

static int smdk2410_audio_ioctl(struct inode *inode, struct file *file,
                                uint cmd, ulong arg)
{
        long val;

        switch (cmd) {
                  case SNDCTL_DSP_SETFMT:
                        get_user(val, (long *) arg);
                          if (val & AUDIO_FMT_MASK) {
                                    audio_fmt = val;
                                    break;
                          } else
                                return -EINVAL;

                  case SNDCTL_DSP_CHANNELS:
                  case SNDCTL_DSP_STEREO:
                          get_user(val, (long *) arg);
                          if (cmd == SNDCTL_DSP_STEREO)
                                  val = val ? 2 : 1;
                          if (val != 1 && val != 2)
                                  return -EINVAL;
                          audio_channels = val;
                          break;

                  case SOUND_PCM_READ_CHANNELS:
                          put_user(audio_channels, (long *) arg);
                         break;

                  case SNDCTL_DSP_SPEED:
                          get_user(val, (long *) arg);
                          val = audio_set_dsp_speed(val);
                        if (val < 0)
                                return -EINVAL;
                          put_user(val, (long *) arg);
                          break;

                  case SOUND_PCM_READ_RATE:
                          put_user(audio_rate, (long *) arg);
                          break;

                  case SNDCTL_DSP_GETFMTS:
                          put_user(AUDIO_FMT_MASK, (long *) arg);
                          break;

                  case SNDCTL_DSP_GETBLKSIZE:
                        if(file->f_mode & FMODE_WRITE)
                                  return put_user(audio_fragsize, (long *) arg);
                        else               
                                return put_user(audio_fragsize, (int *) arg);

                  case SNDCTL_DSP_SETFRAGMENT:
                        if (file->f_mode & FMODE_WRITE) {       
                                  if (output_stream.buffers)
                                          return -EBUSY;
                                  get_user(val, (long *) arg);
                                  audio_fragsize = 1 << (val & 0xFFFF);
                                  if (audio_fragsize < 16)
                                          audio_fragsize = 16;
                                  if (audio_fragsize > 16384)
                                          audio_fragsize = 16384;
                                  audio_nbfrags = (val >> 16) & 0x7FFF;
                                if (audio_nbfrags < 2)
                                        audio_nbfrags = 2;
                                  if (audio_nbfrags * audio_fragsize > 128 * 1024)
                                          audio_nbfrags = 128 * 1024 / audio_fragsize;
                                  if (audio_setup_buf(&output_stream))
                                          return -ENOMEM;
       
                        }
                        if (file->f_mode & FMODE_READ) {
                                if (input_stream.buffers)
                                        return -EBUSY;
                                get_user(val, (int *) arg);
                                audio_fragsize =  1 << (val & 0xFFFF);
                                if (audio_fragsize < 16)
                                        audio_fragsize = 16;
                                if (audio_fragsize > 16384)
                                        audio_fragsize = 16384;
                                audio_nbfrags = (val >> 16) & 0x7FFF;
                                if (audio_nbfrags < 2)
                                        audio_nbfrags = 2;
                                if (audio_nbfrags * audio_fragsize > 128 * 1024)
                                        audio_nbfrags = 128 * 1024 / audio_fragsize;
                                if (audio_setup_buf(&input_stream))
                                        return -ENOMEM;

                        }
                         break;

                  case SNDCTL_DSP_SYNC:
                          return audio_sync(file);

                  case SNDCTL_DSP_GETOSPACE:
                {
                        audio_stream_t *s = &output_stream;
                        audio_buf_info *inf = (audio_buf_info *) arg;
                        int err = verify_area(VERIFY_WRITE, inf, sizeof(*inf));
                        int i;
                        int frags = 0, bytes = 0;

                        if (err)
                                return err;
                        for (i = 0; i < s->nbfrags; i++) {
                                if (atomic_read(&s->buffers.sem.count) > 0) {
                                        if (s->buffers.size == 0) frags++;
                                        bytes += s->fragsize - s->buffers.size;
                                }
                        }
                        put_user(frags, &inf->fragments);
                        put_user(s->nbfrags, &inf->fragstotal);
                        put_user(s->fragsize, &inf->fragsize);
                        put_user(bytes, &inf->bytes);
                        break;
                }

                case SNDCTL_DSP_GETISPACE:
                {
                        audio_stream_t *s = &input_stream;
                        audio_buf_info *inf = (audio_buf_info *) arg;
                        int err = verify_area(VERIFY_WRITE, inf, sizeof(*inf));
                        int i;
                        int frags = 0, bytes = 0;

                        if (!(file->f_mode & FMODE_READ))
                                return -EINVAL;

                        if (err)
                                return err;
                        for(i = 0; i < s->nbfrags; i++){
                        if (atomic_read(&s->buffers.sem.count) > 0)
                                {
                                        if (s->buffers.size == s->fragsize)
                                                frags++;
                                        bytes += s->buffers.size;
                                }
                        }
                        put_user(frags, &inf->fragments);
                        put_user(s->nbfrags, &inf->fragstotal);
                        put_user(s->fragsize, &inf->fragsize);
                        put_user(bytes, &inf->bytes);
                        break;
                }
                  case SNDCTL_DSP_RESET:
                        if (file->f_mode & FMODE_READ) {
                                audio_clear_buf(&input_stream);
                        }
                        if (file->f_mode & FMODE_WRITE) {
                                audio_clear_buf(&output_stream);
                        }
                        return 0;
                case SNDCTL_DSP_NONBLOCK:
                        file->f_flags |= O_NONBLOCK;
                        return 0;
                 case SNDCTL_DSP_POST:
                      case SNDCTL_DSP_SUBDIVIDE:
                      case SNDCTL_DSP_GETCAPS:
                      case SNDCTL_DSP_GETTRIGGER:
                      case SNDCTL_DSP_SETTRIGGER:
                      case SNDCTL_DSP_GETIPTR:
                      case SNDCTL_DSP_GETOPTR:
                      case SNDCTL_DSP_MAPINBUF:
                      case SNDCTL_DSP_MAPOUTBUF:
                      case SNDCTL_DSP_SETSYNCRO:
                      case SNDCTL_DSP_SETDUPLEX:
                          return -ENOSYS;
                  default:
                          return smdk2410_mixer_ioctl(inode, file, cmd, arg);
        }

        return 0;
}


static int smdk2410_audio_open(struct inode *inode, struct file *file)
{
        int cold = !audio_active;

        DPRINTK("audio_open\n");
        if ((file->f_flags & O_ACCMODE) == O_RDONLY) {
                if (audio_rd_refcount || audio_wr_refcount)
                        return -EBUSY;
                audio_rd_refcount++;
        } else if ((file->f_flags & O_ACCMODE) == O_WRONLY) {
                if (audio_wr_refcount)
                        return -EBUSY;
                audio_wr_refcount++;
        } else if ((file->f_flags & O_ACCMODE) == O_RDWR) {
                if (audio_rd_refcount || audio_wr_refcount)
                        return -EBUSY;
                audio_rd_refcount++;
                audio_wr_refcount++;
        } else
                return -EINVAL;

        if (cold) {
                audio_rate = AUDIO_RATE_DEFAULT;
                audio_channels = AUDIO_CHANNELS_DEFAULT;
                audio_fragsize = AUDIO_FRAGSIZE_DEFAULT;
                audio_nbfrags = AUDIO_NBFRAGS_DEFAULT;
                if ((file->f_mode & FMODE_WRITE)){
                                init_s3c2410_iis_bus_tx();
                                audio_clear_buf(&output_stream);
                }
                if ((file->f_mode & FMODE_READ)){
                                init_s3c2410_iis_bus_rx();
                                audio_clear_buf(&input_stream);
                }
        }
        return 0;
}


static int smdk2410_mixer_open(struct inode *inode, struct file *file)
{
        return 0;
}


static int smdk2410_audio_release(struct inode *inode, struct file *file)
{
        DPRINTK("audio_release\n");

        if (file->f_mode & FMODE_READ) {
                          if (audio_rd_refcount == 1)
                                audio_clear_buf(&input_stream);
                                  audio_rd_refcount = 0;
        }

        if(file->f_mode & FMODE_WRITE) {
                          if (audio_wr_refcount == 1) {
                                    audio_sync(file);
                                    audio_clear_buf(&output_stream);
                                    audio_wr_refcount = 0;
                            }
                  }

        return 0;
}


static int smdk2410_mixer_release(struct inode *inode, struct file *file)
{
        return 0;
}


static struct file_operations smdk2410_audio_fops = {
        llseek:                smdk2410_audio_llseek,
        write:                smdk2410_audio_write,
        read:                smdk2410_audio_read,
        poll:                smdk2410_audio_poll,
        ioctl:                smdk2410_audio_ioctl,
        open:                smdk2410_audio_open,
        release:        smdk2410_audio_release
};

static struct file_operations smdk2410_mixer_fops = {
        ioctl:                smdk2410_mixer_ioctl,
        open:                smdk2410_mixer_open,
        release:        smdk2410_mixer_release
};

static void init_uda1341(void)
{
        unsigned long flags;

          uda1341_volume = 62 - ((DEF_VOLUME * 61) / 100);
        uda1341_boost = 0;
          uda_sampling = DATA2_DEEMP_NONE;
        uda_sampling &= ~(DATA2_MUTE);
       

        local_irq_save(flags);

        s3c2410_gpio_setpin(S3C2410_GPB2,1);

        s3c2410_gpio_setpin(S3C2410_GPB4,1);
        local_irq_restore(flags);
       
        uda1341_l3_address(UDA1341_REG_STATUS);
        uda1341_l3_data(0x40 | STAT0_SC_256FS | STAT0_IF_MSB|STAT0_DC_FILTER); // reset uda1341
                uda1341_l3_data(STAT1 | STAT1_ADC_ON | STAT1_DAC_ON);

                uda1341_l3_address(UDA1341_REG_DATA0);
        uda1341_l3_data(DATA0 |DATA0_VOLUME(0x0));  // maximum volume
        uda1341_l3_data(DATA1 |DATA1_BASS(uda1341_boost)| DATA1_TREBLE(0));
                uda1341_l3_data(uda_sampling); /* --;;*/
        uda1341_l3_data(EXTADDR(EXT2));
        uda1341_l3_data(EXTDATA(EXT2_MIC_GAIN(0x6)) | EXT2_MIXMODE_CH1);
       
}

static void init_s3c2410_iis_bus(void){
        writel(0, iis_base + S3C2410_IISPSR);
        writel(0, iis_base + S3C2410_IISCON);
        writel(0, iis_base + S3C2410_IISMOD);
        writel(0, iis_base + S3C2410_IISFCON);
        clk_disable(iis_clock);
}
static void init_s3c2410_iis_bus_rx(void){
        unsigned int iiscon, iismod, iisfcon;
        char *dstr;
        //Kill everything...
        writel(0, iis_base + S3C2410_IISPSR);
        writel(0, iis_base + S3C2410_IISCON);
        writel(0, iis_base + S3C2410_IISMOD);
        writel(0, iis_base + S3C2410_IISFCON);

        clk_enable(iis_clock);

        iiscon = iismod = iisfcon = 0;

        //Setup basic stuff
        iiscon |= S3C2410_IISCON_PSCEN;                                // Enable prescaler
        iiscon |= S3C2410_IISCON_IISEN;                                // Enable interface

        iismod |= S3C2410_IISMOD_MASTER;                        // Set interface to Master Mode
        iismod |= S3C2410_IISMOD_LR_LLOW;                        // Low for left channel
        iismod |= S3C2410_IISMOD_MSB;                                // IIS format
        iismod |= S3C2410_IISMOD_16BIT;                                // Serial data bit/channel is 16 bit
        iismod |= S3C2410_IISMOD_384FS;                                // Master clock freq = 384 fs
        iismod |= S3C2410_IISMOD_32FS;                                // 32 fs

        iisfcon|= S3C2410_IISFCON_RXDMA;                        //Set RX FIFO acces mode to DMA
        iisfcon|= S3C2410_IISFCON_TXDMA;                        //Set RX FIFO acces mode to DMA

        iiscon |= S3C2410_IISCON_RXDMAEN;        //Enable RX DMA service request
        iiscon |= S3C2410_IISCON_TXIDLE;        //Set TX channel idle
        iismod |= S3C2410_IISMOD_RXMODE;        //Set RX Mode
        iisfcon|= S3C2410_IISFCON_RXENABLE;        //Enable RX Fifo
        dstr="RX";
        //setup the prescaler
        audio_set_dsp_speed(audio_rate);

        //iiscon has to be set last - it enables the interface
        writel(iismod, iis_base + S3C2410_IISMOD);
        writel(iisfcon, iis_base + S3C2410_IISFCON);
        writel(iiscon, iis_base + S3C2410_IISCON);
}

static void init_s3c2410_iis_bus_tx(void)
{
        unsigned int iiscon, iismod, iisfcon;
        char *dstr;

        //Kill everything...
        writel(0, iis_base + S3C2410_IISPSR);
        writel(0, iis_base + S3C2410_IISCON);
        writel(0, iis_base + S3C2410_IISMOD);
        writel(0, iis_base + S3C2410_IISFCON);

        clk_enable(iis_clock);


        iiscon = iismod = iisfcon = 0;

        //Setup basic stuff
        iiscon |= S3C2410_IISCON_PSCEN;                                // Enable prescaler
        iiscon |= S3C2410_IISCON_IISEN;                                // Enable interface

        iismod |= S3C2410_IISMOD_MASTER;                        // Set interface to Master Mode
        iismod |= S3C2410_IISMOD_LR_LLOW;                        // Low for left channel
        iismod |= S3C2410_IISMOD_MSB;                                // MSB format
        iismod |= S3C2410_IISMOD_16BIT;                                // Serial data bit/channel is 16 bit
        iismod |= S3C2410_IISMOD_256FS;                                // Master clock freq = 384 fs
        iismod |= S3C2410_IISMOD_32FS;                                // 32 fs

        iisfcon|= S3C2410_IISFCON_RXDMA;                        //Set RX FIFO acces mode to DMA
        iisfcon|= S3C2410_IISFCON_TXDMA;                        //Set TX FIFO acces mode to DMA

        iiscon |= S3C2410_IISCON_TXDMAEN;        //Enable TX DMA service request
        iiscon |= S3C2410_IISCON_RXIDLE;        //Set RX channel idle
        iismod |= S3C2410_IISMOD_TXMODE;        //Set TX Mode
        iisfcon|= S3C2410_IISFCON_TXENABLE;        //Enable TX Fifo
        dstr="TX";

        //setup the prescaler
        audio_set_dsp_speed(audio_rate);


        //iiscon has to be set last - it enables the interface
        writel(iismod, iis_base + S3C2410_IISMOD);
        writel(iisfcon, iis_base + S3C2410_IISFCON);
        writel(iiscon, iis_base + S3C2410_IISCON);
}

static int __init audio_init_dma(audio_stream_t * s, char *desc)
{
        int ret ;
        s3c2410_dmasrc_t         source;
        int                         hwcfg;
        unsigned long                 devaddr;
        dmach_t                        channel;
        int                         dcon;
        unsigned int                flags = 0;

        if(s->dma_ch == DMA_CH2){
                channel = 2;
                source  = S3C2410_DMASRC_MEM;
                hwcfg        = 3;
                devaddr        = 0x55000010;
                dcon        = 1<<31;
                flags        = S3C2410_DMAF_AUTOSTART;

                ret = s3c2410_dma_request(s->dma_ch, &s3c2410iis_dma_out, NULL);
                s3c2410_dma_devconfig(channel, source, hwcfg, devaddr);
                s3c2410_dma_config(channel, 2, dcon);
                s3c2410_dma_set_buffdone_fn(channel, audio_dmaout_done_callback);
                s3c2410_dma_setflags(channel, flags);
                s->dma_ok = 1;
                return ret;
        }
        else if(s->dma_ch == DMA_CH1){
                ret = s3c2410_dma_request(s->dma_ch, &s3c2410iis_dma_in, NULL);
                            s3c2410_dma_set_buffdone_fn(s->dma_ch, audio_dmain_done_callback);
                return ret ;                       
        }
        else
                return 1;
}

static int audio_clear_dma(audio_stream_t * s,s3c2410_dma_client_t *client)
{
        s3c2410_dma_set_buffdone_fn(s->dma_ch, NULL);
        s3c2410_dma_free(s->dma_ch, client);
        return 0;
}

static int s3c2410iis_probe(struct device *dev) {
        struct platform_device *pdev = to_platform_device(dev);
        struct resource *res;

        unsigned long flags;
        res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
        if (res == NULL) {
                printk(KERN_INFO PFX "failed to get memory region resouce\n");
                return -ENOENT;
        }

        iis_base = (void *)S3C2410_VA_IIS ;
        if (iis_base == 0) {
                printk(KERN_INFO PFX "failed to ioremap() region\n");
                return -EINVAL;
        }

        iis_clock = clk_get(dev, "iis");
        if (iis_clock == NULL) {
                printk(KERN_INFO PFX "failed to find clock source\n");
                return -ENOENT;
        }

        clk_use(iis_clock);

        local_irq_save(flags);

        /* GPB 4: L3CLOCK, OUTPUT */
        s3c2410_gpio_cfgpin(S3C2410_GPB4, S3C2410_GPB4_OUTP);
        /* GPB 3: L3DATA, OUTPUT */
        s3c2410_gpio_cfgpin(S3C2410_GPB3,S3C2410_GPB3_OUTP);
        /* GPB 2: L3MODE, OUTPUT */
        s3c2410_gpio_cfgpin(S3C2410_GPB2,S3C2410_GPB2_OUTP);
        /* GPE 3: I2SSDI */
        s3c2410_gpio_cfgpin(S3C2410_GPE3,S3C2410_GPE3_I2SSDI);       
        /* GPE 0: I2SLRCK */
        s3c2410_gpio_cfgpin(S3C2410_GPE0,S3C2410_GPE0_I2SLRCK);
        /* GPE 1: I2SSCLK */
        s3c2410_gpio_cfgpin(S3C2410_GPE1,S3C2410_GPE1_I2SSCLK);       
        /* GPE 2: CDCLK */
        s3c2410_gpio_cfgpin(S3C2410_GPE2,S3C2410_GPE2_CDCLK);               
        /* GPE 4: I2SSDO */
        s3c2410_gpio_cfgpin(S3C2410_GPE4,S3C2410_GPE4_I2SSDO);

        local_irq_restore(flags);

        init_s3c2410_iis_bus();
       
        init_uda1341();

        output_stream.dma_ch = DMA_CH2;

        if (audio_init_dma(&output_stream, "UDA1341 out")) {
                audio_clear_dma(&output_stream,&s3c2410iis_dma_out);
                printk( KERN_WARNING AUDIO_NAME_VERBOSE
                        ": unable to get DMA channels\n" );
                return -EBUSY;
        }

        input_stream.dma_ch = DMA_CH1;

           if (audio_init_dma(&input_stream, "UDA1341 in")) {
                        audio_clear_dma(&input_stream,&s3c2410iis_dma_in);
                        printk( KERN_WARNING AUDIO_NAME_VERBOSE
                        ": unable to get DMA channels\n" );
                        return -EBUSY;
                }
       
        audio_dev_dsp = register_sound_dsp(&smdk2410_audio_fops, -1);
        audio_dev_mixer = register_sound_mixer(&smdk2410_mixer_fops, -1);

        printk(AUDIO_NAME_VERBOSE " initialized\n");

        return 0;
}


static int s3c2410iis_remove(struct device *dev) {
        unregister_sound_dsp(audio_dev_dsp);
        unregister_sound_mixer(audio_dev_mixer);
        audio_clear_dma(&output_stream,&s3c2410iis_dma_out);
        audio_clear_dma(&input_stream,&s3c2410iis_dma_in); /* input */
        printk(AUDIO_NAME_VERBOSE " unloaded\n");
        return 0;
}


static struct device_driver s3c2410iis_driver = {
        .name           = "s3c2410-iis",
        .bus            = &platform_bus_type,
        .probe          = s3c2410iis_probe,
        .remove         = s3c2410iis_remove,
};

static int __init s3c2410_uda1341_init(void) {
        memzero(&input_stream, sizeof(audio_stream_t));
        memzero(&output_stream, sizeof(audio_stream_t));
        return driver_register(&s3c2410iis_driver);
}

static void __exit s3c2410_uda1341_exit(void) {
        driver_unregister(&s3c2410iis_driver);
}


module_init(s3c2410_uda1341_init);
module_exit(s3c2410_uda1341_exit);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("superlp<[email protected]>");
MODULE_DESCRIPTION("S3C2410 uda1341 sound driver");
回复

使用道具 举报

发表于 2005-6-27 09:51:18 | 显示全部楼层

linux2.6

我在自己做的2410板子上跑linux,好像根文件系统有错误,不知道该怎么修改根文件系统才可以

VFS: Mounted root (cramfs filesystem) readonly.

Freeing init memory: 100K

Warning: unable to open an initial console.
回复

使用道具 举报

发表于 2005-7-2 18:47:54 | 显示全部楼层
按照上面的方法我在我的2410板子上跑了2.6.11
但是不能mount cramfs ,大家帮忙看看
另外我的板子上原来是2.4。18+yaffs。
我不知道cramfs 中root文件系统该如何搭建
Copy linux kernel from 0x00030000 to 0x30008000, size = 0x00200000 ... done
zImage magic = 0x016f2818
Setup linux parameters at 0x30000100
linux command line is: "noinitrd root=/dev/mtdblock3 init=/linuxrc console=ttySA
C0"
MACH_TYPE = 193
NOW, Booting Linux......
Uncompressing Linux........................................ done, booting the ke
rnel.
Linux version 2.6.11.7 (root@linux) (gcc version 3.4.1) #6 Sat Jul 2 18:05:57 CS
T 2005
CPU: ARM920Tid(wb) [41129200] revision 0 (ARMv4T)
CPU0: D VIVT write-back cache
CPU0: I cache: 16384 bytes, associativity 64, 32 byte lines, 8 sets
CPU0: D cache: 16384 bytes, associativity 64, 32 byte lines, 8 sets
Machine: SMDK2410
ATAG_INITRD is deprecated; please update your bootloader.
Memory policy: ECC disabled, Data cache writeback
CPU S3C2410 (id 0x32410000)
S3C2410: core 200.000 MHz, memory 100.000 MHz, peripheral 50.000 MHz
S3C2410 Clock control, (c) 2004 Simtec Electronics
Built 1 zonelists
Kernel command line: noinitrd root=/dev/mtdblock3 init=/linuxrc console=ttySAC0
irq: clearing subpending status 00000003
irq: clearing subpending status 00000002
PID hash table entries: 512 (order: 9, 8192 bytes)
timer tcon=00000000, tcnt a2c1, tcfg 00000200,00000000, usec 00001eb8
Console: colour dummy device 80x30
Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
Memory: 64MB = 64MB total
Memory: 63520KB available (961K code, 238K data, 56K init)
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
CPU: Testing write buffer coherency: ok
Linux NoNET1.0 for Linux 2.6
S3C2410: Initialising architecture
NetWinder Floating Point Emulator V0.97 (double precision)
devfs: 2004-01-31 Richard Gooch ([email protected])
devfs: boot_options: 0x1
JFFS2 version 2.2. (NAND) (C) 2001-2003 Red Hat, Inc.
s3c2410_serial0 at MMIO 0x50000000 (irq = 70) is a S3C2410
s3c2410_serial1 at MMIO 0x50004000 (irq = 73) is a S3C2410
s3c2410_serial2 at MMIO 0x50008000 (irq = 76) is a S3C2410
io scheduler noop registered
NFTL driver: nftlcore.c $Revision: 1.97 $, nftlmount.c $Revision: 1.40 $
S3C2410 NAND Driver, (c) 2004 Simtec Electronics
s3c2410-nand: mapped registers at c4880000
s3c2410-nand: timing: Tacls 10ns, Twrph0 40ns, Twrph1 10ns
NAND device: Manufacturer ID: 0xec, Chip ID: 0x76 (Samsung NAND 64MiB 3,3V 8-bit
)
NAND_ECC_NONE selected by board driver. This is not recommended !!
Scanning device for bad blocks
Bad eraseblock 1432 at 0x01660000
Creating 5 MTD partitions on "NAND 64MiB 3,3V 8-bit":
0x00000000-0x00020000 : "loader"
0x00020000-0x00030000 : "param"
0x00030000-0x001f0000 : "kernel"
0x00200000-0x00400000 : "root"
0x00400000-0x03ef8000 : "user"
mice: PS/2 mouse device common for all mice
Reading data from NAND FLASH without ECC is not recommended
Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(31,3)
回复

使用道具 举报

 楼主| 发表于 2005-7-3 14:59:47 | 显示全部楼层
录音的我也还没有作成功。。。
回复

使用道具 举报

发表于 2005-7-3 15:08:45 | 显示全部楼层
请问版主,2.6.11能支持sd吗
回复

使用道具 举报

发表于 2005-7-3 15:11:35 | 显示全部楼层
我的问题解决了,使我的文件系统没有烧对地址,终于跑起来了。下面我将尝试驱动Cs8900,已经做好的大侠,能不能给写一个step by step, 在这里先谢了。
Linux version 2.6.11.7 (root@linux) (gcc version 3.4.1) #7 Sun Jul 3 11:44:49 CS
T 2005
CPU: ARM920Tid(wb) [41129200] revision 0 (ARMv4T)
CPU0: D VIVT write-back cache
CPU0: I cache: 16384 bytes, associativity 64, 32 byte lines, 8 sets
CPU0: D cache: 16384 bytes, associativity 64, 32 byte lines, 8 sets
Machine: SMDK2410
ATAG_INITRD is deprecated; please update your bootloader.
Memory policy: ECC disabled, Data cache writeback
CPU S3C2410 (id 0x32410000)
S3C2410: core 200.000 MHz, memory 100.000 MHz, peripheral 50.000 MHz
S3C2410 Clock control, (c) 2004 Simtec Electronics
Built 1 zonelists
Kernel command line: noinitrd root=/dev/mtdblock3 init=/linuxrc console=ttySAC0
irq: clearing subpending status 00000002
PID hash table entries: 512 (order: 9, 8192 bytes)
timer tcon=00000000, tcnt a2c1, tcfg 00000200,00000000, usec 00001eb8
Console: colour dummy device 80x30
Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
Memory: 64MB = 64MB total
Memory: 63520KB available (961K code, 238K data, 56K init)
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
CPU: Testing write buffer coherency: ok
Linux NoNET1.0 for Linux 2.6
S3C2410: Initialising architecture
NetWinder Floating Point Emulator V0.97 (double precision)
devfs: 2004-01-31 Richard Gooch ([email protected])
devfs: boot_options: 0x1
JFFS2 version 2.2. (NAND) (C) 2001-2003 Red Hat, Inc.
s3c2410_serial0 at MMIO 0x50000000 (irq = 70) is a S3C2410
s3c2410_serial1 at MMIO 0x50004000 (irq = 73) is a S3C2410
s3c2410_serial2 at MMIO 0x50008000 (irq = 76) is a S3C2410
io scheduler noop registered
NFTL driver: nftlcore.c $Revision: 1.97 $, nftlmount.c $Revision: 1.40 $
S3C2410 NAND Driver, (c) 2004 Simtec Electronics
s3c2410-nand: mapped registers at c4880000
s3c2410-nand: timing: Tacls 10ns, Twrph0 40ns, Twrph1 10ns
NAND device: Manufacturer ID: 0xec, Chip ID: 0x76 (Samsung NAND 64MiB 3,3V 8-bit
)
NAND_ECC_NONE selected by board driver. This is not recommended !!
Scanning device for bad blocks
Bad eraseblock 1432 at 0x01660000
Creating 5 MTD partitions on "NAND 64MiB 3,3V 8-bit":
0x00000000-0x00020000 : "loader"
0x00020000-0x00030000 : "param"
0x00030000-0x00230000 : "kernel"
0x00230000-0x00430000 : "root"
0x00400000-0x03ef8000 : "user"
mice: PS/2 mouse device common for all mice
Reading data from NAND FLASH without ECC is not recommended
VFS: Mounted root (cramfs filesystem) readonly.
Mounted devfs on /dev
Freeing init memory: 56K
Error -3 while decompressing!
c0393df4(-2471996)->c02e0000(4096)
Reading data from NAND FLASH without ECC is not recommended
init started:  BusyBox v0.60.5 (2003.09.05-09:25+0000) multi-call binary
/etc/init.d/rcS: /sbin/mount: No such file or directory
/etc/init.d/rcS: /sbin/mount: No such file or directory
/etc/init.d/rcS: /sbin/mount: No such file or directory
/etc/init.d/rcS: /sbin/mount: No such file or directory
mkdir: Cannot create directory `/var/lib': Read-only file system
mkdir: Cannot create directory `/var/run': Read-only file system
mkdir: Cannot create directory `/var/log': Read-only file system
/etc/rc.d/init.d/netd: /sbin/inetd: No such file or directory
/etc/rc.d/init.d/httpd: /sbin/boa: No such file or directory
/etc/init.d/rcS: /sbin/ifconfig: No such file or directory
/etc/rc.d/init.d/leds: /sbin/led-player: No such file or directory
/etc/init.d/rcS: /sbin/ifconfig: No such file or directory

Please press Enter to activate this console.


BusyBox v0.60.5 (2003.09.05-09:25+0000) Built-in shell (ash)
Enter 'help' for a list of built-in commands.

Error -3 while decompressing!
c0138e04(-2472012)->c3dad000(4096)
Reading data from NAND FLASH without ECC is not recommended
Error -3 while decompressing!
c0393e04(-2472012)->c3dfd000(4096)
Error -3 while decompressing!
c013cc64(-2299564)->c3dfe000(4096)
id: unknown user name: 0
[@fa /]#
回复

使用道具 举报

发表于 2005-7-5 18:20:29 | 显示全部楼层

Uncompressing Linux..有人解决了吗?:(

[quote:5906e43fcb="cefanty_qiu"]我的开发板,porting没有成功.估计是和SMDK2410的硬件有一些不同,
Press Return to start the OS  now, other key for vivi shell
Copy linux kernel from 0x00030000 to 0x30008000, size = 0x001c0000 ... done
zImage magic = 0x016f2818
Setup linux parameters at 0x30000100
linux command line is: "noinitrd root=/dev/mtdblock/3 init=/linuxrc console=ttyS
0 mac=00:0e:3a:bb:cc"
MACH_TYPE = 193
NOW, Booting Linux......
Uncompressing Linux......................................................... don
e, booting the kernel.


然后,没有下文了.死机了....................[/quote]

有人解决了吗?
回复

使用道具 举报

 楼主| 发表于 2005-7-6 13:05:19 | 显示全部楼层
论坛里面的帖子就有这个的讨论,可以去看看。
如果驱动搞不定,可以发我邮箱,我可以发我的给你作为参考。


[quote:79da803ef6="buaazy"]我的问题解决了,使我的文件系统没有烧对地址,终于跑起来了。下面我将尝试驱动Cs8900,已经做好的大侠,能不能给写一个step by step, 在这里先谢了。
Linux version 2.6.11.7 (root@linux) (gcc version 3.4.1) #7 Sun Jul 3 11:44:49 CS
T 2005
CPU: ARM920Tid(wb) [41129200] revision 0 (ARMv4T)
CPU0: D VIVT write-back cache
CPU0: I cache: 16384 bytes, associativity 64, 32 byte lines, 8 sets
CPU0: D cache: 16384 bytes, associativity 64, 32 byte lines, 8 sets
Machine: SMDK2410
ATAG_INITRD is deprecated; please update your bootloader.
Memory policy: ECC disabled, Data cache writeback
CPU S3C2410 (id 0x32410000)
S3C2410: core 200.000 MHz, memory 100.000 MHz, peripheral 50.000 MHz
S3C2410 Clock control, (c) 2004 Simtec Electronics
Built 1 zonelists
Kernel command line: noinitrd root=/dev/mtdblock3 init=/linuxrc console=ttySAC0
irq: clearing subpending status 00000002
PID hash table entries: 512 (order: 9, 8192 bytes)
timer tcon=00000000, tcnt a2c1, tcfg 00000200,00000000, usec 00001eb8
Console: colour dummy device 80x30
Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
Memory: 64MB = 64MB total
Memory: 63520KB available (961K code, 238K data, 56K init)
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
CPU: Testing write buffer coherency: ok
Linux NoNET1.0 for Linux 2.6
S3C2410: Initialising architecture
NetWinder Floating Point Emulator V0.97 (double precision)
devfs: 2004-01-31 Richard Gooch ([email protected])
devfs: boot_options: 0x1
JFFS2 version 2.2. (NAND) (C) 2001-2003 Red Hat, Inc.
s3c2410_serial0 at MMIO 0x50000000 (irq = 70) is a S3C2410
s3c2410_serial1 at MMIO 0x50004000 (irq = 73) is a S3C2410
s3c2410_serial2 at MMIO 0x50008000 (irq = 76) is a S3C2410
io scheduler noop registered
NFTL driver: nftlcore.c $Revision: 1.97 $, nftlmount.c $Revision: 1.40 $
S3C2410 NAND Driver, (c) 2004 Simtec Electronics
s3c2410-nand: mapped registers at c4880000
s3c2410-nand: timing: Tacls 10ns, Twrph0 40ns, Twrph1 10ns
NAND device: Manufacturer ID: 0xec, Chip ID: 0x76 (Samsung NAND 64MiB 3,3V 8-bit
)
NAND_ECC_NONE selected by board driver. This is not recommended !!
Scanning device for bad blocks
Bad eraseblock 1432 at 0x01660000
Creating 5 MTD partitions on "NAND 64MiB 3,3V 8-bit":
0x00000000-0x00020000 : "loader"
0x00020000-0x00030000 : "param"
0x00030000-0x00230000 : "kernel"
0x00230000-0x00430000 : "root"
0x00400000-0x03ef8000 : "user"
mice: PS/2 mouse device common for all mice
Reading data from NAND FLASH without ECC is not recommended
VFS: Mounted root (cramfs filesystem) readonly.
Mounted devfs on /dev
Freeing init memory: 56K
Error -3 while decompressing!
c0393df4(-2471996)->c02e0000(4096)
Reading data from NAND FLASH without ECC is not recommended
init started:  BusyBox v0.60.5 (2003.09.05-09:25+0000) multi-call binary
/etc/init.d/rcS: /sbin/mount: No such file or directory
/etc/init.d/rcS: /sbin/mount: No such file or directory
/etc/init.d/rcS: /sbin/mount: No such file or directory
/etc/init.d/rcS: /sbin/mount: No such file or directory
mkdir: Cannot create directory `/var/lib': Read-only file system
mkdir: Cannot create directory `/var/run': Read-only file system
mkdir: Cannot create directory `/var/log': Read-only file system
/etc/rc.d/init.d/netd: /sbin/inetd: No such file or directory
/etc/rc.d/init.d/httpd: /sbin/boa: No such file or directory
/etc/init.d/rcS: /sbin/ifconfig: No such file or directory
/etc/rc.d/init.d/leds: /sbin/led-player: No such file or directory
/etc/init.d/rcS: /sbin/ifconfig: No such file or directory

Please press Enter to activate this console.


BusyBox v0.60.5 (2003.09.05-09:25+0000) Built-in shell (ash)
Enter 'help' for a list of built-in commands.

Error -3 while decompressing!
c0138e04(-2472012)->c3dad000(4096)
Reading data from NAND FLASH without ECC is not recommended
Error -3 while decompressing!
c0393e04(-2472012)->c3dfd000(4096)
Error -3 while decompressing!
c013cc64(-2299564)->c3dfe000(4096)
id: unknown user name: 0
[@fa /]#[/quote]
回复

使用道具 举报

发表于 2005-7-12 15:50:08 | 显示全部楼层
我的linux2.6.12已经在S3C2410上面运行了.如下:

Ready for downloading using xmodem...
Waiting...
Downloaded file at 0x30000000, size = 549760 bytes
Found block size = 0x00088000
Erasing...    ... done
Writing...    ... done
Written 549760 bytes
HYSC> boot
Copy linux kernel from 0x00030000 to 0x30008000, size = 0x001c0000 ... done
zImage magic = 0x016f2818
Setup linux parameters at 0x30000100
linux command line is: "noinitrd root=/dev/mtdblock3 console=ttySAC0,115200"
MACH_TYPE = 193
NOW, Booting Linux......
Uncompressing Linux..................................... done, booting the kern.
Linux version 2.6.12 (root@hysc) (gcc version 3.4.1) #1 Tue Jul 12 15:24:34 CST5
CPU: ARM920Tid(wb) [41129200] revision 0 (ARMv4T)
CPU0: D VIVT write-back cache
CPU0: I cache: 16384 bytes, associativity 64, 32 byte lines, 8 sets
CPU0: D cache: 16384 bytes, associativity 64, 32 byte lines, 8 sets
Machine: SMDK2410
ATAG_INITRD is deprecated; please update your bootloader.
Memory policy: ECC disabled, Data cache writeback
CPU S3C2410A (id 0x32410002)
S3C2410: core 200.000 MHz, memory 100.000 MHz, peripheral 50.000 MHz
S3C2410 Clocks, (c) 2004 Simtec Electronics
Built 1 zonelists
Kernel command line: noinitrd root=/dev/mtdblock3 console=ttySAC0,115200
irq: clearing subpending status 00000003
irq: clearing subpending status 00000002
PID hash table entries: 512 (order: 9, 8192 bytes)
timer tcon=00000000, tcnt a2c1, tcfg 00000200,00000000, usec 00001eb8
Console: colour dummy device 80x30
Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
Memory: 64MB = 64MB total
Memory: 63616KB available (874K code, 232K data, 56K init)
Mount-cache hash table entries: 512
CPU: Testing write buffer coherency: ok
Linux NoNET1.0 for Linux 2.6
S3C2410: Initialising architecture
NetWinder Floating Point Emulator V0.97 (double precision)
devfs: 2004-01-31 Richard Gooch ([email protected])
devfs: boot_options: 0x1
s3c2410_serial0 at MMIO 0x50000000 (irq = 70) is a S3C2410
s3c2410_serial1 at MMIO 0x50004000 (irq = 73) is a S3C2410
s3c2410_serial2 at MMIO 0x50008000 (irq = 76) is a S3C2410
io scheduler noop registered
S3C2410 NAND Driver, (c) 2004 Simtec Electronics
s3c2410-nand: mapped registers at c4880000
s3c2410-nand: timing: Tacls 10ns, Twrph0 40ns, Twrph1 10ns
NAND device: Manufacturer ID: 0xec, Chip ID: 0x76 (Samsung NAND 64MiB 3,3V 8-bi)
NAND_ECC_NONE selected by board driver. This is not recommended !!
Scanning device for bad blocks
Creating 5 MTD partitions on "NAND 64MiB 3,3V 8-bit":
0x00000000-0x00020000 : "loader"
0x00020000-0x00030000 : "param"
0x00030000-0x001f0000 : "kernel"
0x00200000-0x01400000 : "root"
0x01400000-0x04000000 : "user"
mice: PS/2 mouse device common for all mice
Reading data from NAND FLASH without ECC is not recommended
VFS: Mounted root (cramfs filesystem) readonly.
Mounted devfs on /dev
Freeing init memory: 56K
Bummer, could not run '/etc/init.d/rcS': No such file or directory


   Wireless XXXX Gateway
   XXXX S&T Development Co.,Ltd.
   http://www.XXXXXXX.com
   mail://[email protected]


/bin # ls
Reading data from NAND FLASH without ECC is not recommended
[           dd          gzip        mknod       sdp_server  true
basename    df          head        more        sed         umount
btdm        dhcpcd      hostname    mount       serial      uname
busybox     dmesg       iptables    mv          sh          uptime
cat         du          irattach    netstat     sleep       usleep
chgrp       echo        irdaping    ping        sync        vi
chmod       env         kill        ps          syslogd     wget
chown       expr        killall     pwd         sz          zcat
clear       false       leds        rdate       tail
config      free        ln          read        tar
cp          ftp         login       rm          telnet
cut         grep        ls          rmdir       test
date        gunzip      mkdir       rz          time
/bin #
回复

使用道具 举报

发表于 2005-7-14 10:50:03 | 显示全部楼层

如何起用yaffs的ecc使有效?

如何起用yaffs的ecc使有效?
回复

使用道具 举报

发表于 2005-7-21 08:48:54 | 显示全部楼层
我在内核2.6.12上做2410usb驱动,启动后出现下面错误,不知道是怎么回事
s3c2410-ohci s3c2410-ohci: S3C2410_OHCI

s3c2410-ohci s3c2410-ohci: new USB bus registered, assigned bus number 1

s3c2410-ohci s3c2410-ohci: irq 42, io mem 0x49000000

hub 1-0:1.0: USB hub found

hub 1-0:1.0: 2 ports detected

usbcore: registered new driver usblp

drivers/usb/class/usblp.c: v0.13: USB Printer Device Class driver

Initializing USB Mass Storage driver...

usb 1-1: new low speed USB device using s3c2410-ohci and address 2

usb 1-1: device descriptor read/64, error -110

usb 1-1: device descriptor read/64, error -110

usb 1-1: new low speed USB device using s3c2410-ohci and address 3

usb 1-1: device descriptor read/64, error -110

usb 1-1: device descriptor read/64, error -110

usb 1-1: new low speed USB device using s3c2410-ohci and address 4

usb 1-1: device not accepting address 4, error -110

usb 1-1: new low speed USB device using s3c2410-ohci and address 5

usb 1-1: device not accepting address 5, error -110

usbcore: registered new driver usb-storage

USB Mass Storage support registered.

usbcore: registered new driver ati_remote

drivers/usb/input/ati_remote.c: Registered USB driver ATI/X10 RF USB Remote Control v. 2.2.1

usbcore: registered new driver hiddev

usbcore: registered new driver usbhid

drivers/usb/input/hid-core.c: v2.01:USB HID core driver

usbcore: registered new driver mdc800

drivers/usb/image/mdc800.c: v0.7.5 (30/10/2000):USB Driver for Mustek MDC800 Digital Camera
回复

使用道具 举报

发表于 2005-7-21 16:47:34 | 显示全部楼层
:-(   我的天,看都看不懂,版主我该如何起步啊?????????????
回复

使用道具 举报

发表于 2005-8-5 17:13:46 | 显示全部楼层
当我编译2.6.12.3内核时,
如何为s3c2410选择CPU类型呢?
请有这方面经验的前辈给点儿经验
先谢谢了~~
回复

使用道具 举报

发表于 2005-8-8 17:25:06 | 显示全部楼层
有没有人在2440上运行2.6内核呀,我在2.6.12.3的make menuconfig里面没有找到s3c2440,却有2410,是不是还需要打什么补丁呀?
回复

使用道具 举报

发表于 2005-9-7 17:06:20 | 显示全部楼层
各位大虾,我现在用的是RedHat9 LINUX的,怎么升级到2.6的核啊?
本人初接触LINUX,多谢指教!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-3-29 17:57 , Processed in 0.105191 second(s), 12 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表